1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
30 "git.arvados.org/arvados.git/lib/cmd"
31 "git.arvados.org/arvados.git/lib/crunchstat"
32 "git.arvados.org/arvados.git/sdk/go/arvados"
33 "git.arvados.org/arvados.git/sdk/go/arvadosclient"
34 "git.arvados.org/arvados.git/sdk/go/keepclient"
35 "git.arvados.org/arvados.git/sdk/go/manifest"
36 "golang.org/x/net/context"
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 var Command = command{}
48 // IArvadosClient is the minimal Arvados API methods used by crunch-run.
49 type IArvadosClient interface {
50 Create(resourceType string, parameters arvadosclient.Dict, output interface{}) error
51 Get(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error
52 Update(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error
53 Call(method, resourceType, uuid, action string, parameters arvadosclient.Dict, output interface{}) error
54 CallRaw(method string, resourceType string, uuid string, action string, parameters arvadosclient.Dict) (reader io.ReadCloser, err error)
55 Discovery(key string) (interface{}, error)
58 // ErrCancelled is the error returned when the container is cancelled.
59 var ErrCancelled = errors.New("Cancelled")
61 // IKeepClient is the minimal Keep API methods used by crunch-run.
62 type IKeepClient interface {
63 PutB(buf []byte) (string, int, error)
64 ReadAt(locator string, p []byte, off int) (int, error)
65 ManifestFileReader(m manifest.Manifest, filename string) (arvados.File, error)
66 LocalLocator(locator string) (string, error)
70 // NewLogWriter is a factory function to create a new log writer.
71 type NewLogWriter func(name string) (io.WriteCloser, error)
73 type RunArvMount func(args []string, tok string) (*exec.Cmd, error)
75 type MkTempDir func(string, string) (string, error)
77 // ThinDockerClient is the minimal Docker client interface used by crunch-run.
78 type ThinDockerClient interface {
79 ContainerAttach(ctx context.Context, container string, options dockertypes.ContainerAttachOptions) (dockertypes.HijackedResponse, error)
80 ContainerCreate(ctx context.Context, config *dockercontainer.Config, hostConfig *dockercontainer.HostConfig,
81 networkingConfig *dockernetwork.NetworkingConfig, containerName string) (dockercontainer.ContainerCreateCreatedBody, error)
82 ContainerStart(ctx context.Context, container string, options dockertypes.ContainerStartOptions) error
83 ContainerRemove(ctx context.Context, container string, options dockertypes.ContainerRemoveOptions) error
84 ContainerWait(ctx context.Context, container string, condition dockercontainer.WaitCondition) (<-chan dockercontainer.ContainerWaitOKBody, <-chan error)
85 ContainerInspect(ctx context.Context, id string) (dockertypes.ContainerJSON, error)
86 ImageInspectWithRaw(ctx context.Context, image string) (dockertypes.ImageInspect, []byte, error)
87 ImageLoad(ctx context.Context, input io.Reader, quiet bool) (dockertypes.ImageLoadResponse, error)
88 ImageRemove(ctx context.Context, image string, options dockertypes.ImageRemoveOptions) ([]dockertypes.ImageDeleteResponseItem, error)
91 type PsProcess interface {
92 CmdlineSlice() ([]string, error)
95 // ContainerRunner is the main stateful struct used for a single execution of a
97 type ContainerRunner struct {
98 Docker ThinDockerClient
100 // Dispatcher client is initialized with the Dispatcher token.
101 // This is a privileged token used to manage container status
104 // We have both dispatcherClient and DispatcherArvClient
105 // because there are two different incompatible Arvados Go
106 // SDKs and we have to use both (hopefully this gets fixed in
108 dispatcherClient *arvados.Client
109 DispatcherArvClient IArvadosClient
110 DispatcherKeepClient IKeepClient
112 // Container client is initialized with the Container token
113 // This token controls the permissions of the container, and
114 // must be used for operations such as reading collections.
116 // Same comment as above applies to
117 // containerClient/ContainerArvClient.
118 containerClient *arvados.Client
119 ContainerArvClient IArvadosClient
120 ContainerKeepClient IKeepClient
122 Container arvados.Container
123 ContainerConfig dockercontainer.Config
124 HostConfig dockercontainer.HostConfig
128 NewLogWriter NewLogWriter
129 loggingDone chan bool
130 CrunchLog *ThrottledLogger
131 Stdout io.WriteCloser
132 Stderr io.WriteCloser
135 LogCollection arvados.CollectionFileSystem
137 RunArvMount RunArvMount
143 Volumes map[string]struct{}
145 SigChan chan os.Signal
146 ArvMountExit chan error
147 SecretMounts map[string]arvados.Mount
148 MkArvClient func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error)
152 statLogger io.WriteCloser
153 statReporter *crunchstat.Reporter
154 hoststatLogger io.WriteCloser
155 hoststatReporter *crunchstat.Reporter
156 statInterval time.Duration
158 // What we expect the container's cgroup parent to be.
159 expectCgroupParent string
160 // What we tell docker to use as the container's cgroup
161 // parent. Note: Ideally we would use the same field for both
162 // expectCgroupParent and setCgroupParent, and just make it
163 // default to "docker". However, when using docker < 1.10 with
164 // systemd, specifying a non-empty cgroup parent (even the
165 // default value "docker") hits a docker bug
166 // (https://github.com/docker/docker/issues/17126). Using two
167 // separate fields makes it possible to use the "expect cgroup
168 // parent to be X" feature even on sites where the "specify
169 // cgroup parent" feature breaks.
170 setCgroupParent string
172 cStateLock sync.Mutex
173 cCancelled bool // StopContainer() invoked
174 cRemoved bool // docker confirmed the container no longer exists
176 enableNetwork string // one of "default" or "always"
177 networkMode string // passed through to HostConfig.NetworkMode
178 arvMountLog *ThrottledLogger
180 containerWatchdogInterval time.Duration
183 // setupSignals sets up signal handling to gracefully terminate the underlying
184 // Docker container and update state when receiving a TERM, INT or QUIT signal.
185 func (runner *ContainerRunner) setupSignals() {
186 runner.SigChan = make(chan os.Signal, 1)
187 signal.Notify(runner.SigChan, syscall.SIGTERM)
188 signal.Notify(runner.SigChan, syscall.SIGINT)
189 signal.Notify(runner.SigChan, syscall.SIGQUIT)
191 go func(sig chan os.Signal) {
198 // stop the underlying Docker container.
199 func (runner *ContainerRunner) stop(sig os.Signal) {
200 runner.cStateLock.Lock()
201 defer runner.cStateLock.Unlock()
203 runner.CrunchLog.Printf("caught signal: %v", sig)
205 if runner.ContainerID == "" {
208 runner.cCancelled = true
209 runner.CrunchLog.Printf("removing container")
210 err := runner.Docker.ContainerRemove(context.TODO(), runner.ContainerID, dockertypes.ContainerRemoveOptions{Force: true})
212 runner.CrunchLog.Printf("error removing container: %s", err)
214 if err == nil || strings.Contains(err.Error(), "No such container: "+runner.ContainerID) {
215 runner.cRemoved = true
219 var errorBlacklist = []string{
220 "(?ms).*[Cc]annot connect to the Docker daemon.*",
221 "(?ms).*oci runtime error.*starting container process.*container init.*mounting.*to rootfs.*no such file or directory.*",
222 "(?ms).*grpc: the connection is unavailable.*",
224 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)")
226 func (runner *ContainerRunner) runBrokenNodeHook() {
227 if *brokenNodeHook == "" {
228 path := filepath.Join(lockdir, brokenfile)
229 runner.CrunchLog.Printf("Writing %s to mark node as broken", path)
230 f, err := os.OpenFile(path, os.O_CREATE|os.O_RDWR, 0700)
232 runner.CrunchLog.Printf("Error writing %s: %s", path, err)
237 runner.CrunchLog.Printf("Running broken node hook %q", *brokenNodeHook)
239 c := exec.Command(*brokenNodeHook)
240 c.Stdout = runner.CrunchLog
241 c.Stderr = runner.CrunchLog
244 runner.CrunchLog.Printf("Error running broken node hook: %v", err)
249 func (runner *ContainerRunner) checkBrokenNode(goterr error) bool {
250 for _, d := range errorBlacklist {
251 if m, e := regexp.MatchString(d, goterr.Error()); m && e == nil {
252 runner.CrunchLog.Printf("Error suggests node is unable to run containers: %v", goterr)
253 runner.runBrokenNodeHook()
260 // LoadImage determines the docker image id from the container record and
261 // checks if it is available in the local Docker image store. If not, it loads
262 // the image from Keep.
263 func (runner *ContainerRunner) LoadImage() (err error) {
265 runner.CrunchLog.Printf("Fetching Docker image from collection '%s'", runner.Container.ContainerImage)
267 var collection arvados.Collection
268 err = runner.ContainerArvClient.Get("collections", runner.Container.ContainerImage, nil, &collection)
270 return fmt.Errorf("While getting container image collection: %v", err)
272 manifest := manifest.Manifest{Text: collection.ManifestText}
273 var img, imageID string
274 for ms := range manifest.StreamIter() {
275 img = ms.FileStreamSegments[0].Name
276 if !strings.HasSuffix(img, ".tar") {
277 return fmt.Errorf("First file in the container image collection does not end in .tar")
279 imageID = img[:len(img)-4]
282 runner.CrunchLog.Printf("Using Docker image id '%s'", imageID)
284 _, _, err = runner.Docker.ImageInspectWithRaw(context.TODO(), imageID)
286 runner.CrunchLog.Print("Loading Docker image from keep")
288 var readCloser io.ReadCloser
289 readCloser, err = runner.ContainerKeepClient.ManifestFileReader(manifest, img)
291 return fmt.Errorf("While creating ManifestFileReader for container image: %v", err)
294 response, err := runner.Docker.ImageLoad(context.TODO(), readCloser, true)
296 return fmt.Errorf("While loading container image into Docker: %v", err)
299 defer response.Body.Close()
300 rbody, err := ioutil.ReadAll(response.Body)
302 return fmt.Errorf("Reading response to image load: %v", err)
304 runner.CrunchLog.Printf("Docker response: %s", rbody)
306 runner.CrunchLog.Print("Docker image is available")
309 runner.ContainerConfig.Image = imageID
311 runner.ContainerKeepClient.ClearBlockCache()
316 func (runner *ContainerRunner) ArvMountCmd(arvMountCmd []string, token string) (c *exec.Cmd, err error) {
317 c = exec.Command("arv-mount", arvMountCmd...)
319 // Copy our environment, but override ARVADOS_API_TOKEN with
320 // the container auth token.
322 for _, s := range os.Environ() {
323 if !strings.HasPrefix(s, "ARVADOS_API_TOKEN=") {
324 c.Env = append(c.Env, s)
327 c.Env = append(c.Env, "ARVADOS_API_TOKEN="+token)
329 w, err := runner.NewLogWriter("arv-mount")
333 runner.arvMountLog = NewThrottledLogger(w)
334 c.Stdout = runner.arvMountLog
335 c.Stderr = runner.arvMountLog
337 runner.CrunchLog.Printf("Running %v", c.Args)
344 statReadme := make(chan bool)
345 runner.ArvMountExit = make(chan error)
350 time.Sleep(100 * time.Millisecond)
351 _, err = os.Stat(fmt.Sprintf("%s/by_id/README", runner.ArvMountPoint))
363 runner.CrunchLog.Printf("Arv-mount exit error: %v", mnterr)
365 runner.ArvMountExit <- mnterr
366 close(runner.ArvMountExit)
372 case err := <-runner.ArvMountExit:
373 runner.ArvMount = nil
381 func (runner *ContainerRunner) SetupArvMountPoint(prefix string) (err error) {
382 if runner.ArvMountPoint == "" {
383 runner.ArvMountPoint, err = runner.MkTempDir(runner.parentTemp, prefix)
388 func copyfile(src string, dst string) (err error) {
389 srcfile, err := os.Open(src)
394 os.MkdirAll(path.Dir(dst), 0777)
396 dstfile, err := os.Create(dst)
400 _, err = io.Copy(dstfile, srcfile)
405 err = srcfile.Close()
406 err2 := dstfile.Close()
419 func (runner *ContainerRunner) SetupMounts() (err error) {
420 err = runner.SetupArvMountPoint("keep")
422 return fmt.Errorf("While creating keep mount temp dir: %v", err)
425 token, err := runner.ContainerToken()
427 return fmt.Errorf("could not get container token: %s", err)
432 arvMountCmd := []string{
436 fmt.Sprintf("--crunchstat-interval=%v", runner.statInterval.Seconds())}
438 if runner.Container.RuntimeConstraints.KeepCacheRAM > 0 {
439 arvMountCmd = append(arvMountCmd, "--file-cache", fmt.Sprintf("%d", runner.Container.RuntimeConstraints.KeepCacheRAM))
442 collectionPaths := []string{}
444 runner.Volumes = make(map[string]struct{})
445 needCertMount := true
446 type copyFile struct {
450 var copyFiles []copyFile
453 for bind := range runner.Container.Mounts {
454 binds = append(binds, bind)
456 for bind := range runner.SecretMounts {
457 if _, ok := runner.Container.Mounts[bind]; ok {
458 return fmt.Errorf("Secret mount %q conflicts with regular mount", bind)
460 if runner.SecretMounts[bind].Kind != "json" &&
461 runner.SecretMounts[bind].Kind != "text" {
462 return fmt.Errorf("Secret mount %q type is %q but only 'json' and 'text' are permitted.",
463 bind, runner.SecretMounts[bind].Kind)
465 binds = append(binds, bind)
469 for _, bind := range binds {
470 mnt, ok := runner.Container.Mounts[bind]
472 mnt = runner.SecretMounts[bind]
474 if bind == "stdout" || bind == "stderr" {
475 // Is it a "file" mount kind?
476 if mnt.Kind != "file" {
477 return fmt.Errorf("Unsupported mount kind '%s' for %s. Only 'file' is supported.", mnt.Kind, bind)
480 // Does path start with OutputPath?
481 prefix := runner.Container.OutputPath
482 if !strings.HasSuffix(prefix, "/") {
485 if !strings.HasPrefix(mnt.Path, prefix) {
486 return fmt.Errorf("%s path does not start with OutputPath: %s, %s", strings.Title(bind), mnt.Path, prefix)
491 // Is it a "collection" mount kind?
492 if mnt.Kind != "collection" && mnt.Kind != "json" {
493 return fmt.Errorf("Unsupported mount kind '%s' for stdin. Only 'collection' or 'json' are supported.", mnt.Kind)
497 if bind == "/etc/arvados/ca-certificates.crt" {
498 needCertMount = false
501 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") && bind != runner.Container.OutputPath+"/" {
502 if mnt.Kind != "collection" && mnt.Kind != "text" && mnt.Kind != "json" {
503 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)
508 case mnt.Kind == "collection" && bind != "stdin":
510 if mnt.UUID != "" && mnt.PortableDataHash != "" {
511 return fmt.Errorf("Cannot specify both 'uuid' and 'portable_data_hash' for a collection mount")
515 return fmt.Errorf("Writing to existing collections currently not permitted.")
518 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.UUID)
519 } else if mnt.PortableDataHash != "" {
520 if mnt.Writable && !strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
521 return fmt.Errorf("Can never write to a collection specified by portable data hash")
523 idx := strings.Index(mnt.PortableDataHash, "/")
525 mnt.Path = path.Clean(mnt.PortableDataHash[idx:])
526 mnt.PortableDataHash = mnt.PortableDataHash[0:idx]
527 runner.Container.Mounts[bind] = mnt
529 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.PortableDataHash)
530 if mnt.Path != "" && mnt.Path != "." {
531 if strings.HasPrefix(mnt.Path, "./") {
532 mnt.Path = mnt.Path[2:]
533 } else if strings.HasPrefix(mnt.Path, "/") {
534 mnt.Path = mnt.Path[1:]
536 src += "/" + mnt.Path
539 src = fmt.Sprintf("%s/tmp%d", runner.ArvMountPoint, tmpcount)
540 arvMountCmd = append(arvMountCmd, "--mount-tmp")
541 arvMountCmd = append(arvMountCmd, fmt.Sprintf("tmp%d", tmpcount))
545 if bind == runner.Container.OutputPath {
546 runner.HostOutputDir = src
547 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", src, bind))
548 } else if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
549 copyFiles = append(copyFiles, copyFile{src, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
551 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", src, bind))
554 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s:ro", src, bind))
556 collectionPaths = append(collectionPaths, src)
558 case mnt.Kind == "tmp":
560 tmpdir, err = runner.MkTempDir(runner.parentTemp, "tmp")
562 return fmt.Errorf("While creating mount temp dir: %v", err)
564 st, staterr := os.Stat(tmpdir)
566 return fmt.Errorf("While Stat on temp dir: %v", staterr)
568 err = os.Chmod(tmpdir, st.Mode()|os.ModeSetgid|0777)
570 return fmt.Errorf("While Chmod temp dir: %v", err)
572 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", tmpdir, bind))
573 if bind == runner.Container.OutputPath {
574 runner.HostOutputDir = tmpdir
577 case mnt.Kind == "json" || mnt.Kind == "text":
579 if mnt.Kind == "json" {
580 filedata, err = json.Marshal(mnt.Content)
582 return fmt.Errorf("encoding json data: %v", err)
585 text, ok := mnt.Content.(string)
587 return fmt.Errorf("content for mount %q must be a string", bind)
589 filedata = []byte(text)
592 tmpdir, err := runner.MkTempDir(runner.parentTemp, mnt.Kind)
594 return fmt.Errorf("creating temp dir: %v", err)
596 tmpfn := filepath.Join(tmpdir, "mountdata."+mnt.Kind)
597 err = ioutil.WriteFile(tmpfn, filedata, 0444)
599 return fmt.Errorf("writing temp file: %v", err)
601 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
602 copyFiles = append(copyFiles, copyFile{tmpfn, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
604 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s:ro", tmpfn, bind))
607 case mnt.Kind == "git_tree":
608 tmpdir, err := runner.MkTempDir(runner.parentTemp, "git_tree")
610 return fmt.Errorf("creating temp dir: %v", err)
612 err = gitMount(mnt).extractTree(runner.ContainerArvClient, tmpdir, token)
616 runner.Binds = append(runner.Binds, tmpdir+":"+bind+":ro")
620 if runner.HostOutputDir == "" {
621 return fmt.Errorf("Output path does not correspond to a writable mount point")
624 if wantAPI := runner.Container.RuntimeConstraints.API; needCertMount && wantAPI != nil && *wantAPI {
625 for _, certfile := range arvadosclient.CertFiles {
626 _, err := os.Stat(certfile)
628 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:/etc/arvados/ca-certificates.crt:ro", certfile))
635 arvMountCmd = append(arvMountCmd, "--mount-by-pdh", "by_id")
637 arvMountCmd = append(arvMountCmd, "--mount-by-id", "by_id")
639 arvMountCmd = append(arvMountCmd, runner.ArvMountPoint)
641 runner.ArvMount, err = runner.RunArvMount(arvMountCmd, token)
643 return fmt.Errorf("While trying to start arv-mount: %v", err)
646 for _, p := range collectionPaths {
649 return fmt.Errorf("While checking that input files exist: %v", err)
653 for _, cp := range copyFiles {
654 st, err := os.Stat(cp.src)
656 return fmt.Errorf("While staging writable file from %q to %q: %v", cp.src, cp.bind, err)
659 err = filepath.Walk(cp.src, func(walkpath string, walkinfo os.FileInfo, walkerr error) error {
663 target := path.Join(cp.bind, walkpath[len(cp.src):])
664 if walkinfo.Mode().IsRegular() {
665 copyerr := copyfile(walkpath, target)
669 return os.Chmod(target, walkinfo.Mode()|0777)
670 } else if walkinfo.Mode().IsDir() {
671 mkerr := os.MkdirAll(target, 0777)
675 return os.Chmod(target, walkinfo.Mode()|os.ModeSetgid|0777)
677 return fmt.Errorf("Source %q is not a regular file or directory", cp.src)
680 } else if st.Mode().IsRegular() {
681 err = copyfile(cp.src, cp.bind)
683 err = os.Chmod(cp.bind, st.Mode()|0777)
687 return fmt.Errorf("While staging writable file from %q to %q: %v", cp.src, cp.bind, err)
694 func (runner *ContainerRunner) ProcessDockerAttach(containerReader io.Reader) {
695 // Handle docker log protocol
696 // https://docs.docker.com/engine/reference/api/docker_remote_api_v1.15/#attach-to-a-container
697 defer close(runner.loggingDone)
699 header := make([]byte, 8)
702 _, err = io.ReadAtLeast(containerReader, header, 8)
709 readsize := int64(header[7]) | (int64(header[6]) << 8) | (int64(header[5]) << 16) | (int64(header[4]) << 24)
712 _, err = io.CopyN(runner.Stdout, containerReader, readsize)
715 _, err = io.CopyN(runner.Stderr, containerReader, readsize)
720 runner.CrunchLog.Printf("error reading docker logs: %v", err)
723 err = runner.Stdout.Close()
725 runner.CrunchLog.Printf("error closing stdout logs: %v", err)
728 err = runner.Stderr.Close()
730 runner.CrunchLog.Printf("error closing stderr logs: %v", err)
733 if runner.statReporter != nil {
734 runner.statReporter.Stop()
735 err = runner.statLogger.Close()
737 runner.CrunchLog.Printf("error closing crunchstat logs: %v", err)
742 func (runner *ContainerRunner) stopHoststat() error {
743 if runner.hoststatReporter == nil {
746 runner.hoststatReporter.Stop()
747 err := runner.hoststatLogger.Close()
749 return fmt.Errorf("error closing hoststat logs: %v", err)
754 func (runner *ContainerRunner) startHoststat() error {
755 w, err := runner.NewLogWriter("hoststat")
759 runner.hoststatLogger = NewThrottledLogger(w)
760 runner.hoststatReporter = &crunchstat.Reporter{
761 Logger: log.New(runner.hoststatLogger, "", 0),
762 CgroupRoot: runner.cgroupRoot,
763 PollPeriod: runner.statInterval,
765 runner.hoststatReporter.Start()
769 func (runner *ContainerRunner) startCrunchstat() error {
770 w, err := runner.NewLogWriter("crunchstat")
774 runner.statLogger = NewThrottledLogger(w)
775 runner.statReporter = &crunchstat.Reporter{
776 CID: runner.ContainerID,
777 Logger: log.New(runner.statLogger, "", 0),
778 CgroupParent: runner.expectCgroupParent,
779 CgroupRoot: runner.cgroupRoot,
780 PollPeriod: runner.statInterval,
781 TempDir: runner.parentTemp,
783 runner.statReporter.Start()
787 type infoCommand struct {
792 // LogHostInfo logs info about the current host, for debugging and
793 // accounting purposes. Although it's logged as "node-info", this is
794 // about the environment where crunch-run is actually running, which
795 // might differ from what's described in the node record (see
797 func (runner *ContainerRunner) LogHostInfo() (err error) {
798 w, err := runner.NewLogWriter("node-info")
803 commands := []infoCommand{
805 label: "Host Information",
806 cmd: []string{"uname", "-a"},
809 label: "CPU Information",
810 cmd: []string{"cat", "/proc/cpuinfo"},
813 label: "Memory Information",
814 cmd: []string{"cat", "/proc/meminfo"},
818 cmd: []string{"df", "-m", "/", os.TempDir()},
821 label: "Disk INodes",
822 cmd: []string{"df", "-i", "/", os.TempDir()},
826 // Run commands with informational output to be logged.
827 for _, command := range commands {
828 fmt.Fprintln(w, command.label)
829 cmd := exec.Command(command.cmd[0], command.cmd[1:]...)
832 if err := cmd.Run(); err != nil {
833 err = fmt.Errorf("While running command %q: %v", command.cmd, err)
842 return fmt.Errorf("While closing node-info logs: %v", err)
847 // LogContainerRecord gets and saves the raw JSON container record from the API server
848 func (runner *ContainerRunner) LogContainerRecord() error {
849 logged, err := runner.logAPIResponse("container", "containers", map[string]interface{}{"filters": [][]string{{"uuid", "=", runner.Container.UUID}}}, nil)
850 if !logged && err == nil {
851 err = fmt.Errorf("error: no container record found for %s", runner.Container.UUID)
856 // LogNodeRecord logs the current host's InstanceType config entry (or
857 // the arvados#node record, if running via crunch-dispatch-slurm).
858 func (runner *ContainerRunner) LogNodeRecord() error {
859 if it := os.Getenv("InstanceType"); it != "" {
860 // Dispatched via arvados-dispatch-cloud. Save
861 // InstanceType config fragment received from
862 // dispatcher on stdin.
863 w, err := runner.LogCollection.OpenFile("node.json", os.O_CREATE|os.O_WRONLY, 0666)
868 _, err = io.WriteString(w, it)
874 // Dispatched via crunch-dispatch-slurm. Look up
875 // apiserver's node record corresponding to
877 hostname := os.Getenv("SLURMD_NODENAME")
879 hostname, _ = os.Hostname()
881 _, err := runner.logAPIResponse("node", "nodes", map[string]interface{}{"filters": [][]string{{"hostname", "=", hostname}}}, func(resp interface{}) {
882 // The "info" field has admin-only info when
883 // obtained with a privileged token, and
884 // should not be logged.
885 node, ok := resp.(map[string]interface{})
894 func (runner *ContainerRunner) logAPIResponse(label, path string, params map[string]interface{}, munge func(interface{})) (logged bool, err error) {
895 writer, err := runner.LogCollection.OpenFile(label+".json", os.O_CREATE|os.O_WRONLY, 0666)
900 ArvClient: runner.DispatcherArvClient,
901 UUID: runner.Container.UUID,
902 loggingStream: label,
906 reader, err := runner.DispatcherArvClient.CallRaw("GET", path, "", "", arvadosclient.Dict(params))
908 return false, fmt.Errorf("error getting %s record: %v", label, err)
912 dec := json.NewDecoder(reader)
914 var resp map[string]interface{}
915 if err = dec.Decode(&resp); err != nil {
916 return false, fmt.Errorf("error decoding %s list response: %v", label, err)
918 items, ok := resp["items"].([]interface{})
920 return false, fmt.Errorf("error decoding %s list response: no \"items\" key in API list response", label)
921 } else if len(items) < 1 {
927 // Re-encode it using indentation to improve readability
928 enc := json.NewEncoder(w)
929 enc.SetIndent("", " ")
930 if err = enc.Encode(items[0]); err != nil {
931 return false, fmt.Errorf("error logging %s record: %v", label, err)
935 return false, fmt.Errorf("error closing %s.json in log collection: %v", label, err)
940 // AttachStreams connects the docker container stdin, stdout and stderr logs
941 // to the Arvados logger which logs to Keep and the API server logs table.
942 func (runner *ContainerRunner) AttachStreams() (err error) {
944 runner.CrunchLog.Print("Attaching container streams")
946 // If stdin mount is provided, attach it to the docker container
947 var stdinRdr arvados.File
949 if stdinMnt, ok := runner.Container.Mounts["stdin"]; ok {
950 if stdinMnt.Kind == "collection" {
951 var stdinColl arvados.Collection
952 collId := stdinMnt.UUID
954 collId = stdinMnt.PortableDataHash
956 err = runner.ContainerArvClient.Get("collections", collId, nil, &stdinColl)
958 return fmt.Errorf("While getting stdin collection: %v", err)
961 stdinRdr, err = runner.ContainerKeepClient.ManifestFileReader(
962 manifest.Manifest{Text: stdinColl.ManifestText},
964 if os.IsNotExist(err) {
965 return fmt.Errorf("stdin collection path not found: %v", stdinMnt.Path)
966 } else if err != nil {
967 return fmt.Errorf("While getting stdin collection path %v: %v", stdinMnt.Path, err)
969 } else if stdinMnt.Kind == "json" {
970 stdinJson, err = json.Marshal(stdinMnt.Content)
972 return fmt.Errorf("While encoding stdin json data: %v", err)
977 stdinUsed := stdinRdr != nil || len(stdinJson) != 0
978 response, err := runner.Docker.ContainerAttach(context.TODO(), runner.ContainerID,
979 dockertypes.ContainerAttachOptions{Stream: true, Stdin: stdinUsed, Stdout: true, Stderr: true})
981 return fmt.Errorf("While attaching container stdout/stderr streams: %v", err)
984 runner.loggingDone = make(chan bool)
986 if stdoutMnt, ok := runner.Container.Mounts["stdout"]; ok {
987 stdoutFile, err := runner.getStdoutFile(stdoutMnt.Path)
991 runner.Stdout = stdoutFile
992 } else if w, err := runner.NewLogWriter("stdout"); err != nil {
995 runner.Stdout = NewThrottledLogger(w)
998 if stderrMnt, ok := runner.Container.Mounts["stderr"]; ok {
999 stderrFile, err := runner.getStdoutFile(stderrMnt.Path)
1003 runner.Stderr = stderrFile
1004 } else if w, err := runner.NewLogWriter("stderr"); err != nil {
1007 runner.Stderr = NewThrottledLogger(w)
1010 if stdinRdr != nil {
1012 _, err := io.Copy(response.Conn, stdinRdr)
1014 runner.CrunchLog.Printf("While writing stdin collection to docker container: %v", err)
1018 response.CloseWrite()
1020 } else if len(stdinJson) != 0 {
1022 _, err := io.Copy(response.Conn, bytes.NewReader(stdinJson))
1024 runner.CrunchLog.Printf("While writing stdin json to docker container: %v", err)
1027 response.CloseWrite()
1031 go runner.ProcessDockerAttach(response.Reader)
1036 func (runner *ContainerRunner) getStdoutFile(mntPath string) (*os.File, error) {
1037 stdoutPath := mntPath[len(runner.Container.OutputPath):]
1038 index := strings.LastIndex(stdoutPath, "/")
1040 subdirs := stdoutPath[:index]
1042 st, err := os.Stat(runner.HostOutputDir)
1044 return nil, fmt.Errorf("While Stat on temp dir: %v", err)
1046 stdoutPath := filepath.Join(runner.HostOutputDir, subdirs)
1047 err = os.MkdirAll(stdoutPath, st.Mode()|os.ModeSetgid|0777)
1049 return nil, fmt.Errorf("While MkdirAll %q: %v", stdoutPath, err)
1053 stdoutFile, err := os.Create(filepath.Join(runner.HostOutputDir, stdoutPath))
1055 return nil, fmt.Errorf("While creating file %q: %v", stdoutPath, err)
1058 return stdoutFile, nil
1061 // CreateContainer creates the docker container.
1062 func (runner *ContainerRunner) CreateContainer() error {
1063 runner.CrunchLog.Print("Creating Docker container")
1065 runner.ContainerConfig.Cmd = runner.Container.Command
1066 if runner.Container.Cwd != "." {
1067 runner.ContainerConfig.WorkingDir = runner.Container.Cwd
1070 for k, v := range runner.Container.Environment {
1071 runner.ContainerConfig.Env = append(runner.ContainerConfig.Env, k+"="+v)
1074 runner.ContainerConfig.Volumes = runner.Volumes
1076 maxRAM := int64(runner.Container.RuntimeConstraints.RAM)
1077 if maxRAM < 4*1024*1024 {
1078 // Docker daemon won't let you set a limit less than 4 MiB
1079 maxRAM = 4 * 1024 * 1024
1081 runner.HostConfig = dockercontainer.HostConfig{
1082 Binds: runner.Binds,
1083 LogConfig: dockercontainer.LogConfig{
1086 Resources: dockercontainer.Resources{
1087 CgroupParent: runner.setCgroupParent,
1088 NanoCPUs: int64(runner.Container.RuntimeConstraints.VCPUs) * 1000000000,
1089 Memory: maxRAM, // RAM
1090 MemorySwap: maxRAM, // RAM+swap
1091 KernelMemory: maxRAM, // kernel portion
1095 if wantAPI := runner.Container.RuntimeConstraints.API; wantAPI != nil && *wantAPI {
1096 tok, err := runner.ContainerToken()
1100 runner.ContainerConfig.Env = append(runner.ContainerConfig.Env,
1101 "ARVADOS_API_TOKEN="+tok,
1102 "ARVADOS_API_HOST="+os.Getenv("ARVADOS_API_HOST"),
1103 "ARVADOS_API_HOST_INSECURE="+os.Getenv("ARVADOS_API_HOST_INSECURE"),
1105 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode(runner.networkMode)
1107 if runner.enableNetwork == "always" {
1108 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode(runner.networkMode)
1110 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode("none")
1114 _, stdinUsed := runner.Container.Mounts["stdin"]
1115 runner.ContainerConfig.OpenStdin = stdinUsed
1116 runner.ContainerConfig.StdinOnce = stdinUsed
1117 runner.ContainerConfig.AttachStdin = stdinUsed
1118 runner.ContainerConfig.AttachStdout = true
1119 runner.ContainerConfig.AttachStderr = true
1121 createdBody, err := runner.Docker.ContainerCreate(context.TODO(), &runner.ContainerConfig, &runner.HostConfig, nil, runner.Container.UUID)
1123 return fmt.Errorf("While creating container: %v", err)
1126 runner.ContainerID = createdBody.ID
1128 return runner.AttachStreams()
1131 // StartContainer starts the docker container created by CreateContainer.
1132 func (runner *ContainerRunner) StartContainer() error {
1133 runner.CrunchLog.Printf("Starting Docker container id '%s'", runner.ContainerID)
1134 runner.cStateLock.Lock()
1135 defer runner.cStateLock.Unlock()
1136 if runner.cCancelled {
1139 err := runner.Docker.ContainerStart(context.TODO(), runner.ContainerID,
1140 dockertypes.ContainerStartOptions{})
1143 if m, e := regexp.MatchString("(?ms).*(exec|System error).*(no such file or directory|file not found).*", err.Error()); m && e == nil {
1144 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])
1146 return fmt.Errorf("could not start container: %v%s", err, advice)
1151 // WaitFinish waits for the container to terminate, capture the exit code, and
1152 // close the stdout/stderr logging.
1153 func (runner *ContainerRunner) WaitFinish() error {
1154 var runTimeExceeded <-chan time.Time
1155 runner.CrunchLog.Print("Waiting for container to finish")
1157 waitOk, waitErr := runner.Docker.ContainerWait(context.TODO(), runner.ContainerID, dockercontainer.WaitConditionNotRunning)
1158 arvMountExit := runner.ArvMountExit
1159 if timeout := runner.Container.SchedulingParameters.MaxRunTime; timeout > 0 {
1160 runTimeExceeded = time.After(time.Duration(timeout) * time.Second)
1163 containerGone := make(chan struct{})
1165 defer close(containerGone)
1166 if runner.containerWatchdogInterval < 1 {
1167 runner.containerWatchdogInterval = time.Minute
1169 for range time.NewTicker(runner.containerWatchdogInterval).C {
1170 ctx, cancel := context.WithDeadline(context.Background(), time.Now().Add(runner.containerWatchdogInterval))
1171 ctr, err := runner.Docker.ContainerInspect(ctx, runner.ContainerID)
1173 runner.cStateLock.Lock()
1174 done := runner.cRemoved || runner.ExitCode != nil
1175 runner.cStateLock.Unlock()
1178 } else if err != nil {
1179 runner.CrunchLog.Printf("Error inspecting container: %s", err)
1180 runner.checkBrokenNode(err)
1182 } else if ctr.State == nil || !(ctr.State.Running || ctr.State.Status == "created") {
1183 runner.CrunchLog.Printf("Container is not running: State=%v", ctr.State)
1191 case waitBody := <-waitOk:
1192 runner.CrunchLog.Printf("Container exited with code: %v", waitBody.StatusCode)
1193 code := int(waitBody.StatusCode)
1194 runner.ExitCode = &code
1196 // wait for stdout/stderr to complete
1197 <-runner.loggingDone
1200 case err := <-waitErr:
1201 return fmt.Errorf("container wait: %v", err)
1203 case <-arvMountExit:
1204 runner.CrunchLog.Printf("arv-mount exited while container is still running. Stopping container.")
1206 // arvMountExit will always be ready now that
1207 // it's closed, but that doesn't interest us.
1210 case <-runTimeExceeded:
1211 runner.CrunchLog.Printf("maximum run time exceeded. Stopping container.")
1213 runTimeExceeded = nil
1215 case <-containerGone:
1216 return errors.New("docker client never returned status")
1221 func (runner *ContainerRunner) updateLogs() {
1222 ticker := time.NewTicker(crunchLogUpdatePeriod / 360)
1225 sigusr1 := make(chan os.Signal, 1)
1226 signal.Notify(sigusr1, syscall.SIGUSR1)
1227 defer signal.Stop(sigusr1)
1229 saveAtTime := time.Now().Add(crunchLogUpdatePeriod)
1230 saveAtSize := crunchLogUpdateSize
1236 saveAtTime = time.Now()
1238 runner.logMtx.Lock()
1239 done := runner.LogsPDH != nil
1240 runner.logMtx.Unlock()
1244 size := runner.LogCollection.Size()
1245 if size == savedSize || (time.Now().Before(saveAtTime) && size < saveAtSize) {
1248 saveAtTime = time.Now().Add(crunchLogUpdatePeriod)
1249 saveAtSize = runner.LogCollection.Size() + crunchLogUpdateSize
1250 saved, err := runner.saveLogCollection(false)
1252 runner.CrunchLog.Printf("error updating log collection: %s", err)
1256 var updated arvados.Container
1257 err = runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{
1258 "container": arvadosclient.Dict{"log": saved.PortableDataHash},
1261 runner.CrunchLog.Printf("error updating container log to %s: %s", saved.PortableDataHash, err)
1269 // CaptureOutput saves data from the container's output directory if
1270 // needed, and updates the container output accordingly.
1271 func (runner *ContainerRunner) CaptureOutput() error {
1272 if wantAPI := runner.Container.RuntimeConstraints.API; wantAPI != nil && *wantAPI {
1273 // Output may have been set directly by the container, so
1274 // refresh the container record to check.
1275 err := runner.DispatcherArvClient.Get("containers", runner.Container.UUID,
1276 nil, &runner.Container)
1280 if runner.Container.Output != "" {
1281 // Container output is already set.
1282 runner.OutputPDH = &runner.Container.Output
1287 txt, err := (&copier{
1288 client: runner.containerClient,
1289 arvClient: runner.ContainerArvClient,
1290 keepClient: runner.ContainerKeepClient,
1291 hostOutputDir: runner.HostOutputDir,
1292 ctrOutputDir: runner.Container.OutputPath,
1293 binds: runner.Binds,
1294 mounts: runner.Container.Mounts,
1295 secretMounts: runner.SecretMounts,
1296 logger: runner.CrunchLog,
1301 if n := len(regexp.MustCompile(` [0-9a-f]+\+\S*\+R`).FindAllStringIndex(txt, -1)); n > 0 {
1302 runner.CrunchLog.Printf("Copying %d data blocks from remote input collections...", n)
1303 fs, err := (&arvados.Collection{ManifestText: txt}).FileSystem(runner.containerClient, runner.ContainerKeepClient)
1307 txt, err = fs.MarshalManifest(".")
1312 var resp arvados.Collection
1313 err = runner.ContainerArvClient.Create("collections", arvadosclient.Dict{
1314 "ensure_unique_name": true,
1315 "collection": arvadosclient.Dict{
1317 "name": "output for " + runner.Container.UUID,
1318 "manifest_text": txt,
1322 return fmt.Errorf("error creating output collection: %v", err)
1324 runner.OutputPDH = &resp.PortableDataHash
1328 func (runner *ContainerRunner) CleanupDirs() {
1329 if runner.ArvMount != nil {
1331 umount := exec.Command("arv-mount", fmt.Sprintf("--unmount-timeout=%d", delay), "--unmount", runner.ArvMountPoint)
1332 umount.Stdout = runner.CrunchLog
1333 umount.Stderr = runner.CrunchLog
1334 runner.CrunchLog.Printf("Running %v", umount.Args)
1335 umnterr := umount.Start()
1338 runner.CrunchLog.Printf("Error unmounting: %v", umnterr)
1340 // If arv-mount --unmount gets stuck for any reason, we
1341 // don't want to wait for it forever. Do Wait() in a goroutine
1342 // so it doesn't block crunch-run.
1343 umountExit := make(chan error)
1345 mnterr := umount.Wait()
1347 runner.CrunchLog.Printf("Error unmounting: %v", mnterr)
1349 umountExit <- mnterr
1352 for again := true; again; {
1358 case <-runner.ArvMountExit:
1360 case <-time.After(time.Duration((delay + 1) * int64(time.Second))):
1361 runner.CrunchLog.Printf("Timed out waiting for unmount")
1363 umount.Process.Kill()
1365 runner.ArvMount.Process.Kill()
1371 if runner.ArvMountPoint != "" {
1372 if rmerr := os.Remove(runner.ArvMountPoint); rmerr != nil {
1373 runner.CrunchLog.Printf("While cleaning up arv-mount directory %s: %v", runner.ArvMountPoint, rmerr)
1377 if rmerr := os.RemoveAll(runner.parentTemp); rmerr != nil {
1378 runner.CrunchLog.Printf("While cleaning up temporary directory %s: %v", runner.parentTemp, rmerr)
1382 // CommitLogs posts the collection containing the final container logs.
1383 func (runner *ContainerRunner) CommitLogs() error {
1385 // Hold cStateLock to prevent races on CrunchLog (e.g., stop()).
1386 runner.cStateLock.Lock()
1387 defer runner.cStateLock.Unlock()
1389 runner.CrunchLog.Print(runner.finalState)
1391 if runner.arvMountLog != nil {
1392 runner.arvMountLog.Close()
1394 runner.CrunchLog.Close()
1396 // Closing CrunchLog above allows them to be committed to Keep at this
1397 // point, but re-open crunch log with ArvClient in case there are any
1398 // other further errors (such as failing to write the log to Keep!)
1399 // while shutting down
1400 runner.CrunchLog = NewThrottledLogger(&ArvLogWriter{
1401 ArvClient: runner.DispatcherArvClient,
1402 UUID: runner.Container.UUID,
1403 loggingStream: "crunch-run",
1406 runner.CrunchLog.Immediate = log.New(os.Stderr, runner.Container.UUID+" ", 0)
1409 if runner.LogsPDH != nil {
1410 // If we have already assigned something to LogsPDH,
1411 // we must be closing the re-opened log, which won't
1412 // end up getting attached to the container record and
1413 // therefore doesn't need to be saved as a collection
1414 // -- it exists only to send logs to other channels.
1417 saved, err := runner.saveLogCollection(true)
1419 return fmt.Errorf("error saving log collection: %s", err)
1421 runner.logMtx.Lock()
1422 defer runner.logMtx.Unlock()
1423 runner.LogsPDH = &saved.PortableDataHash
1427 func (runner *ContainerRunner) saveLogCollection(final bool) (response arvados.Collection, err error) {
1428 runner.logMtx.Lock()
1429 defer runner.logMtx.Unlock()
1430 if runner.LogsPDH != nil {
1431 // Already finalized.
1434 mt, err := runner.LogCollection.MarshalManifest(".")
1436 err = fmt.Errorf("error creating log manifest: %v", err)
1439 updates := arvadosclient.Dict{
1440 "name": "logs for " + runner.Container.UUID,
1441 "manifest_text": mt,
1444 updates["is_trashed"] = true
1446 exp := time.Now().Add(crunchLogUpdatePeriod * 24)
1447 updates["trash_at"] = exp
1448 updates["delete_at"] = exp
1450 reqBody := arvadosclient.Dict{"collection": updates}
1451 if runner.logUUID == "" {
1452 reqBody["ensure_unique_name"] = true
1453 err = runner.DispatcherArvClient.Create("collections", reqBody, &response)
1455 err = runner.DispatcherArvClient.Update("collections", runner.logUUID, reqBody, &response)
1460 runner.logUUID = response.UUID
1464 // UpdateContainerRunning updates the container state to "Running"
1465 func (runner *ContainerRunner) UpdateContainerRunning() error {
1466 runner.cStateLock.Lock()
1467 defer runner.cStateLock.Unlock()
1468 if runner.cCancelled {
1471 return runner.DispatcherArvClient.Update("containers", runner.Container.UUID,
1472 arvadosclient.Dict{"container": arvadosclient.Dict{"state": "Running"}}, nil)
1475 // ContainerToken returns the api_token the container (and any
1476 // arv-mount processes) are allowed to use.
1477 func (runner *ContainerRunner) ContainerToken() (string, error) {
1478 if runner.token != "" {
1479 return runner.token, nil
1482 var auth arvados.APIClientAuthorization
1483 err := runner.DispatcherArvClient.Call("GET", "containers", runner.Container.UUID, "auth", nil, &auth)
1487 runner.token = fmt.Sprintf("v2/%s/%s/%s", auth.UUID, auth.APIToken, runner.Container.UUID)
1488 return runner.token, nil
1491 // UpdateContainerComplete updates the container record state on API
1492 // server to "Complete" or "Cancelled"
1493 func (runner *ContainerRunner) UpdateContainerFinal() error {
1494 update := arvadosclient.Dict{}
1495 update["state"] = runner.finalState
1496 if runner.LogsPDH != nil {
1497 update["log"] = *runner.LogsPDH
1499 if runner.finalState == "Complete" {
1500 if runner.ExitCode != nil {
1501 update["exit_code"] = *runner.ExitCode
1503 if runner.OutputPDH != nil {
1504 update["output"] = *runner.OutputPDH
1507 return runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{"container": update}, nil)
1510 // IsCancelled returns the value of Cancelled, with goroutine safety.
1511 func (runner *ContainerRunner) IsCancelled() bool {
1512 runner.cStateLock.Lock()
1513 defer runner.cStateLock.Unlock()
1514 return runner.cCancelled
1517 // NewArvLogWriter creates an ArvLogWriter
1518 func (runner *ContainerRunner) NewArvLogWriter(name string) (io.WriteCloser, error) {
1519 writer, err := runner.LogCollection.OpenFile(name+".txt", os.O_CREATE|os.O_WRONLY, 0666)
1523 return &ArvLogWriter{
1524 ArvClient: runner.DispatcherArvClient,
1525 UUID: runner.Container.UUID,
1526 loggingStream: name,
1527 writeCloser: writer,
1531 // Run the full container lifecycle.
1532 func (runner *ContainerRunner) Run() (err error) {
1533 runner.CrunchLog.Printf("crunch-run %s started", cmd.Version.String())
1534 runner.CrunchLog.Printf("Executing container '%s'", runner.Container.UUID)
1536 hostname, hosterr := os.Hostname()
1538 runner.CrunchLog.Printf("Error getting hostname '%v'", hosterr)
1540 runner.CrunchLog.Printf("Executing on host '%s'", hostname)
1543 runner.finalState = "Queued"
1546 runner.CleanupDirs()
1548 runner.CrunchLog.Printf("crunch-run finished")
1549 runner.CrunchLog.Close()
1552 err = runner.fetchContainerRecord()
1556 if runner.Container.State != "Locked" {
1557 return fmt.Errorf("dispatch error detected: container %q has state %q", runner.Container.UUID, runner.Container.State)
1561 // checkErr prints e (unless it's nil) and sets err to
1562 // e (unless err is already non-nil). Thus, if err
1563 // hasn't already been assigned when Run() returns,
1564 // this cleanup func will cause Run() to return the
1565 // first non-nil error that is passed to checkErr().
1566 checkErr := func(errorIn string, e error) {
1570 runner.CrunchLog.Printf("error in %s: %v", errorIn, e)
1574 if runner.finalState == "Complete" {
1575 // There was an error in the finalization.
1576 runner.finalState = "Cancelled"
1580 // Log the error encountered in Run(), if any
1581 checkErr("Run", err)
1583 if runner.finalState == "Queued" {
1584 runner.UpdateContainerFinal()
1588 if runner.IsCancelled() {
1589 runner.finalState = "Cancelled"
1590 // but don't return yet -- we still want to
1591 // capture partial output and write logs
1594 checkErr("CaptureOutput", runner.CaptureOutput())
1595 checkErr("stopHoststat", runner.stopHoststat())
1596 checkErr("CommitLogs", runner.CommitLogs())
1597 checkErr("UpdateContainerFinal", runner.UpdateContainerFinal())
1600 runner.setupSignals()
1601 err = runner.startHoststat()
1606 // check for and/or load image
1607 err = runner.LoadImage()
1609 if !runner.checkBrokenNode(err) {
1610 // Failed to load image but not due to a "broken node"
1611 // condition, probably user error.
1612 runner.finalState = "Cancelled"
1614 err = fmt.Errorf("While loading container image: %v", err)
1618 // set up FUSE mount and binds
1619 err = runner.SetupMounts()
1621 runner.finalState = "Cancelled"
1622 err = fmt.Errorf("While setting up mounts: %v", err)
1626 err = runner.CreateContainer()
1630 err = runner.LogHostInfo()
1634 err = runner.LogNodeRecord()
1638 err = runner.LogContainerRecord()
1643 if runner.IsCancelled() {
1647 err = runner.UpdateContainerRunning()
1651 runner.finalState = "Cancelled"
1653 err = runner.startCrunchstat()
1658 err = runner.StartContainer()
1660 runner.checkBrokenNode(err)
1664 err = runner.WaitFinish()
1665 if err == nil && !runner.IsCancelled() {
1666 runner.finalState = "Complete"
1671 // Fetch the current container record (uuid = runner.Container.UUID)
1672 // into runner.Container.
1673 func (runner *ContainerRunner) fetchContainerRecord() error {
1674 reader, err := runner.DispatcherArvClient.CallRaw("GET", "containers", runner.Container.UUID, "", nil)
1676 return fmt.Errorf("error fetching container record: %v", err)
1678 defer reader.Close()
1680 dec := json.NewDecoder(reader)
1682 err = dec.Decode(&runner.Container)
1684 return fmt.Errorf("error decoding container record: %v", err)
1688 SecretMounts map[string]arvados.Mount `json:"secret_mounts"`
1691 containerToken, err := runner.ContainerToken()
1693 return fmt.Errorf("error getting container token: %v", err)
1696 runner.ContainerArvClient, runner.ContainerKeepClient,
1697 runner.containerClient, err = runner.MkArvClient(containerToken)
1699 return fmt.Errorf("error creating container API client: %v", err)
1702 err = runner.ContainerArvClient.Call("GET", "containers", runner.Container.UUID, "secret_mounts", nil, &sm)
1704 if apierr, ok := err.(arvadosclient.APIServerError); !ok || apierr.HttpStatusCode != 404 {
1705 return fmt.Errorf("error fetching secret_mounts: %v", err)
1707 // ok && apierr.HttpStatusCode == 404, which means
1708 // secret_mounts isn't supported by this API server.
1710 runner.SecretMounts = sm.SecretMounts
1715 // NewContainerRunner creates a new container runner.
1716 func NewContainerRunner(dispatcherClient *arvados.Client,
1717 dispatcherArvClient IArvadosClient,
1718 dispatcherKeepClient IKeepClient,
1719 docker ThinDockerClient,
1720 containerUUID string) (*ContainerRunner, error) {
1722 cr := &ContainerRunner{
1723 dispatcherClient: dispatcherClient,
1724 DispatcherArvClient: dispatcherArvClient,
1725 DispatcherKeepClient: dispatcherKeepClient,
1728 cr.NewLogWriter = cr.NewArvLogWriter
1729 cr.RunArvMount = cr.ArvMountCmd
1730 cr.MkTempDir = ioutil.TempDir
1731 cr.MkArvClient = func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error) {
1732 cl, err := arvadosclient.MakeArvadosClient()
1734 return nil, nil, nil, err
1737 kc, err := keepclient.MakeKeepClient(cl)
1739 return nil, nil, nil, err
1741 c2 := arvados.NewClientFromEnv()
1742 c2.AuthToken = token
1743 return cl, kc, c2, nil
1746 cr.LogCollection, err = (&arvados.Collection{}).FileSystem(cr.dispatcherClient, cr.DispatcherKeepClient)
1750 cr.Container.UUID = containerUUID
1751 w, err := cr.NewLogWriter("crunch-run")
1755 cr.CrunchLog = NewThrottledLogger(w)
1756 cr.CrunchLog.Immediate = log.New(os.Stderr, containerUUID+" ", 0)
1758 loadLogThrottleParams(dispatcherArvClient)
1764 func (command) RunCommand(prog string, args []string, stdin io.Reader, stdout, stderr io.Writer) int {
1765 flags := flag.NewFlagSet(prog, flag.ContinueOnError)
1766 statInterval := flags.Duration("crunchstat-interval", 10*time.Second, "sampling period for periodic resource usage reporting")
1767 cgroupRoot := flags.String("cgroup-root", "/sys/fs/cgroup", "path to sysfs cgroup tree")
1768 cgroupParent := flags.String("cgroup-parent", "docker", "name of container's parent cgroup (ignored if -cgroup-parent-subsystem is used)")
1769 cgroupParentSubsystem := flags.String("cgroup-parent-subsystem", "", "use current cgroup for given subsystem as parent cgroup for container")
1770 caCertsPath := flags.String("ca-certs", "", "Path to TLS root certificates")
1771 detach := flags.Bool("detach", false, "Detach from parent process and run in the background")
1772 stdinEnv := flags.Bool("stdin-env", false, "Load environment variables from JSON message on stdin")
1773 sleep := flags.Duration("sleep", 0, "Delay before starting (testing use only)")
1774 kill := flags.Int("kill", -1, "Send signal to an existing crunch-run process for given UUID")
1775 list := flags.Bool("list", false, "List UUIDs of existing crunch-run processes")
1776 enableNetwork := flags.String("container-enable-networking", "default",
1777 `Specify if networking should be enabled for container. One of 'default', 'always':
1778 default: only enable networking if container requests it.
1779 always: containers always have networking enabled
1781 networkMode := flags.String("container-network-mode", "default",
1782 `Set networking mode for container. Corresponds to Docker network mode (--net).
1784 memprofile := flags.String("memprofile", "", "write memory profile to `file` after running container")
1785 flags.Duration("check-containerd", 0, "Ignored. Exists for compatibility with older versions.")
1787 ignoreDetachFlag := false
1788 if len(args) > 0 && args[0] == "-no-detach" {
1789 // This process was invoked by a parent process, which
1790 // has passed along its own arguments, including
1791 // -detach, after the leading -no-detach flag. Strip
1792 // the leading -no-detach flag (it's not recognized by
1793 // flags.Parse()) and ignore the -detach flag that
1796 ignoreDetachFlag = true
1799 if err := flags.Parse(args); err == flag.ErrHelp {
1801 } else if err != nil {
1806 if *stdinEnv && !ignoreDetachFlag {
1807 // Load env vars on stdin if asked (but not in a
1808 // detached child process, in which case stdin is
1810 err := loadEnv(os.Stdin)
1817 containerId := flags.Arg(0)
1820 case *detach && !ignoreDetachFlag:
1821 return Detach(containerId, prog, args, os.Stdout, os.Stderr)
1823 return KillProcess(containerId, syscall.Signal(*kill), os.Stdout, os.Stderr)
1825 return ListProcesses(os.Stdout, os.Stderr)
1828 if containerId == "" {
1829 log.Printf("usage: %s [options] UUID", prog)
1833 log.Printf("crunch-run %s started", cmd.Version.String())
1836 if *caCertsPath != "" {
1837 arvadosclient.CertFiles = []string{*caCertsPath}
1840 api, err := arvadosclient.MakeArvadosClient()
1842 log.Printf("%s: %v", containerId, err)
1847 kc, kcerr := keepclient.MakeKeepClient(api)
1849 log.Printf("%s: %v", containerId, kcerr)
1852 kc.BlockCache = &keepclient.BlockCache{MaxBlocks: 2}
1855 // API version 1.21 corresponds to Docker 1.9, which is currently the
1856 // minimum version we want to support.
1857 docker, dockererr := dockerclient.NewClient(dockerclient.DefaultDockerHost, "1.21", nil, nil)
1859 cr, err := NewContainerRunner(arvados.NewClientFromEnv(), api, kc, docker, containerId)
1864 if dockererr != nil {
1865 cr.CrunchLog.Printf("%s: %v", containerId, dockererr)
1866 cr.checkBrokenNode(dockererr)
1867 cr.CrunchLog.Close()
1871 parentTemp, tmperr := cr.MkTempDir("", "crunch-run."+containerId+".")
1873 log.Printf("%s: %v", containerId, tmperr)
1877 cr.parentTemp = parentTemp
1878 cr.statInterval = *statInterval
1879 cr.cgroupRoot = *cgroupRoot
1880 cr.expectCgroupParent = *cgroupParent
1881 cr.enableNetwork = *enableNetwork
1882 cr.networkMode = *networkMode
1883 if *cgroupParentSubsystem != "" {
1884 p := findCgroup(*cgroupParentSubsystem)
1885 cr.setCgroupParent = p
1886 cr.expectCgroupParent = p
1891 if *memprofile != "" {
1892 f, err := os.Create(*memprofile)
1894 log.Printf("could not create memory profile: %s", err)
1896 runtime.GC() // get up-to-date statistics
1897 if err := pprof.WriteHeapProfile(f); err != nil {
1898 log.Printf("could not write memory profile: %s", err)
1900 closeerr := f.Close()
1901 if closeerr != nil {
1902 log.Printf("closing memprofile file: %s", err)
1907 log.Printf("%s: %v", containerId, runerr)
1913 func loadEnv(rdr io.Reader) error {
1914 buf, err := ioutil.ReadAll(rdr)
1916 return fmt.Errorf("read stdin: %s", err)
1918 var env map[string]string
1919 err = json.Unmarshal(buf, &env)
1921 return fmt.Errorf("decode stdin: %s", err)
1923 for k, v := range env {
1924 err = os.Setenv(k, v)
1926 return fmt.Errorf("setenv(%q): %s", k, err)