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
98 Container arvados.Container
99 ContainerConfig dockercontainer.Config
100 HostConfig dockercontainer.HostConfig
104 NewLogWriter NewLogWriter
105 loggingDone chan bool
106 CrunchLog *ThrottledLogger
107 Stdout io.WriteCloser
108 Stderr io.WriteCloser
111 LogCollection arvados.CollectionFileSystem
113 RunArvMount RunArvMount
119 Volumes map[string]struct{}
121 SigChan chan os.Signal
122 ArvMountExit chan error
123 SecretMounts map[string]arvados.Mount
124 MkArvClient func(token string) (IArvadosClient, error)
128 ListProcesses func() ([]PsProcess, error)
130 statLogger io.WriteCloser
131 statReporter *crunchstat.Reporter
132 hoststatLogger io.WriteCloser
133 hoststatReporter *crunchstat.Reporter
134 statInterval time.Duration
136 // What we expect the container's cgroup parent to be.
137 expectCgroupParent string
138 // What we tell docker to use as the container's cgroup
139 // parent. Note: Ideally we would use the same field for both
140 // expectCgroupParent and setCgroupParent, and just make it
141 // default to "docker". However, when using docker < 1.10 with
142 // systemd, specifying a non-empty cgroup parent (even the
143 // default value "docker") hits a docker bug
144 // (https://github.com/docker/docker/issues/17126). Using two
145 // separate fields makes it possible to use the "expect cgroup
146 // parent to be X" feature even on sites where the "specify
147 // cgroup parent" feature breaks.
148 setCgroupParent string
150 cStateLock sync.Mutex
151 cCancelled bool // StopContainer() invoked
153 enableNetwork string // one of "default" or "always"
154 networkMode string // passed through to HostConfig.NetworkMode
155 arvMountLog *ThrottledLogger
156 checkContainerd time.Duration
159 // setupSignals sets up signal handling to gracefully terminate the underlying
160 // Docker container and update state when receiving a TERM, INT or QUIT signal.
161 func (runner *ContainerRunner) setupSignals() {
162 runner.SigChan = make(chan os.Signal, 1)
163 signal.Notify(runner.SigChan, syscall.SIGTERM)
164 signal.Notify(runner.SigChan, syscall.SIGINT)
165 signal.Notify(runner.SigChan, syscall.SIGQUIT)
167 go func(sig chan os.Signal) {
174 // stop the underlying Docker container.
175 func (runner *ContainerRunner) stop(sig os.Signal) {
176 runner.cStateLock.Lock()
177 defer runner.cStateLock.Unlock()
179 runner.CrunchLog.Printf("caught signal: %v", sig)
181 if runner.ContainerID == "" {
184 runner.cCancelled = true
185 runner.CrunchLog.Printf("removing container")
186 err := runner.Docker.ContainerRemove(context.TODO(), runner.ContainerID, dockertypes.ContainerRemoveOptions{Force: true})
188 runner.CrunchLog.Printf("error removing container: %s", err)
192 var errorBlacklist = []string{
193 "(?ms).*[Cc]annot connect to the Docker daemon.*",
194 "(?ms).*oci runtime error.*starting container process.*container init.*mounting.*to rootfs.*no such file or directory.*",
195 "(?ms).*grpc: the connection is unavailable.*",
197 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)")
199 func (runner *ContainerRunner) runBrokenNodeHook() {
200 if *brokenNodeHook == "" {
201 runner.CrunchLog.Printf("No broken node hook provided, cannot mark node as broken.")
203 runner.CrunchLog.Printf("Running broken node hook %q", *brokenNodeHook)
205 c := exec.Command(*brokenNodeHook)
206 c.Stdout = runner.CrunchLog
207 c.Stderr = runner.CrunchLog
210 runner.CrunchLog.Printf("Error running broken node hook: %v", err)
215 func (runner *ContainerRunner) checkBrokenNode(goterr error) bool {
216 for _, d := range errorBlacklist {
217 if m, e := regexp.MatchString(d, goterr.Error()); m && e == nil {
218 runner.CrunchLog.Printf("Error suggests node is unable to run containers: %v", goterr)
219 runner.runBrokenNodeHook()
226 // LoadImage determines the docker image id from the container record and
227 // checks if it is available in the local Docker image store. If not, it loads
228 // the image from Keep.
229 func (runner *ContainerRunner) LoadImage() (err error) {
231 runner.CrunchLog.Printf("Fetching Docker image from collection '%s'", runner.Container.ContainerImage)
233 var collection arvados.Collection
234 err = runner.ArvClient.Get("collections", runner.Container.ContainerImage, nil, &collection)
236 return fmt.Errorf("While getting container image collection: %v", err)
238 manifest := manifest.Manifest{Text: collection.ManifestText}
239 var img, imageID string
240 for ms := range manifest.StreamIter() {
241 img = ms.FileStreamSegments[0].Name
242 if !strings.HasSuffix(img, ".tar") {
243 return fmt.Errorf("First file in the container image collection does not end in .tar")
245 imageID = img[:len(img)-4]
248 runner.CrunchLog.Printf("Using Docker image id '%s'", imageID)
250 _, _, err = runner.Docker.ImageInspectWithRaw(context.TODO(), imageID)
252 runner.CrunchLog.Print("Loading Docker image from keep")
254 var readCloser io.ReadCloser
255 readCloser, err = runner.Kc.ManifestFileReader(manifest, img)
257 return fmt.Errorf("While creating ManifestFileReader for container image: %v", err)
260 response, err := runner.Docker.ImageLoad(context.TODO(), readCloser, true)
262 return fmt.Errorf("While loading container image into Docker: %v", err)
265 defer response.Body.Close()
266 rbody, err := ioutil.ReadAll(response.Body)
268 return fmt.Errorf("Reading response to image load: %v", err)
270 runner.CrunchLog.Printf("Docker response: %s", rbody)
272 runner.CrunchLog.Print("Docker image is available")
275 runner.ContainerConfig.Image = imageID
277 runner.Kc.ClearBlockCache()
282 func (runner *ContainerRunner) ArvMountCmd(arvMountCmd []string, token string) (c *exec.Cmd, err error) {
283 c = exec.Command("arv-mount", arvMountCmd...)
285 // Copy our environment, but override ARVADOS_API_TOKEN with
286 // the container auth token.
288 for _, s := range os.Environ() {
289 if !strings.HasPrefix(s, "ARVADOS_API_TOKEN=") {
290 c.Env = append(c.Env, s)
293 c.Env = append(c.Env, "ARVADOS_API_TOKEN="+token)
295 w, err := runner.NewLogWriter("arv-mount")
299 runner.arvMountLog = NewThrottledLogger(w)
300 c.Stdout = runner.arvMountLog
301 c.Stderr = runner.arvMountLog
303 runner.CrunchLog.Printf("Running %v", c.Args)
310 statReadme := make(chan bool)
311 runner.ArvMountExit = make(chan error)
316 time.Sleep(100 * time.Millisecond)
317 _, err = os.Stat(fmt.Sprintf("%s/by_id/README", runner.ArvMountPoint))
329 runner.CrunchLog.Printf("Arv-mount exit error: %v", mnterr)
331 runner.ArvMountExit <- mnterr
332 close(runner.ArvMountExit)
338 case err := <-runner.ArvMountExit:
339 runner.ArvMount = nil
347 func (runner *ContainerRunner) SetupArvMountPoint(prefix string) (err error) {
348 if runner.ArvMountPoint == "" {
349 runner.ArvMountPoint, err = runner.MkTempDir(runner.parentTemp, prefix)
354 func copyfile(src string, dst string) (err error) {
355 srcfile, err := os.Open(src)
360 os.MkdirAll(path.Dir(dst), 0777)
362 dstfile, err := os.Create(dst)
366 _, err = io.Copy(dstfile, srcfile)
371 err = srcfile.Close()
372 err2 := dstfile.Close()
385 func (runner *ContainerRunner) SetupMounts() (err error) {
386 err = runner.SetupArvMountPoint("keep")
388 return fmt.Errorf("While creating keep mount temp dir: %v", err)
391 token, err := runner.ContainerToken()
393 return fmt.Errorf("could not get container token: %s", err)
398 arvMountCmd := []string{
402 fmt.Sprintf("--crunchstat-interval=%v", runner.statInterval.Seconds())}
404 if runner.Container.RuntimeConstraints.KeepCacheRAM > 0 {
405 arvMountCmd = append(arvMountCmd, "--file-cache", fmt.Sprintf("%d", runner.Container.RuntimeConstraints.KeepCacheRAM))
408 collectionPaths := []string{}
410 runner.Volumes = make(map[string]struct{})
411 needCertMount := true
412 type copyFile struct {
416 var copyFiles []copyFile
419 for bind := range runner.Container.Mounts {
420 binds = append(binds, bind)
422 for bind := range runner.SecretMounts {
423 if _, ok := runner.Container.Mounts[bind]; ok {
424 return fmt.Errorf("Secret mount %q conflicts with regular mount", bind)
426 if runner.SecretMounts[bind].Kind != "json" &&
427 runner.SecretMounts[bind].Kind != "text" {
428 return fmt.Errorf("Secret mount %q type is %q but only 'json' and 'text' are permitted.",
429 bind, runner.SecretMounts[bind].Kind)
431 binds = append(binds, bind)
435 for _, bind := range binds {
436 mnt, ok := runner.Container.Mounts[bind]
438 mnt = runner.SecretMounts[bind]
440 if bind == "stdout" || bind == "stderr" {
441 // Is it a "file" mount kind?
442 if mnt.Kind != "file" {
443 return fmt.Errorf("Unsupported mount kind '%s' for %s. Only 'file' is supported.", mnt.Kind, bind)
446 // Does path start with OutputPath?
447 prefix := runner.Container.OutputPath
448 if !strings.HasSuffix(prefix, "/") {
451 if !strings.HasPrefix(mnt.Path, prefix) {
452 return fmt.Errorf("%s path does not start with OutputPath: %s, %s", strings.Title(bind), mnt.Path, prefix)
457 // Is it a "collection" mount kind?
458 if mnt.Kind != "collection" && mnt.Kind != "json" {
459 return fmt.Errorf("Unsupported mount kind '%s' for stdin. Only 'collection' or 'json' are supported.", mnt.Kind)
463 if bind == "/etc/arvados/ca-certificates.crt" {
464 needCertMount = false
467 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") && bind != runner.Container.OutputPath+"/" {
468 if mnt.Kind != "collection" && mnt.Kind != "text" && mnt.Kind != "json" {
469 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)
474 case mnt.Kind == "collection" && bind != "stdin":
476 if mnt.UUID != "" && mnt.PortableDataHash != "" {
477 return fmt.Errorf("Cannot specify both 'uuid' and 'portable_data_hash' for a collection mount")
481 return fmt.Errorf("Writing to existing collections currently not permitted.")
484 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.UUID)
485 } else if mnt.PortableDataHash != "" {
486 if mnt.Writable && !strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
487 return fmt.Errorf("Can never write to a collection specified by portable data hash")
489 idx := strings.Index(mnt.PortableDataHash, "/")
491 mnt.Path = path.Clean(mnt.PortableDataHash[idx:])
492 mnt.PortableDataHash = mnt.PortableDataHash[0:idx]
493 runner.Container.Mounts[bind] = mnt
495 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.PortableDataHash)
496 if mnt.Path != "" && mnt.Path != "." {
497 if strings.HasPrefix(mnt.Path, "./") {
498 mnt.Path = mnt.Path[2:]
499 } else if strings.HasPrefix(mnt.Path, "/") {
500 mnt.Path = mnt.Path[1:]
502 src += "/" + mnt.Path
505 src = fmt.Sprintf("%s/tmp%d", runner.ArvMountPoint, tmpcount)
506 arvMountCmd = append(arvMountCmd, "--mount-tmp")
507 arvMountCmd = append(arvMountCmd, fmt.Sprintf("tmp%d", tmpcount))
511 if bind == runner.Container.OutputPath {
512 runner.HostOutputDir = src
513 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", src, bind))
514 } else if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
515 copyFiles = append(copyFiles, copyFile{src, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
517 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", src, bind))
520 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s:ro", src, bind))
522 collectionPaths = append(collectionPaths, src)
524 case mnt.Kind == "tmp":
526 tmpdir, err = runner.MkTempDir(runner.parentTemp, "tmp")
528 return fmt.Errorf("While creating mount temp dir: %v", err)
530 st, staterr := os.Stat(tmpdir)
532 return fmt.Errorf("While Stat on temp dir: %v", staterr)
534 err = os.Chmod(tmpdir, st.Mode()|os.ModeSetgid|0777)
536 return fmt.Errorf("While Chmod temp dir: %v", err)
538 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", tmpdir, bind))
539 if bind == runner.Container.OutputPath {
540 runner.HostOutputDir = tmpdir
543 case mnt.Kind == "json" || mnt.Kind == "text":
545 if mnt.Kind == "json" {
546 filedata, err = json.Marshal(mnt.Content)
548 return fmt.Errorf("encoding json data: %v", err)
551 text, ok := mnt.Content.(string)
553 return fmt.Errorf("content for mount %q must be a string", bind)
555 filedata = []byte(text)
558 tmpdir, err := runner.MkTempDir(runner.parentTemp, mnt.Kind)
560 return fmt.Errorf("creating temp dir: %v", err)
562 tmpfn := filepath.Join(tmpdir, "mountdata."+mnt.Kind)
563 err = ioutil.WriteFile(tmpfn, filedata, 0444)
565 return fmt.Errorf("writing temp file: %v", err)
567 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
568 copyFiles = append(copyFiles, copyFile{tmpfn, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
570 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s:ro", tmpfn, bind))
573 case mnt.Kind == "git_tree":
574 tmpdir, err := runner.MkTempDir(runner.parentTemp, "git_tree")
576 return fmt.Errorf("creating temp dir: %v", err)
578 err = gitMount(mnt).extractTree(runner.ArvClient, tmpdir, token)
582 runner.Binds = append(runner.Binds, tmpdir+":"+bind+":ro")
586 if runner.HostOutputDir == "" {
587 return fmt.Errorf("Output path does not correspond to a writable mount point")
590 if wantAPI := runner.Container.RuntimeConstraints.API; needCertMount && wantAPI != nil && *wantAPI {
591 for _, certfile := range arvadosclient.CertFiles {
592 _, err := os.Stat(certfile)
594 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:/etc/arvados/ca-certificates.crt:ro", certfile))
601 arvMountCmd = append(arvMountCmd, "--mount-by-pdh", "by_id")
603 arvMountCmd = append(arvMountCmd, "--mount-by-id", "by_id")
605 arvMountCmd = append(arvMountCmd, runner.ArvMountPoint)
607 runner.ArvMount, err = runner.RunArvMount(arvMountCmd, token)
609 return fmt.Errorf("While trying to start arv-mount: %v", err)
612 for _, p := range collectionPaths {
615 return fmt.Errorf("While checking that input files exist: %v", err)
619 for _, cp := range copyFiles {
620 st, err := os.Stat(cp.src)
622 return fmt.Errorf("While staging writable file from %q to %q: %v", cp.src, cp.bind, err)
625 err = filepath.Walk(cp.src, func(walkpath string, walkinfo os.FileInfo, walkerr error) error {
629 target := path.Join(cp.bind, walkpath[len(cp.src):])
630 if walkinfo.Mode().IsRegular() {
631 copyerr := copyfile(walkpath, target)
635 return os.Chmod(target, walkinfo.Mode()|0777)
636 } else if walkinfo.Mode().IsDir() {
637 mkerr := os.MkdirAll(target, 0777)
641 return os.Chmod(target, walkinfo.Mode()|os.ModeSetgid|0777)
643 return fmt.Errorf("Source %q is not a regular file or directory", cp.src)
646 } else if st.Mode().IsRegular() {
647 err = copyfile(cp.src, cp.bind)
649 err = os.Chmod(cp.bind, st.Mode()|0777)
653 return fmt.Errorf("While staging writable file from %q to %q: %v", cp.src, cp.bind, err)
660 func (runner *ContainerRunner) ProcessDockerAttach(containerReader io.Reader) {
661 // Handle docker log protocol
662 // https://docs.docker.com/engine/reference/api/docker_remote_api_v1.15/#attach-to-a-container
663 defer close(runner.loggingDone)
665 header := make([]byte, 8)
668 _, err = io.ReadAtLeast(containerReader, header, 8)
675 readsize := int64(header[7]) | (int64(header[6]) << 8) | (int64(header[5]) << 16) | (int64(header[4]) << 24)
678 _, err = io.CopyN(runner.Stdout, containerReader, readsize)
681 _, err = io.CopyN(runner.Stderr, containerReader, readsize)
686 runner.CrunchLog.Printf("error reading docker logs: %v", err)
689 err = runner.Stdout.Close()
691 runner.CrunchLog.Printf("error closing stdout logs: %v", err)
694 err = runner.Stderr.Close()
696 runner.CrunchLog.Printf("error closing stderr logs: %v", err)
699 if runner.statReporter != nil {
700 runner.statReporter.Stop()
701 err = runner.statLogger.Close()
703 runner.CrunchLog.Printf("error closing crunchstat logs: %v", err)
708 func (runner *ContainerRunner) stopHoststat() error {
709 if runner.hoststatReporter == nil {
712 runner.hoststatReporter.Stop()
713 err := runner.hoststatLogger.Close()
715 return fmt.Errorf("error closing hoststat logs: %v", err)
720 func (runner *ContainerRunner) startHoststat() error {
721 w, err := runner.NewLogWriter("hoststat")
725 runner.hoststatLogger = NewThrottledLogger(w)
726 runner.hoststatReporter = &crunchstat.Reporter{
727 Logger: log.New(runner.hoststatLogger, "", 0),
728 CgroupRoot: runner.cgroupRoot,
729 PollPeriod: runner.statInterval,
731 runner.hoststatReporter.Start()
735 func (runner *ContainerRunner) startCrunchstat() error {
736 w, err := runner.NewLogWriter("crunchstat")
740 runner.statLogger = NewThrottledLogger(w)
741 runner.statReporter = &crunchstat.Reporter{
742 CID: runner.ContainerID,
743 Logger: log.New(runner.statLogger, "", 0),
744 CgroupParent: runner.expectCgroupParent,
745 CgroupRoot: runner.cgroupRoot,
746 PollPeriod: runner.statInterval,
747 TempDir: runner.parentTemp,
749 runner.statReporter.Start()
753 type infoCommand struct {
758 // LogHostInfo logs info about the current host, for debugging and
759 // accounting purposes. Although it's logged as "node-info", this is
760 // about the environment where crunch-run is actually running, which
761 // might differ from what's described in the node record (see
763 func (runner *ContainerRunner) LogHostInfo() (err error) {
764 w, err := runner.NewLogWriter("node-info")
769 commands := []infoCommand{
771 label: "Host Information",
772 cmd: []string{"uname", "-a"},
775 label: "CPU Information",
776 cmd: []string{"cat", "/proc/cpuinfo"},
779 label: "Memory Information",
780 cmd: []string{"cat", "/proc/meminfo"},
784 cmd: []string{"df", "-m", "/", os.TempDir()},
787 label: "Disk INodes",
788 cmd: []string{"df", "-i", "/", os.TempDir()},
792 // Run commands with informational output to be logged.
793 for _, command := range commands {
794 fmt.Fprintln(w, command.label)
795 cmd := exec.Command(command.cmd[0], command.cmd[1:]...)
798 if err := cmd.Run(); err != nil {
799 err = fmt.Errorf("While running command %q: %v", command.cmd, err)
808 return fmt.Errorf("While closing node-info logs: %v", err)
813 // LogContainerRecord gets and saves the raw JSON container record from the API server
814 func (runner *ContainerRunner) LogContainerRecord() error {
815 logged, err := runner.logAPIResponse("container", "containers", map[string]interface{}{"filters": [][]string{{"uuid", "=", runner.Container.UUID}}}, nil)
816 if !logged && err == nil {
817 err = fmt.Errorf("error: no container record found for %s", runner.Container.UUID)
822 // LogNodeRecord logs arvados#node record corresponding to the current host.
823 func (runner *ContainerRunner) LogNodeRecord() error {
824 hostname := os.Getenv("SLURMD_NODENAME")
826 hostname, _ = os.Hostname()
828 _, err := runner.logAPIResponse("node", "nodes", map[string]interface{}{"filters": [][]string{{"hostname", "=", hostname}}}, func(resp interface{}) {
829 // The "info" field has admin-only info when obtained
830 // with a privileged token, and should not be logged.
831 node, ok := resp.(map[string]interface{})
839 func (runner *ContainerRunner) logAPIResponse(label, path string, params map[string]interface{}, munge func(interface{})) (logged bool, err error) {
840 writer, err := runner.LogCollection.OpenFile(label+".json", os.O_CREATE|os.O_WRONLY, 0666)
845 ArvClient: runner.ArvClient,
846 UUID: runner.Container.UUID,
847 loggingStream: label,
851 reader, err := runner.ArvClient.CallRaw("GET", path, "", "", arvadosclient.Dict(params))
853 return false, fmt.Errorf("error getting %s record: %v", label, err)
857 dec := json.NewDecoder(reader)
859 var resp map[string]interface{}
860 if err = dec.Decode(&resp); err != nil {
861 return false, fmt.Errorf("error decoding %s list response: %v", label, err)
863 items, ok := resp["items"].([]interface{})
865 return false, fmt.Errorf("error decoding %s list response: no \"items\" key in API list response", label)
866 } else if len(items) < 1 {
872 // Re-encode it using indentation to improve readability
873 enc := json.NewEncoder(w)
874 enc.SetIndent("", " ")
875 if err = enc.Encode(items[0]); err != nil {
876 return false, fmt.Errorf("error logging %s record: %v", label, err)
880 return false, fmt.Errorf("error closing %s.json in log collection: %v", label, err)
885 // AttachStreams connects the docker container stdin, stdout and stderr logs
886 // to the Arvados logger which logs to Keep and the API server logs table.
887 func (runner *ContainerRunner) AttachStreams() (err error) {
889 runner.CrunchLog.Print("Attaching container streams")
891 // If stdin mount is provided, attach it to the docker container
892 var stdinRdr arvados.File
894 if stdinMnt, ok := runner.Container.Mounts["stdin"]; ok {
895 if stdinMnt.Kind == "collection" {
896 var stdinColl arvados.Collection
897 collId := stdinMnt.UUID
899 collId = stdinMnt.PortableDataHash
901 err = runner.ArvClient.Get("collections", collId, nil, &stdinColl)
903 return fmt.Errorf("While getting stding collection: %v", err)
906 stdinRdr, err = runner.Kc.ManifestFileReader(manifest.Manifest{Text: stdinColl.ManifestText}, stdinMnt.Path)
907 if os.IsNotExist(err) {
908 return fmt.Errorf("stdin collection path not found: %v", stdinMnt.Path)
909 } else if err != nil {
910 return fmt.Errorf("While getting stdin collection path %v: %v", stdinMnt.Path, err)
912 } else if stdinMnt.Kind == "json" {
913 stdinJson, err = json.Marshal(stdinMnt.Content)
915 return fmt.Errorf("While encoding stdin json data: %v", err)
920 stdinUsed := stdinRdr != nil || len(stdinJson) != 0
921 response, err := runner.Docker.ContainerAttach(context.TODO(), runner.ContainerID,
922 dockertypes.ContainerAttachOptions{Stream: true, Stdin: stdinUsed, Stdout: true, Stderr: true})
924 return fmt.Errorf("While attaching container stdout/stderr streams: %v", err)
927 runner.loggingDone = make(chan bool)
929 if stdoutMnt, ok := runner.Container.Mounts["stdout"]; ok {
930 stdoutFile, err := runner.getStdoutFile(stdoutMnt.Path)
934 runner.Stdout = stdoutFile
935 } else if w, err := runner.NewLogWriter("stdout"); err != nil {
938 runner.Stdout = NewThrottledLogger(w)
941 if stderrMnt, ok := runner.Container.Mounts["stderr"]; ok {
942 stderrFile, err := runner.getStdoutFile(stderrMnt.Path)
946 runner.Stderr = stderrFile
947 } else if w, err := runner.NewLogWriter("stderr"); err != nil {
950 runner.Stderr = NewThrottledLogger(w)
955 _, err := io.Copy(response.Conn, stdinRdr)
957 runner.CrunchLog.Print("While writing stdin collection to docker container %q", err)
961 response.CloseWrite()
963 } else if len(stdinJson) != 0 {
965 _, err := io.Copy(response.Conn, bytes.NewReader(stdinJson))
967 runner.CrunchLog.Print("While writing stdin json to docker container %q", err)
970 response.CloseWrite()
974 go runner.ProcessDockerAttach(response.Reader)
979 func (runner *ContainerRunner) getStdoutFile(mntPath string) (*os.File, error) {
980 stdoutPath := mntPath[len(runner.Container.OutputPath):]
981 index := strings.LastIndex(stdoutPath, "/")
983 subdirs := stdoutPath[:index]
985 st, err := os.Stat(runner.HostOutputDir)
987 return nil, fmt.Errorf("While Stat on temp dir: %v", err)
989 stdoutPath := filepath.Join(runner.HostOutputDir, subdirs)
990 err = os.MkdirAll(stdoutPath, st.Mode()|os.ModeSetgid|0777)
992 return nil, fmt.Errorf("While MkdirAll %q: %v", stdoutPath, err)
996 stdoutFile, err := os.Create(filepath.Join(runner.HostOutputDir, stdoutPath))
998 return nil, fmt.Errorf("While creating file %q: %v", stdoutPath, err)
1001 return stdoutFile, nil
1004 // CreateContainer creates the docker container.
1005 func (runner *ContainerRunner) CreateContainer() error {
1006 runner.CrunchLog.Print("Creating Docker container")
1008 runner.ContainerConfig.Cmd = runner.Container.Command
1009 if runner.Container.Cwd != "." {
1010 runner.ContainerConfig.WorkingDir = runner.Container.Cwd
1013 for k, v := range runner.Container.Environment {
1014 runner.ContainerConfig.Env = append(runner.ContainerConfig.Env, k+"="+v)
1017 runner.ContainerConfig.Volumes = runner.Volumes
1019 maxRAM := int64(runner.Container.RuntimeConstraints.RAM)
1020 if maxRAM < 4*1024*1024 {
1021 // Docker daemon won't let you set a limit less than 4 MiB
1022 maxRAM = 4 * 1024 * 1024
1024 runner.HostConfig = dockercontainer.HostConfig{
1025 Binds: runner.Binds,
1026 LogConfig: dockercontainer.LogConfig{
1029 Resources: dockercontainer.Resources{
1030 CgroupParent: runner.setCgroupParent,
1031 NanoCPUs: int64(runner.Container.RuntimeConstraints.VCPUs) * 1000000000,
1032 Memory: maxRAM, // RAM
1033 MemorySwap: maxRAM, // RAM+swap
1034 KernelMemory: maxRAM, // kernel portion
1038 if wantAPI := runner.Container.RuntimeConstraints.API; wantAPI != nil && *wantAPI {
1039 tok, err := runner.ContainerToken()
1043 runner.ContainerConfig.Env = append(runner.ContainerConfig.Env,
1044 "ARVADOS_API_TOKEN="+tok,
1045 "ARVADOS_API_HOST="+os.Getenv("ARVADOS_API_HOST"),
1046 "ARVADOS_API_HOST_INSECURE="+os.Getenv("ARVADOS_API_HOST_INSECURE"),
1048 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode(runner.networkMode)
1050 if runner.enableNetwork == "always" {
1051 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode(runner.networkMode)
1053 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode("none")
1057 _, stdinUsed := runner.Container.Mounts["stdin"]
1058 runner.ContainerConfig.OpenStdin = stdinUsed
1059 runner.ContainerConfig.StdinOnce = stdinUsed
1060 runner.ContainerConfig.AttachStdin = stdinUsed
1061 runner.ContainerConfig.AttachStdout = true
1062 runner.ContainerConfig.AttachStderr = true
1064 createdBody, err := runner.Docker.ContainerCreate(context.TODO(), &runner.ContainerConfig, &runner.HostConfig, nil, runner.Container.UUID)
1066 return fmt.Errorf("While creating container: %v", err)
1069 runner.ContainerID = createdBody.ID
1071 return runner.AttachStreams()
1074 // StartContainer starts the docker container created by CreateContainer.
1075 func (runner *ContainerRunner) StartContainer() error {
1076 runner.CrunchLog.Printf("Starting Docker container id '%s'", runner.ContainerID)
1077 runner.cStateLock.Lock()
1078 defer runner.cStateLock.Unlock()
1079 if runner.cCancelled {
1082 err := runner.Docker.ContainerStart(context.TODO(), runner.ContainerID,
1083 dockertypes.ContainerStartOptions{})
1086 if m, e := regexp.MatchString("(?ms).*(exec|System error).*(no such file or directory|file not found).*", err.Error()); m && e == nil {
1087 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])
1089 return fmt.Errorf("could not start container: %v%s", err, advice)
1094 // checkContainerd checks if "containerd" is present in the process list.
1095 func (runner *ContainerRunner) CheckContainerd() error {
1096 if runner.checkContainerd == 0 {
1099 p, _ := runner.ListProcesses()
1100 for _, i := range p {
1101 e, _ := i.CmdlineSlice()
1103 if strings.Index(e[0], "containerd") > -1 {
1110 runner.runBrokenNodeHook()
1112 return fmt.Errorf("'containerd' not found in process list.")
1115 // WaitFinish waits for the container to terminate, capture the exit code, and
1116 // close the stdout/stderr logging.
1117 func (runner *ContainerRunner) WaitFinish() error {
1118 var runTimeExceeded <-chan time.Time
1119 runner.CrunchLog.Print("Waiting for container to finish")
1121 waitOk, waitErr := runner.Docker.ContainerWait(context.TODO(), runner.ContainerID, dockercontainer.WaitConditionNotRunning)
1122 arvMountExit := runner.ArvMountExit
1123 if timeout := runner.Container.SchedulingParameters.MaxRunTime; timeout > 0 {
1124 runTimeExceeded = time.After(time.Duration(timeout) * time.Second)
1127 containerdGone := make(chan error)
1128 defer close(containerdGone)
1129 if runner.checkContainerd > 0 {
1131 ticker := time.NewTicker(time.Duration(runner.checkContainerd))
1136 if ck := runner.CheckContainerd(); ck != nil {
1137 containerdGone <- ck
1140 case <-containerdGone:
1141 // Channel closed, quit goroutine
1150 case waitBody := <-waitOk:
1151 runner.CrunchLog.Printf("Container exited with code: %v", waitBody.StatusCode)
1152 code := int(waitBody.StatusCode)
1153 runner.ExitCode = &code
1155 // wait for stdout/stderr to complete
1156 <-runner.loggingDone
1159 case err := <-waitErr:
1160 return fmt.Errorf("container wait: %v", err)
1162 case <-arvMountExit:
1163 runner.CrunchLog.Printf("arv-mount exited while container is still running. Stopping container.")
1165 // arvMountExit will always be ready now that
1166 // it's closed, but that doesn't interest us.
1169 case <-runTimeExceeded:
1170 runner.CrunchLog.Printf("maximum run time exceeded. Stopping container.")
1172 runTimeExceeded = nil
1174 case err := <-containerdGone:
1180 func (runner *ContainerRunner) updateLogs() {
1181 ticker := time.NewTicker(crunchLogUpdatePeriod / 360)
1184 sigusr1 := make(chan os.Signal, 1)
1185 signal.Notify(sigusr1, syscall.SIGUSR1)
1186 defer signal.Stop(sigusr1)
1188 saveAtTime := time.Now().Add(crunchLogUpdatePeriod)
1189 saveAtSize := crunchLogUpdateSize
1195 saveAtTime = time.Now()
1197 runner.logMtx.Lock()
1198 done := runner.LogsPDH != nil
1199 runner.logMtx.Unlock()
1203 size := runner.LogCollection.Size()
1204 if size == savedSize || (time.Now().Before(saveAtTime) && size < saveAtSize) {
1207 saveAtTime = time.Now().Add(crunchLogUpdatePeriod)
1208 saveAtSize = runner.LogCollection.Size() + crunchLogUpdateSize
1209 saved, err := runner.saveLogCollection(false)
1211 runner.CrunchLog.Printf("error updating log collection: %s", err)
1215 var updated arvados.Container
1216 err = runner.ArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{
1217 "container": arvadosclient.Dict{"log": saved.PortableDataHash},
1220 runner.CrunchLog.Printf("error updating container log to %s: %s", saved.PortableDataHash, err)
1228 // CaptureOutput saves data from the container's output directory if
1229 // needed, and updates the container output accordingly.
1230 func (runner *ContainerRunner) CaptureOutput() error {
1231 if wantAPI := runner.Container.RuntimeConstraints.API; wantAPI != nil && *wantAPI {
1232 // Output may have been set directly by the container, so
1233 // refresh the container record to check.
1234 err := runner.ArvClient.Get("containers", runner.Container.UUID,
1235 nil, &runner.Container)
1239 if runner.Container.Output != "" {
1240 // Container output is already set.
1241 runner.OutputPDH = &runner.Container.Output
1246 txt, err := (&copier{
1247 client: runner.client,
1248 arvClient: runner.ArvClient,
1249 keepClient: runner.Kc,
1250 hostOutputDir: runner.HostOutputDir,
1251 ctrOutputDir: runner.Container.OutputPath,
1252 binds: runner.Binds,
1253 mounts: runner.Container.Mounts,
1254 secretMounts: runner.SecretMounts,
1255 logger: runner.CrunchLog,
1260 var resp arvados.Collection
1261 err = runner.ArvClient.Create("collections", arvadosclient.Dict{
1262 "ensure_unique_name": true,
1263 "collection": arvadosclient.Dict{
1265 "name": "output for " + runner.Container.UUID,
1266 "manifest_text": txt,
1270 return fmt.Errorf("error creating output collection: %v", err)
1272 runner.OutputPDH = &resp.PortableDataHash
1276 func (runner *ContainerRunner) CleanupDirs() {
1277 if runner.ArvMount != nil {
1279 umount := exec.Command("arv-mount", fmt.Sprintf("--unmount-timeout=%d", delay), "--unmount", runner.ArvMountPoint)
1280 umount.Stdout = runner.CrunchLog
1281 umount.Stderr = runner.CrunchLog
1282 runner.CrunchLog.Printf("Running %v", umount.Args)
1283 umnterr := umount.Start()
1286 runner.CrunchLog.Printf("Error unmounting: %v", umnterr)
1288 // If arv-mount --unmount gets stuck for any reason, we
1289 // don't want to wait for it forever. Do Wait() in a goroutine
1290 // so it doesn't block crunch-run.
1291 umountExit := make(chan error)
1293 mnterr := umount.Wait()
1295 runner.CrunchLog.Printf("Error unmounting: %v", mnterr)
1297 umountExit <- mnterr
1300 for again := true; again; {
1306 case <-runner.ArvMountExit:
1308 case <-time.After(time.Duration((delay + 1) * int64(time.Second))):
1309 runner.CrunchLog.Printf("Timed out waiting for unmount")
1311 umount.Process.Kill()
1313 runner.ArvMount.Process.Kill()
1319 if runner.ArvMountPoint != "" {
1320 if rmerr := os.Remove(runner.ArvMountPoint); rmerr != nil {
1321 runner.CrunchLog.Printf("While cleaning up arv-mount directory %s: %v", runner.ArvMountPoint, rmerr)
1325 if rmerr := os.RemoveAll(runner.parentTemp); rmerr != nil {
1326 runner.CrunchLog.Printf("While cleaning up temporary directory %s: %v", runner.parentTemp, rmerr)
1330 // CommitLogs posts the collection containing the final container logs.
1331 func (runner *ContainerRunner) CommitLogs() error {
1333 // Hold cStateLock to prevent races on CrunchLog (e.g., stop()).
1334 runner.cStateLock.Lock()
1335 defer runner.cStateLock.Unlock()
1337 runner.CrunchLog.Print(runner.finalState)
1339 if runner.arvMountLog != nil {
1340 runner.arvMountLog.Close()
1342 runner.CrunchLog.Close()
1344 // Closing CrunchLog above allows them to be committed to Keep at this
1345 // point, but re-open crunch log with ArvClient in case there are any
1346 // other further errors (such as failing to write the log to Keep!)
1347 // while shutting down
1348 runner.CrunchLog = NewThrottledLogger(&ArvLogWriter{
1349 ArvClient: runner.ArvClient,
1350 UUID: runner.Container.UUID,
1351 loggingStream: "crunch-run",
1354 runner.CrunchLog.Immediate = log.New(os.Stderr, runner.Container.UUID+" ", 0)
1357 if runner.LogsPDH != nil {
1358 // If we have already assigned something to LogsPDH,
1359 // we must be closing the re-opened log, which won't
1360 // end up getting attached to the container record and
1361 // therefore doesn't need to be saved as a collection
1362 // -- it exists only to send logs to other channels.
1365 saved, err := runner.saveLogCollection(true)
1367 return fmt.Errorf("error saving log collection: %s", err)
1369 runner.logMtx.Lock()
1370 defer runner.logMtx.Unlock()
1371 runner.LogsPDH = &saved.PortableDataHash
1375 func (runner *ContainerRunner) saveLogCollection(final bool) (response arvados.Collection, err error) {
1376 runner.logMtx.Lock()
1377 defer runner.logMtx.Unlock()
1378 if runner.LogsPDH != nil {
1379 // Already finalized.
1382 mt, err := runner.LogCollection.MarshalManifest(".")
1384 err = fmt.Errorf("error creating log manifest: %v", err)
1387 updates := arvadosclient.Dict{
1388 "name": "logs for " + runner.Container.UUID,
1389 "manifest_text": mt,
1392 updates["is_trashed"] = true
1394 exp := time.Now().Add(crunchLogUpdatePeriod * 24)
1395 updates["trash_at"] = exp
1396 updates["delete_at"] = exp
1398 reqBody := arvadosclient.Dict{"collection": updates}
1399 if runner.logUUID == "" {
1400 reqBody["ensure_unique_name"] = true
1401 err = runner.ArvClient.Create("collections", reqBody, &response)
1403 err = runner.ArvClient.Update("collections", runner.logUUID, reqBody, &response)
1408 runner.logUUID = response.UUID
1412 // UpdateContainerRunning updates the container state to "Running"
1413 func (runner *ContainerRunner) UpdateContainerRunning() error {
1414 runner.cStateLock.Lock()
1415 defer runner.cStateLock.Unlock()
1416 if runner.cCancelled {
1419 return runner.ArvClient.Update("containers", runner.Container.UUID,
1420 arvadosclient.Dict{"container": arvadosclient.Dict{"state": "Running"}}, nil)
1423 // ContainerToken returns the api_token the container (and any
1424 // arv-mount processes) are allowed to use.
1425 func (runner *ContainerRunner) ContainerToken() (string, error) {
1426 if runner.token != "" {
1427 return runner.token, nil
1430 var auth arvados.APIClientAuthorization
1431 err := runner.ArvClient.Call("GET", "containers", runner.Container.UUID, "auth", nil, &auth)
1435 runner.token = auth.APIToken
1436 return runner.token, nil
1439 // UpdateContainerComplete updates the container record state on API
1440 // server to "Complete" or "Cancelled"
1441 func (runner *ContainerRunner) UpdateContainerFinal() error {
1442 update := arvadosclient.Dict{}
1443 update["state"] = runner.finalState
1444 if runner.LogsPDH != nil {
1445 update["log"] = *runner.LogsPDH
1447 if runner.finalState == "Complete" {
1448 if runner.ExitCode != nil {
1449 update["exit_code"] = *runner.ExitCode
1451 if runner.OutputPDH != nil {
1452 update["output"] = *runner.OutputPDH
1455 return runner.ArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{"container": update}, nil)
1458 // IsCancelled returns the value of Cancelled, with goroutine safety.
1459 func (runner *ContainerRunner) IsCancelled() bool {
1460 runner.cStateLock.Lock()
1461 defer runner.cStateLock.Unlock()
1462 return runner.cCancelled
1465 // NewArvLogWriter creates an ArvLogWriter
1466 func (runner *ContainerRunner) NewArvLogWriter(name string) (io.WriteCloser, error) {
1467 writer, err := runner.LogCollection.OpenFile(name+".txt", os.O_CREATE|os.O_WRONLY, 0666)
1471 return &ArvLogWriter{
1472 ArvClient: runner.ArvClient,
1473 UUID: runner.Container.UUID,
1474 loggingStream: name,
1475 writeCloser: writer,
1479 // Run the full container lifecycle.
1480 func (runner *ContainerRunner) Run() (err error) {
1481 runner.CrunchLog.Printf("crunch-run %s started", version)
1482 runner.CrunchLog.Printf("Executing container '%s'", runner.Container.UUID)
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()
1501 // checkErr prints e (unless it's nil) and sets err to
1502 // e (unless err is already non-nil). Thus, if err
1503 // hasn't already been assigned when Run() returns,
1504 // this cleanup func will cause Run() to return the
1505 // first non-nil error that is passed to checkErr().
1506 checkErr := func(errorIn string, e error) {
1510 runner.CrunchLog.Printf("error in %s: %v", errorIn, e)
1514 if runner.finalState == "Complete" {
1515 // There was an error in the finalization.
1516 runner.finalState = "Cancelled"
1520 // Log the error encountered in Run(), if any
1521 checkErr("Run", err)
1523 if runner.finalState == "Queued" {
1524 runner.UpdateContainerFinal()
1528 if runner.IsCancelled() {
1529 runner.finalState = "Cancelled"
1530 // but don't return yet -- we still want to
1531 // capture partial output and write logs
1534 checkErr("CaptureOutput", runner.CaptureOutput())
1535 checkErr("stopHoststat", runner.stopHoststat())
1536 checkErr("CommitLogs", runner.CommitLogs())
1537 checkErr("UpdateContainerFinal", runner.UpdateContainerFinal())
1540 err = runner.fetchContainerRecord()
1544 runner.setupSignals()
1545 err = runner.startHoststat()
1550 // Sanity check that containerd is running.
1551 err = runner.CheckContainerd()
1556 // check for and/or load image
1557 err = runner.LoadImage()
1559 if !runner.checkBrokenNode(err) {
1560 // Failed to load image but not due to a "broken node"
1561 // condition, probably user error.
1562 runner.finalState = "Cancelled"
1564 err = fmt.Errorf("While loading container image: %v", err)
1568 // set up FUSE mount and binds
1569 err = runner.SetupMounts()
1571 runner.finalState = "Cancelled"
1572 err = fmt.Errorf("While setting up mounts: %v", err)
1576 err = runner.CreateContainer()
1580 err = runner.LogHostInfo()
1584 err = runner.LogNodeRecord()
1588 err = runner.LogContainerRecord()
1593 if runner.IsCancelled() {
1597 err = runner.UpdateContainerRunning()
1601 runner.finalState = "Cancelled"
1603 err = runner.startCrunchstat()
1608 err = runner.StartContainer()
1610 runner.checkBrokenNode(err)
1614 err = runner.WaitFinish()
1615 if err == nil && !runner.IsCancelled() {
1616 runner.finalState = "Complete"
1621 // Fetch the current container record (uuid = runner.Container.UUID)
1622 // into runner.Container.
1623 func (runner *ContainerRunner) fetchContainerRecord() error {
1624 reader, err := runner.ArvClient.CallRaw("GET", "containers", runner.Container.UUID, "", nil)
1626 return fmt.Errorf("error fetching container record: %v", err)
1628 defer reader.Close()
1630 dec := json.NewDecoder(reader)
1632 err = dec.Decode(&runner.Container)
1634 return fmt.Errorf("error decoding container record: %v", err)
1638 SecretMounts map[string]arvados.Mount `json:"secret_mounts"`
1641 containerToken, err := runner.ContainerToken()
1643 return fmt.Errorf("error getting container token: %v", err)
1646 containerClient, err := runner.MkArvClient(containerToken)
1648 return fmt.Errorf("error creating container API client: %v", err)
1651 err = containerClient.Call("GET", "containers", runner.Container.UUID, "secret_mounts", nil, &sm)
1653 if apierr, ok := err.(arvadosclient.APIServerError); !ok || apierr.HttpStatusCode != 404 {
1654 return fmt.Errorf("error fetching secret_mounts: %v", err)
1656 // ok && apierr.HttpStatusCode == 404, which means
1657 // secret_mounts isn't supported by this API server.
1659 runner.SecretMounts = sm.SecretMounts
1664 // NewContainerRunner creates a new container runner.
1665 func NewContainerRunner(client *arvados.Client, api IArvadosClient, kc IKeepClient, docker ThinDockerClient, containerUUID string) (*ContainerRunner, error) {
1666 cr := &ContainerRunner{
1672 cr.NewLogWriter = cr.NewArvLogWriter
1673 cr.RunArvMount = cr.ArvMountCmd
1674 cr.MkTempDir = ioutil.TempDir
1675 cr.ListProcesses = func() ([]PsProcess, error) {
1676 pr, err := process.Processes()
1680 ps := make([]PsProcess, len(pr))
1681 for i, j := range pr {
1686 cr.MkArvClient = func(token string) (IArvadosClient, error) {
1687 cl, err := arvadosclient.MakeArvadosClient()
1695 cr.LogCollection, err = (&arvados.Collection{}).FileSystem(cr.client, cr.Kc)
1699 cr.Container.UUID = containerUUID
1700 w, err := cr.NewLogWriter("crunch-run")
1704 cr.CrunchLog = NewThrottledLogger(w)
1705 cr.CrunchLog.Immediate = log.New(os.Stderr, containerUUID+" ", 0)
1707 loadLogThrottleParams(api)
1714 statInterval := flag.Duration("crunchstat-interval", 10*time.Second, "sampling period for periodic resource usage reporting")
1715 cgroupRoot := flag.String("cgroup-root", "/sys/fs/cgroup", "path to sysfs cgroup tree")
1716 cgroupParent := flag.String("cgroup-parent", "docker", "name of container's parent cgroup (ignored if -cgroup-parent-subsystem is used)")
1717 cgroupParentSubsystem := flag.String("cgroup-parent-subsystem", "", "use current cgroup for given subsystem as parent cgroup for container")
1718 caCertsPath := flag.String("ca-certs", "", "Path to TLS root certificates")
1719 enableNetwork := flag.String("container-enable-networking", "default",
1720 `Specify if networking should be enabled for container. One of 'default', 'always':
1721 default: only enable networking if container requests it.
1722 always: containers always have networking enabled
1724 networkMode := flag.String("container-network-mode", "default",
1725 `Set networking mode for container. Corresponds to Docker network mode (--net).
1727 memprofile := flag.String("memprofile", "", "write memory profile to `file` after running container")
1728 getVersion := flag.Bool("version", false, "Print version information and exit.")
1729 checkContainerd := flag.Duration("check-containerd", 60*time.Second, "Periodic check if (docker-)containerd is running (use 0s to disable).")
1732 // Print version information if requested
1734 fmt.Printf("crunch-run %s\n", version)
1738 log.Printf("crunch-run %s started", version)
1740 containerId := flag.Arg(0)
1742 if *caCertsPath != "" {
1743 arvadosclient.CertFiles = []string{*caCertsPath}
1746 api, err := arvadosclient.MakeArvadosClient()
1748 log.Fatalf("%s: %v", containerId, err)
1752 kc, kcerr := keepclient.MakeKeepClient(api)
1754 log.Fatalf("%s: %v", containerId, kcerr)
1756 kc.BlockCache = &keepclient.BlockCache{MaxBlocks: 2}
1759 // API version 1.21 corresponds to Docker 1.9, which is currently the
1760 // minimum version we want to support.
1761 docker, dockererr := dockerclient.NewClient(dockerclient.DefaultDockerHost, "1.21", nil, nil)
1763 cr, err := NewContainerRunner(arvados.NewClientFromEnv(), api, kc, docker, containerId)
1767 if dockererr != nil {
1768 cr.CrunchLog.Printf("%s: %v", containerId, dockererr)
1769 cr.checkBrokenNode(dockererr)
1770 cr.CrunchLog.Close()
1774 parentTemp, tmperr := cr.MkTempDir("", "crunch-run."+containerId+".")
1776 log.Fatalf("%s: %v", containerId, tmperr)
1779 cr.parentTemp = parentTemp
1780 cr.statInterval = *statInterval
1781 cr.cgroupRoot = *cgroupRoot
1782 cr.expectCgroupParent = *cgroupParent
1783 cr.enableNetwork = *enableNetwork
1784 cr.networkMode = *networkMode
1785 cr.checkContainerd = *checkContainerd
1786 if *cgroupParentSubsystem != "" {
1787 p := findCgroup(*cgroupParentSubsystem)
1788 cr.setCgroupParent = p
1789 cr.expectCgroupParent = p
1794 if *memprofile != "" {
1795 f, err := os.Create(*memprofile)
1797 log.Printf("could not create memory profile: %s", err)
1799 runtime.GC() // get up-to-date statistics
1800 if err := pprof.WriteHeapProfile(f); err != nil {
1801 log.Printf("could not write memory profile: %s", err)
1803 closeerr := f.Close()
1804 if closeerr != nil {
1805 log.Printf("closing memprofile file: %s", err)
1810 log.Fatalf("%s: %v", containerId, runerr)