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 "golang.org/x/net/context"
37 dockertypes "github.com/docker/docker/api/types"
38 dockercontainer "github.com/docker/docker/api/types/container"
39 dockernetwork "github.com/docker/docker/api/types/network"
40 dockerclient "github.com/docker/docker/client"
45 // IArvadosClient is the minimal Arvados API methods used by crunch-run.
46 type IArvadosClient interface {
47 Create(resourceType string, parameters arvadosclient.Dict, output interface{}) error
48 Get(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error
49 Update(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error
50 Call(method, resourceType, uuid, action string, parameters arvadosclient.Dict, output interface{}) error
51 CallRaw(method string, resourceType string, uuid string, action string, parameters arvadosclient.Dict) (reader io.ReadCloser, err error)
52 Discovery(key string) (interface{}, error)
55 // ErrCancelled is the error returned when the container is cancelled.
56 var ErrCancelled = errors.New("Cancelled")
58 // IKeepClient is the minimal Keep API methods used by crunch-run.
59 type IKeepClient interface {
60 PutB(buf []byte) (string, int, error)
61 ReadAt(locator string, p []byte, off int) (int, error)
62 ManifestFileReader(m manifest.Manifest, filename string) (arvados.File, error)
66 // NewLogWriter is a factory function to create a new log writer.
67 type NewLogWriter func(name string) (io.WriteCloser, error)
69 type RunArvMount func(args []string, tok string) (*exec.Cmd, error)
71 type MkTempDir func(string, string) (string, error)
73 // ThinDockerClient is the minimal Docker client interface used by crunch-run.
74 type ThinDockerClient interface {
75 ContainerAttach(ctx context.Context, container string, options dockertypes.ContainerAttachOptions) (dockertypes.HijackedResponse, error)
76 ContainerCreate(ctx context.Context, config *dockercontainer.Config, hostConfig *dockercontainer.HostConfig,
77 networkingConfig *dockernetwork.NetworkingConfig, containerName string) (dockercontainer.ContainerCreateCreatedBody, error)
78 ContainerStart(ctx context.Context, container string, options dockertypes.ContainerStartOptions) error
79 ContainerRemove(ctx context.Context, container string, options dockertypes.ContainerRemoveOptions) error
80 ContainerWait(ctx context.Context, container string, condition dockercontainer.WaitCondition) (<-chan dockercontainer.ContainerWaitOKBody, <-chan error)
81 ImageInspectWithRaw(ctx context.Context, image string) (dockertypes.ImageInspect, []byte, error)
82 ImageLoad(ctx context.Context, input io.Reader, quiet bool) (dockertypes.ImageLoadResponse, error)
83 ImageRemove(ctx context.Context, image string, options dockertypes.ImageRemoveOptions) ([]dockertypes.ImageDeleteResponseItem, error)
86 // ContainerRunner is the main stateful struct used for a single execution of a
88 type ContainerRunner struct {
89 Docker ThinDockerClient
90 client *arvados.Client
91 ArvClient IArvadosClient
94 ContainerConfig dockercontainer.Config
95 dockercontainer.HostConfig
100 loggingDone chan bool
101 CrunchLog *ThrottledLogger
102 Stdout io.WriteCloser
103 Stderr io.WriteCloser
104 LogCollection arvados.CollectionFileSystem
112 Volumes map[string]struct{}
114 SigChan chan os.Signal
115 ArvMountExit chan error
116 SecretMounts map[string]arvados.Mount
117 MkArvClient func(token string) (IArvadosClient, error)
121 statLogger io.WriteCloser
122 statReporter *crunchstat.Reporter
123 hoststatLogger io.WriteCloser
124 hoststatReporter *crunchstat.Reporter
125 statInterval time.Duration
127 // What we expect the container's cgroup parent to be.
128 expectCgroupParent string
129 // What we tell docker to use as the container's cgroup
130 // parent. Note: Ideally we would use the same field for both
131 // expectCgroupParent and setCgroupParent, and just make it
132 // default to "docker". However, when using docker < 1.10 with
133 // systemd, specifying a non-empty cgroup parent (even the
134 // default value "docker") hits a docker bug
135 // (https://github.com/docker/docker/issues/17126). Using two
136 // separate fields makes it possible to use the "expect cgroup
137 // parent to be X" feature even on sites where the "specify
138 // cgroup parent" feature breaks.
139 setCgroupParent string
141 cStateLock sync.Mutex
142 cCancelled bool // StopContainer() invoked
144 enableNetwork string // one of "default" or "always"
145 networkMode string // passed through to HostConfig.NetworkMode
146 arvMountLog *ThrottledLogger
149 // setupSignals sets up signal handling to gracefully terminate the underlying
150 // Docker container and update state when receiving a TERM, INT or QUIT signal.
151 func (runner *ContainerRunner) setupSignals() {
152 runner.SigChan = make(chan os.Signal, 1)
153 signal.Notify(runner.SigChan, syscall.SIGTERM)
154 signal.Notify(runner.SigChan, syscall.SIGINT)
155 signal.Notify(runner.SigChan, syscall.SIGQUIT)
157 go func(sig chan os.Signal) {
164 // stop the underlying Docker container.
165 func (runner *ContainerRunner) stop(sig os.Signal) {
166 runner.cStateLock.Lock()
167 defer runner.cStateLock.Unlock()
169 runner.CrunchLog.Printf("caught signal: %v", sig)
171 if runner.ContainerID == "" {
174 runner.cCancelled = true
175 runner.CrunchLog.Printf("removing container")
176 err := runner.Docker.ContainerRemove(context.TODO(), runner.ContainerID, dockertypes.ContainerRemoveOptions{Force: true})
178 runner.CrunchLog.Printf("error removing container: %s", err)
182 var errorBlacklist = []string{
183 "(?ms).*[Cc]annot connect to the Docker daemon.*",
184 "(?ms).*oci runtime error.*starting container process.*container init.*mounting.*to rootfs.*no such file or directory.*",
186 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)")
188 func (runner *ContainerRunner) checkBrokenNode(goterr error) bool {
189 for _, d := range errorBlacklist {
190 if m, e := regexp.MatchString(d, goterr.Error()); m && e == nil {
191 runner.CrunchLog.Printf("Error suggests node is unable to run containers: %v", goterr)
192 if *brokenNodeHook == "" {
193 runner.CrunchLog.Printf("No broken node hook provided, cannot mark node as broken.")
195 runner.CrunchLog.Printf("Running broken node hook %q", *brokenNodeHook)
197 c := exec.Command(*brokenNodeHook)
198 c.Stdout = runner.CrunchLog
199 c.Stderr = runner.CrunchLog
202 runner.CrunchLog.Printf("Error running broken node hook: %v", err)
211 // LoadImage determines the docker image id from the container record and
212 // checks if it is available in the local Docker image store. If not, it loads
213 // the image from Keep.
214 func (runner *ContainerRunner) LoadImage() (err error) {
216 runner.CrunchLog.Printf("Fetching Docker image from collection '%s'", runner.Container.ContainerImage)
218 var collection arvados.Collection
219 err = runner.ArvClient.Get("collections", runner.Container.ContainerImage, nil, &collection)
221 return fmt.Errorf("While getting container image collection: %v", err)
223 manifest := manifest.Manifest{Text: collection.ManifestText}
224 var img, imageID string
225 for ms := range manifest.StreamIter() {
226 img = ms.FileStreamSegments[0].Name
227 if !strings.HasSuffix(img, ".tar") {
228 return fmt.Errorf("First file in the container image collection does not end in .tar")
230 imageID = img[:len(img)-4]
233 runner.CrunchLog.Printf("Using Docker image id '%s'", imageID)
235 _, _, err = runner.Docker.ImageInspectWithRaw(context.TODO(), imageID)
237 runner.CrunchLog.Print("Loading Docker image from keep")
239 var readCloser io.ReadCloser
240 readCloser, err = runner.Kc.ManifestFileReader(manifest, img)
242 return fmt.Errorf("While creating ManifestFileReader for container image: %v", err)
245 response, err := runner.Docker.ImageLoad(context.TODO(), readCloser, true)
247 return fmt.Errorf("While loading container image into Docker: %v", err)
250 defer response.Body.Close()
251 rbody, err := ioutil.ReadAll(response.Body)
253 return fmt.Errorf("Reading response to image load: %v", err)
255 runner.CrunchLog.Printf("Docker response: %s", rbody)
257 runner.CrunchLog.Print("Docker image is available")
260 runner.ContainerConfig.Image = imageID
262 runner.Kc.ClearBlockCache()
267 func (runner *ContainerRunner) ArvMountCmd(arvMountCmd []string, token string) (c *exec.Cmd, err error) {
268 c = exec.Command("arv-mount", arvMountCmd...)
270 // Copy our environment, but override ARVADOS_API_TOKEN with
271 // the container auth token.
273 for _, s := range os.Environ() {
274 if !strings.HasPrefix(s, "ARVADOS_API_TOKEN=") {
275 c.Env = append(c.Env, s)
278 c.Env = append(c.Env, "ARVADOS_API_TOKEN="+token)
280 w, err := runner.NewLogWriter("arv-mount")
284 runner.arvMountLog = NewThrottledLogger(w)
285 c.Stdout = runner.arvMountLog
286 c.Stderr = runner.arvMountLog
288 runner.CrunchLog.Printf("Running %v", c.Args)
295 statReadme := make(chan bool)
296 runner.ArvMountExit = make(chan error)
301 time.Sleep(100 * time.Millisecond)
302 _, err = os.Stat(fmt.Sprintf("%s/by_id/README", runner.ArvMountPoint))
314 runner.CrunchLog.Printf("Arv-mount exit error: %v", mnterr)
316 runner.ArvMountExit <- mnterr
317 close(runner.ArvMountExit)
323 case err := <-runner.ArvMountExit:
324 runner.ArvMount = nil
332 func (runner *ContainerRunner) SetupArvMountPoint(prefix string) (err error) {
333 if runner.ArvMountPoint == "" {
334 runner.ArvMountPoint, err = runner.MkTempDir(runner.parentTemp, prefix)
339 func copyfile(src string, dst string) (err error) {
340 srcfile, err := os.Open(src)
345 os.MkdirAll(path.Dir(dst), 0777)
347 dstfile, err := os.Create(dst)
351 _, err = io.Copy(dstfile, srcfile)
356 err = srcfile.Close()
357 err2 := dstfile.Close()
370 func (runner *ContainerRunner) SetupMounts() (err error) {
371 err = runner.SetupArvMountPoint("keep")
373 return fmt.Errorf("While creating keep mount temp dir: %v", err)
376 token, err := runner.ContainerToken()
378 return fmt.Errorf("could not get container token: %s", err)
383 arvMountCmd := []string{
387 fmt.Sprintf("--crunchstat-interval=%v", runner.statInterval.Seconds())}
389 if runner.Container.RuntimeConstraints.KeepCacheRAM > 0 {
390 arvMountCmd = append(arvMountCmd, "--file-cache", fmt.Sprintf("%d", runner.Container.RuntimeConstraints.KeepCacheRAM))
393 collectionPaths := []string{}
395 runner.Volumes = make(map[string]struct{})
396 needCertMount := true
397 type copyFile struct {
401 var copyFiles []copyFile
404 for bind := range runner.Container.Mounts {
405 binds = append(binds, bind)
407 for bind := range runner.SecretMounts {
408 if _, ok := runner.Container.Mounts[bind]; ok {
409 return fmt.Errorf("Secret mount %q conflicts with regular mount", bind)
411 if runner.SecretMounts[bind].Kind != "json" &&
412 runner.SecretMounts[bind].Kind != "text" {
413 return fmt.Errorf("Secret mount %q type is %q but only 'json' and 'text' are permitted.",
414 bind, runner.SecretMounts[bind].Kind)
416 binds = append(binds, bind)
420 for _, bind := range binds {
421 mnt, ok := runner.Container.Mounts[bind]
423 mnt = runner.SecretMounts[bind]
425 if bind == "stdout" || bind == "stderr" {
426 // Is it a "file" mount kind?
427 if mnt.Kind != "file" {
428 return fmt.Errorf("Unsupported mount kind '%s' for %s. Only 'file' is supported.", mnt.Kind, bind)
431 // Does path start with OutputPath?
432 prefix := runner.Container.OutputPath
433 if !strings.HasSuffix(prefix, "/") {
436 if !strings.HasPrefix(mnt.Path, prefix) {
437 return fmt.Errorf("%s path does not start with OutputPath: %s, %s", strings.Title(bind), mnt.Path, prefix)
442 // Is it a "collection" mount kind?
443 if mnt.Kind != "collection" && mnt.Kind != "json" {
444 return fmt.Errorf("Unsupported mount kind '%s' for stdin. Only 'collection' or 'json' are supported.", mnt.Kind)
448 if bind == "/etc/arvados/ca-certificates.crt" {
449 needCertMount = false
452 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") && bind != runner.Container.OutputPath+"/" {
453 if mnt.Kind != "collection" && mnt.Kind != "text" && mnt.Kind != "json" {
454 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)
459 case mnt.Kind == "collection" && bind != "stdin":
461 if mnt.UUID != "" && mnt.PortableDataHash != "" {
462 return fmt.Errorf("Cannot specify both 'uuid' and 'portable_data_hash' for a collection mount")
466 return fmt.Errorf("Writing to existing collections currently not permitted.")
469 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.UUID)
470 } else if mnt.PortableDataHash != "" {
471 if mnt.Writable && !strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
472 return fmt.Errorf("Can never write to a collection specified by portable data hash")
474 idx := strings.Index(mnt.PortableDataHash, "/")
476 mnt.Path = path.Clean(mnt.PortableDataHash[idx:])
477 mnt.PortableDataHash = mnt.PortableDataHash[0:idx]
478 runner.Container.Mounts[bind] = mnt
480 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.PortableDataHash)
481 if mnt.Path != "" && mnt.Path != "." {
482 if strings.HasPrefix(mnt.Path, "./") {
483 mnt.Path = mnt.Path[2:]
484 } else if strings.HasPrefix(mnt.Path, "/") {
485 mnt.Path = mnt.Path[1:]
487 src += "/" + mnt.Path
490 src = fmt.Sprintf("%s/tmp%d", runner.ArvMountPoint, tmpcount)
491 arvMountCmd = append(arvMountCmd, "--mount-tmp")
492 arvMountCmd = append(arvMountCmd, fmt.Sprintf("tmp%d", tmpcount))
496 if bind == runner.Container.OutputPath {
497 runner.HostOutputDir = src
498 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", src, bind))
499 } else if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
500 copyFiles = append(copyFiles, copyFile{src, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
502 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", src, bind))
505 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s:ro", src, bind))
507 collectionPaths = append(collectionPaths, src)
509 case mnt.Kind == "tmp":
511 tmpdir, err = runner.MkTempDir(runner.parentTemp, "tmp")
513 return fmt.Errorf("While creating mount temp dir: %v", err)
515 st, staterr := os.Stat(tmpdir)
517 return fmt.Errorf("While Stat on temp dir: %v", staterr)
519 err = os.Chmod(tmpdir, st.Mode()|os.ModeSetgid|0777)
521 return fmt.Errorf("While Chmod temp dir: %v", err)
523 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", tmpdir, bind))
524 if bind == runner.Container.OutputPath {
525 runner.HostOutputDir = tmpdir
528 case mnt.Kind == "json" || mnt.Kind == "text":
530 if mnt.Kind == "json" {
531 filedata, err = json.Marshal(mnt.Content)
533 return fmt.Errorf("encoding json data: %v", err)
536 text, ok := mnt.Content.(string)
538 return fmt.Errorf("content for mount %q must be a string", bind)
540 filedata = []byte(text)
543 tmpdir, err := runner.MkTempDir(runner.parentTemp, mnt.Kind)
545 return fmt.Errorf("creating temp dir: %v", err)
547 tmpfn := filepath.Join(tmpdir, "mountdata."+mnt.Kind)
548 err = ioutil.WriteFile(tmpfn, filedata, 0444)
550 return fmt.Errorf("writing temp file: %v", err)
552 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
553 copyFiles = append(copyFiles, copyFile{tmpfn, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
555 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s:ro", tmpfn, bind))
558 case mnt.Kind == "git_tree":
559 tmpdir, err := runner.MkTempDir(runner.parentTemp, "git_tree")
561 return fmt.Errorf("creating temp dir: %v", err)
563 err = gitMount(mnt).extractTree(runner.ArvClient, tmpdir, token)
567 runner.Binds = append(runner.Binds, tmpdir+":"+bind+":ro")
571 if runner.HostOutputDir == "" {
572 return fmt.Errorf("Output path does not correspond to a writable mount point")
575 if wantAPI := runner.Container.RuntimeConstraints.API; needCertMount && wantAPI != nil && *wantAPI {
576 for _, certfile := range arvadosclient.CertFiles {
577 _, err := os.Stat(certfile)
579 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:/etc/arvados/ca-certificates.crt:ro", certfile))
586 arvMountCmd = append(arvMountCmd, "--mount-by-pdh", "by_id")
588 arvMountCmd = append(arvMountCmd, "--mount-by-id", "by_id")
590 arvMountCmd = append(arvMountCmd, runner.ArvMountPoint)
592 runner.ArvMount, err = runner.RunArvMount(arvMountCmd, token)
594 return fmt.Errorf("While trying to start arv-mount: %v", err)
597 for _, p := range collectionPaths {
600 return fmt.Errorf("While checking that input files exist: %v", err)
604 for _, cp := range copyFiles {
605 st, err := os.Stat(cp.src)
607 return fmt.Errorf("While staging writable file from %q to %q: %v", cp.src, cp.bind, err)
610 err = filepath.Walk(cp.src, func(walkpath string, walkinfo os.FileInfo, walkerr error) error {
614 target := path.Join(cp.bind, walkpath[len(cp.src):])
615 if walkinfo.Mode().IsRegular() {
616 copyerr := copyfile(walkpath, target)
620 return os.Chmod(target, walkinfo.Mode()|0777)
621 } else if walkinfo.Mode().IsDir() {
622 mkerr := os.MkdirAll(target, 0777)
626 return os.Chmod(target, walkinfo.Mode()|os.ModeSetgid|0777)
628 return fmt.Errorf("Source %q is not a regular file or directory", cp.src)
631 } else if st.Mode().IsRegular() {
632 err = copyfile(cp.src, cp.bind)
634 err = os.Chmod(cp.bind, st.Mode()|0777)
638 return fmt.Errorf("While staging writable file from %q to %q: %v", cp.src, cp.bind, err)
645 func (runner *ContainerRunner) ProcessDockerAttach(containerReader io.Reader) {
646 // Handle docker log protocol
647 // https://docs.docker.com/engine/reference/api/docker_remote_api_v1.15/#attach-to-a-container
648 defer close(runner.loggingDone)
650 header := make([]byte, 8)
653 _, err = io.ReadAtLeast(containerReader, header, 8)
660 readsize := int64(header[7]) | (int64(header[6]) << 8) | (int64(header[5]) << 16) | (int64(header[4]) << 24)
663 _, err = io.CopyN(runner.Stdout, containerReader, readsize)
666 _, err = io.CopyN(runner.Stderr, containerReader, readsize)
671 runner.CrunchLog.Printf("error reading docker logs: %v", err)
674 err = runner.Stdout.Close()
676 runner.CrunchLog.Printf("error closing stdout logs: %v", err)
679 err = runner.Stderr.Close()
681 runner.CrunchLog.Printf("error closing stderr logs: %v", err)
684 if runner.statReporter != nil {
685 runner.statReporter.Stop()
686 err = runner.statLogger.Close()
688 runner.CrunchLog.Printf("error closing crunchstat logs: %v", err)
693 func (runner *ContainerRunner) stopHoststat() error {
694 if runner.hoststatReporter == nil {
697 runner.hoststatReporter.Stop()
698 err := runner.hoststatLogger.Close()
700 return fmt.Errorf("error closing hoststat logs: %v", err)
705 func (runner *ContainerRunner) startHoststat() error {
706 w, err := runner.NewLogWriter("hoststat")
710 runner.hoststatLogger = NewThrottledLogger(w)
711 runner.hoststatReporter = &crunchstat.Reporter{
712 Logger: log.New(runner.hoststatLogger, "", 0),
713 CgroupRoot: runner.cgroupRoot,
714 PollPeriod: runner.statInterval,
716 runner.hoststatReporter.Start()
720 func (runner *ContainerRunner) startCrunchstat() error {
721 w, err := runner.NewLogWriter("crunchstat")
725 runner.statLogger = NewThrottledLogger(w)
726 runner.statReporter = &crunchstat.Reporter{
727 CID: runner.ContainerID,
728 Logger: log.New(runner.statLogger, "", 0),
729 CgroupParent: runner.expectCgroupParent,
730 CgroupRoot: runner.cgroupRoot,
731 PollPeriod: runner.statInterval,
733 runner.statReporter.Start()
737 type infoCommand struct {
742 // LogHostInfo logs info about the current host, for debugging and
743 // accounting purposes. Although it's logged as "node-info", this is
744 // about the environment where crunch-run is actually running, which
745 // might differ from what's described in the node record (see
747 func (runner *ContainerRunner) LogHostInfo() (err error) {
748 w, err := runner.NewLogWriter("node-info")
753 commands := []infoCommand{
755 label: "Host Information",
756 cmd: []string{"uname", "-a"},
759 label: "CPU Information",
760 cmd: []string{"cat", "/proc/cpuinfo"},
763 label: "Memory Information",
764 cmd: []string{"cat", "/proc/meminfo"},
768 cmd: []string{"df", "-m", "/", os.TempDir()},
771 label: "Disk INodes",
772 cmd: []string{"df", "-i", "/", os.TempDir()},
776 // Run commands with informational output to be logged.
777 for _, command := range commands {
778 fmt.Fprintln(w, command.label)
779 cmd := exec.Command(command.cmd[0], command.cmd[1:]...)
782 if err := cmd.Run(); err != nil {
783 err = fmt.Errorf("While running command %q: %v", command.cmd, err)
792 return fmt.Errorf("While closing node-info logs: %v", err)
797 // LogContainerRecord gets and saves the raw JSON container record from the API server
798 func (runner *ContainerRunner) LogContainerRecord() error {
799 logged, err := runner.logAPIResponse("container", "containers", map[string]interface{}{"filters": [][]string{{"uuid", "=", runner.Container.UUID}}}, nil)
800 if !logged && err == nil {
801 err = fmt.Errorf("error: no container record found for %s", runner.Container.UUID)
806 // LogNodeRecord logs arvados#node record corresponding to the current host.
807 func (runner *ContainerRunner) LogNodeRecord() error {
808 hostname := os.Getenv("SLURMD_NODENAME")
810 hostname, _ = os.Hostname()
812 _, err := runner.logAPIResponse("node", "nodes", map[string]interface{}{"filters": [][]string{{"hostname", "=", hostname}}}, func(resp interface{}) {
813 // The "info" field has admin-only info when obtained
814 // with a privileged token, and should not be logged.
815 node, ok := resp.(map[string]interface{})
823 func (runner *ContainerRunner) logAPIResponse(label, path string, params map[string]interface{}, munge func(interface{})) (logged bool, err error) {
824 writer, err := runner.LogCollection.OpenFile(label+".json", os.O_CREATE|os.O_WRONLY, 0666)
829 ArvClient: runner.ArvClient,
830 UUID: runner.Container.UUID,
831 loggingStream: label,
835 reader, err := runner.ArvClient.CallRaw("GET", path, "", "", arvadosclient.Dict(params))
837 return false, fmt.Errorf("error getting %s record: %v", label, err)
841 dec := json.NewDecoder(reader)
843 var resp map[string]interface{}
844 if err = dec.Decode(&resp); err != nil {
845 return false, fmt.Errorf("error decoding %s list response: %v", label, err)
847 items, ok := resp["items"].([]interface{})
849 return false, fmt.Errorf("error decoding %s list response: no \"items\" key in API list response", label)
850 } else if len(items) < 1 {
856 // Re-encode it using indentation to improve readability
857 enc := json.NewEncoder(w)
858 enc.SetIndent("", " ")
859 if err = enc.Encode(items[0]); err != nil {
860 return false, fmt.Errorf("error logging %s record: %v", label, err)
864 return false, fmt.Errorf("error closing %s.json in log collection: %v", label, err)
869 // AttachStreams connects the docker container stdin, stdout and stderr logs
870 // to the Arvados logger which logs to Keep and the API server logs table.
871 func (runner *ContainerRunner) AttachStreams() (err error) {
873 runner.CrunchLog.Print("Attaching container streams")
875 // If stdin mount is provided, attach it to the docker container
876 var stdinRdr arvados.File
878 if stdinMnt, ok := runner.Container.Mounts["stdin"]; ok {
879 if stdinMnt.Kind == "collection" {
880 var stdinColl arvados.Collection
881 collId := stdinMnt.UUID
883 collId = stdinMnt.PortableDataHash
885 err = runner.ArvClient.Get("collections", collId, nil, &stdinColl)
887 return fmt.Errorf("While getting stding collection: %v", err)
890 stdinRdr, err = runner.Kc.ManifestFileReader(manifest.Manifest{Text: stdinColl.ManifestText}, stdinMnt.Path)
891 if os.IsNotExist(err) {
892 return fmt.Errorf("stdin collection path not found: %v", stdinMnt.Path)
893 } else if err != nil {
894 return fmt.Errorf("While getting stdin collection path %v: %v", stdinMnt.Path, err)
896 } else if stdinMnt.Kind == "json" {
897 stdinJson, err = json.Marshal(stdinMnt.Content)
899 return fmt.Errorf("While encoding stdin json data: %v", err)
904 stdinUsed := stdinRdr != nil || len(stdinJson) != 0
905 response, err := runner.Docker.ContainerAttach(context.TODO(), runner.ContainerID,
906 dockertypes.ContainerAttachOptions{Stream: true, Stdin: stdinUsed, Stdout: true, Stderr: true})
908 return fmt.Errorf("While attaching container stdout/stderr streams: %v", err)
911 runner.loggingDone = make(chan bool)
913 if stdoutMnt, ok := runner.Container.Mounts["stdout"]; ok {
914 stdoutFile, err := runner.getStdoutFile(stdoutMnt.Path)
918 runner.Stdout = stdoutFile
919 } else if w, err := runner.NewLogWriter("stdout"); err != nil {
922 runner.Stdout = NewThrottledLogger(w)
925 if stderrMnt, ok := runner.Container.Mounts["stderr"]; ok {
926 stderrFile, err := runner.getStdoutFile(stderrMnt.Path)
930 runner.Stderr = stderrFile
931 } else if w, err := runner.NewLogWriter("stderr"); err != nil {
934 runner.Stderr = NewThrottledLogger(w)
939 _, err := io.Copy(response.Conn, stdinRdr)
941 runner.CrunchLog.Print("While writing stdin collection to docker container %q", err)
945 response.CloseWrite()
947 } else if len(stdinJson) != 0 {
949 _, err := io.Copy(response.Conn, bytes.NewReader(stdinJson))
951 runner.CrunchLog.Print("While writing stdin json to docker container %q", err)
954 response.CloseWrite()
958 go runner.ProcessDockerAttach(response.Reader)
963 func (runner *ContainerRunner) getStdoutFile(mntPath string) (*os.File, error) {
964 stdoutPath := mntPath[len(runner.Container.OutputPath):]
965 index := strings.LastIndex(stdoutPath, "/")
967 subdirs := stdoutPath[:index]
969 st, err := os.Stat(runner.HostOutputDir)
971 return nil, fmt.Errorf("While Stat on temp dir: %v", err)
973 stdoutPath := filepath.Join(runner.HostOutputDir, subdirs)
974 err = os.MkdirAll(stdoutPath, st.Mode()|os.ModeSetgid|0777)
976 return nil, fmt.Errorf("While MkdirAll %q: %v", stdoutPath, err)
980 stdoutFile, err := os.Create(filepath.Join(runner.HostOutputDir, stdoutPath))
982 return nil, fmt.Errorf("While creating file %q: %v", stdoutPath, err)
985 return stdoutFile, nil
988 // CreateContainer creates the docker container.
989 func (runner *ContainerRunner) CreateContainer() error {
990 runner.CrunchLog.Print("Creating Docker container")
992 runner.ContainerConfig.Cmd = runner.Container.Command
993 if runner.Container.Cwd != "." {
994 runner.ContainerConfig.WorkingDir = runner.Container.Cwd
997 for k, v := range runner.Container.Environment {
998 runner.ContainerConfig.Env = append(runner.ContainerConfig.Env, k+"="+v)
1001 runner.ContainerConfig.Volumes = runner.Volumes
1003 maxRAM := int64(runner.Container.RuntimeConstraints.RAM)
1004 runner.HostConfig = dockercontainer.HostConfig{
1005 Binds: runner.Binds,
1006 LogConfig: dockercontainer.LogConfig{
1009 Resources: dockercontainer.Resources{
1010 CgroupParent: runner.setCgroupParent,
1011 NanoCPUs: int64(runner.Container.RuntimeConstraints.VCPUs) * 1000000000,
1012 Memory: maxRAM, // RAM
1013 MemorySwap: maxRAM, // RAM+swap
1014 KernelMemory: maxRAM, // kernel portion
1018 if wantAPI := runner.Container.RuntimeConstraints.API; wantAPI != nil && *wantAPI {
1019 tok, err := runner.ContainerToken()
1023 runner.ContainerConfig.Env = append(runner.ContainerConfig.Env,
1024 "ARVADOS_API_TOKEN="+tok,
1025 "ARVADOS_API_HOST="+os.Getenv("ARVADOS_API_HOST"),
1026 "ARVADOS_API_HOST_INSECURE="+os.Getenv("ARVADOS_API_HOST_INSECURE"),
1028 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode(runner.networkMode)
1030 if runner.enableNetwork == "always" {
1031 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode(runner.networkMode)
1033 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode("none")
1037 _, stdinUsed := runner.Container.Mounts["stdin"]
1038 runner.ContainerConfig.OpenStdin = stdinUsed
1039 runner.ContainerConfig.StdinOnce = stdinUsed
1040 runner.ContainerConfig.AttachStdin = stdinUsed
1041 runner.ContainerConfig.AttachStdout = true
1042 runner.ContainerConfig.AttachStderr = true
1044 createdBody, err := runner.Docker.ContainerCreate(context.TODO(), &runner.ContainerConfig, &runner.HostConfig, nil, runner.Container.UUID)
1046 return fmt.Errorf("While creating container: %v", err)
1049 runner.ContainerID = createdBody.ID
1051 return runner.AttachStreams()
1054 // StartContainer starts the docker container created by CreateContainer.
1055 func (runner *ContainerRunner) StartContainer() error {
1056 runner.CrunchLog.Printf("Starting Docker container id '%s'", runner.ContainerID)
1057 runner.cStateLock.Lock()
1058 defer runner.cStateLock.Unlock()
1059 if runner.cCancelled {
1062 err := runner.Docker.ContainerStart(context.TODO(), runner.ContainerID,
1063 dockertypes.ContainerStartOptions{})
1066 if m, e := regexp.MatchString("(?ms).*(exec|System error).*(no such file or directory|file not found).*", err.Error()); m && e == nil {
1067 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])
1069 return fmt.Errorf("could not start container: %v%s", err, advice)
1074 // WaitFinish waits for the container to terminate, capture the exit code, and
1075 // close the stdout/stderr logging.
1076 func (runner *ContainerRunner) WaitFinish() error {
1077 runner.CrunchLog.Print("Waiting for container to finish")
1079 waitOk, waitErr := runner.Docker.ContainerWait(context.TODO(), runner.ContainerID, dockercontainer.WaitConditionNotRunning)
1080 arvMountExit := runner.ArvMountExit
1083 case waitBody := <-waitOk:
1084 runner.CrunchLog.Printf("Container exited with code: %v", waitBody.StatusCode)
1085 code := int(waitBody.StatusCode)
1086 runner.ExitCode = &code
1088 // wait for stdout/stderr to complete
1089 <-runner.loggingDone
1092 case err := <-waitErr:
1093 return fmt.Errorf("container wait: %v", err)
1095 case <-arvMountExit:
1096 runner.CrunchLog.Printf("arv-mount exited while container is still running. Stopping container.")
1098 // arvMountExit will always be ready now that
1099 // it's closed, but that doesn't interest us.
1105 // CaptureOutput saves data from the container's output directory if
1106 // needed, and updates the container output accordingly.
1107 func (runner *ContainerRunner) CaptureOutput() error {
1108 if wantAPI := runner.Container.RuntimeConstraints.API; wantAPI != nil && *wantAPI {
1109 // Output may have been set directly by the container, so
1110 // refresh the container record to check.
1111 err := runner.ArvClient.Get("containers", runner.Container.UUID,
1112 nil, &runner.Container)
1116 if runner.Container.Output != "" {
1117 // Container output is already set.
1118 runner.OutputPDH = &runner.Container.Output
1123 txt, err := (&copier{
1124 client: runner.client,
1125 arvClient: runner.ArvClient,
1126 keepClient: runner.Kc,
1127 hostOutputDir: runner.HostOutputDir,
1128 ctrOutputDir: runner.Container.OutputPath,
1129 binds: runner.Binds,
1130 mounts: runner.Container.Mounts,
1131 secretMounts: runner.SecretMounts,
1132 logger: runner.CrunchLog,
1137 var resp arvados.Collection
1138 err = runner.ArvClient.Create("collections", arvadosclient.Dict{
1139 "ensure_unique_name": true,
1140 "collection": arvadosclient.Dict{
1142 "name": "output for " + runner.Container.UUID,
1143 "manifest_text": txt,
1147 return fmt.Errorf("error creating output collection: %v", err)
1149 runner.OutputPDH = &resp.PortableDataHash
1153 func (runner *ContainerRunner) CleanupDirs() {
1154 if runner.ArvMount != nil {
1156 umount := exec.Command("arv-mount", fmt.Sprintf("--unmount-timeout=%d", delay), "--unmount", runner.ArvMountPoint)
1157 umount.Stdout = runner.CrunchLog
1158 umount.Stderr = runner.CrunchLog
1159 runner.CrunchLog.Printf("Running %v", umount.Args)
1160 umnterr := umount.Start()
1163 runner.CrunchLog.Printf("Error unmounting: %v", umnterr)
1165 // If arv-mount --unmount gets stuck for any reason, we
1166 // don't want to wait for it forever. Do Wait() in a goroutine
1167 // so it doesn't block crunch-run.
1168 umountExit := make(chan error)
1170 mnterr := umount.Wait()
1172 runner.CrunchLog.Printf("Error unmounting: %v", mnterr)
1174 umountExit <- mnterr
1177 for again := true; again; {
1183 case <-runner.ArvMountExit:
1185 case <-time.After(time.Duration((delay + 1) * int64(time.Second))):
1186 runner.CrunchLog.Printf("Timed out waiting for unmount")
1188 umount.Process.Kill()
1190 runner.ArvMount.Process.Kill()
1196 if runner.ArvMountPoint != "" {
1197 if rmerr := os.Remove(runner.ArvMountPoint); rmerr != nil {
1198 runner.CrunchLog.Printf("While cleaning up arv-mount directory %s: %v", runner.ArvMountPoint, rmerr)
1202 if rmerr := os.RemoveAll(runner.parentTemp); rmerr != nil {
1203 runner.CrunchLog.Printf("While cleaning up temporary directory %s: %v", runner.parentTemp, rmerr)
1207 // CommitLogs posts the collection containing the final container logs.
1208 func (runner *ContainerRunner) CommitLogs() error {
1210 // Hold cStateLock to prevent races on CrunchLog (e.g., stop()).
1211 runner.cStateLock.Lock()
1212 defer runner.cStateLock.Unlock()
1214 runner.CrunchLog.Print(runner.finalState)
1216 if runner.arvMountLog != nil {
1217 runner.arvMountLog.Close()
1219 runner.CrunchLog.Close()
1221 // Closing CrunchLog above allows them to be committed to Keep at this
1222 // point, but re-open crunch log with ArvClient in case there are any
1223 // other further errors (such as failing to write the log to Keep!)
1224 // while shutting down
1225 runner.CrunchLog = NewThrottledLogger(&ArvLogWriter{
1226 ArvClient: runner.ArvClient,
1227 UUID: runner.Container.UUID,
1228 loggingStream: "crunch-run",
1231 runner.CrunchLog.Immediate = log.New(os.Stderr, runner.Container.UUID+" ", 0)
1234 if runner.LogsPDH != nil {
1235 // If we have already assigned something to LogsPDH,
1236 // we must be closing the re-opened log, which won't
1237 // end up getting attached to the container record and
1238 // therefore doesn't need to be saved as a collection
1239 // -- it exists only to send logs to other channels.
1243 mt, err := runner.LogCollection.MarshalManifest(".")
1245 return fmt.Errorf("While creating log manifest: %v", err)
1248 var response arvados.Collection
1249 err = runner.ArvClient.Create("collections",
1251 "ensure_unique_name": true,
1252 "collection": arvadosclient.Dict{
1254 "name": "logs for " + runner.Container.UUID,
1255 "manifest_text": mt}},
1258 return fmt.Errorf("While creating log collection: %v", err)
1260 runner.LogsPDH = &response.PortableDataHash
1264 // UpdateContainerRunning updates the container state to "Running"
1265 func (runner *ContainerRunner) UpdateContainerRunning() error {
1266 runner.cStateLock.Lock()
1267 defer runner.cStateLock.Unlock()
1268 if runner.cCancelled {
1271 return runner.ArvClient.Update("containers", runner.Container.UUID,
1272 arvadosclient.Dict{"container": arvadosclient.Dict{"state": "Running"}}, nil)
1275 // ContainerToken returns the api_token the container (and any
1276 // arv-mount processes) are allowed to use.
1277 func (runner *ContainerRunner) ContainerToken() (string, error) {
1278 if runner.token != "" {
1279 return runner.token, nil
1282 var auth arvados.APIClientAuthorization
1283 err := runner.ArvClient.Call("GET", "containers", runner.Container.UUID, "auth", nil, &auth)
1287 runner.token = auth.APIToken
1288 return runner.token, nil
1291 // UpdateContainerComplete updates the container record state on API
1292 // server to "Complete" or "Cancelled"
1293 func (runner *ContainerRunner) UpdateContainerFinal() error {
1294 update := arvadosclient.Dict{}
1295 update["state"] = runner.finalState
1296 if runner.LogsPDH != nil {
1297 update["log"] = *runner.LogsPDH
1299 if runner.finalState == "Complete" {
1300 if runner.ExitCode != nil {
1301 update["exit_code"] = *runner.ExitCode
1303 if runner.OutputPDH != nil {
1304 update["output"] = *runner.OutputPDH
1307 return runner.ArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{"container": update}, nil)
1310 // IsCancelled returns the value of Cancelled, with goroutine safety.
1311 func (runner *ContainerRunner) IsCancelled() bool {
1312 runner.cStateLock.Lock()
1313 defer runner.cStateLock.Unlock()
1314 return runner.cCancelled
1317 // NewArvLogWriter creates an ArvLogWriter
1318 func (runner *ContainerRunner) NewArvLogWriter(name string) (io.WriteCloser, error) {
1319 writer, err := runner.LogCollection.OpenFile(name+".txt", os.O_CREATE|os.O_WRONLY, 0666)
1323 return &ArvLogWriter{
1324 ArvClient: runner.ArvClient,
1325 UUID: runner.Container.UUID,
1326 loggingStream: name,
1327 writeCloser: writer,
1331 // Run the full container lifecycle.
1332 func (runner *ContainerRunner) Run() (err error) {
1333 runner.CrunchLog.Printf("crunch-run %s started", version)
1334 runner.CrunchLog.Printf("Executing container '%s'", runner.Container.UUID)
1336 hostname, hosterr := os.Hostname()
1338 runner.CrunchLog.Printf("Error getting hostname '%v'", hosterr)
1340 runner.CrunchLog.Printf("Executing on host '%s'", hostname)
1343 runner.finalState = "Queued"
1346 runner.CleanupDirs()
1348 runner.CrunchLog.Printf("crunch-run finished")
1349 runner.CrunchLog.Close()
1353 // checkErr prints e (unless it's nil) and sets err to
1354 // e (unless err is already non-nil). Thus, if err
1355 // hasn't already been assigned when Run() returns,
1356 // this cleanup func will cause Run() to return the
1357 // first non-nil error that is passed to checkErr().
1358 checkErr := func(e error) {
1362 runner.CrunchLog.Print(e)
1366 if runner.finalState == "Complete" {
1367 // There was an error in the finalization.
1368 runner.finalState = "Cancelled"
1372 // Log the error encountered in Run(), if any
1375 if runner.finalState == "Queued" {
1376 runner.UpdateContainerFinal()
1380 if runner.IsCancelled() {
1381 runner.finalState = "Cancelled"
1382 // but don't return yet -- we still want to
1383 // capture partial output and write logs
1386 checkErr(runner.CaptureOutput())
1387 checkErr(runner.stopHoststat())
1388 checkErr(runner.CommitLogs())
1389 checkErr(runner.UpdateContainerFinal())
1392 err = runner.fetchContainerRecord()
1396 runner.setupSignals()
1397 err = runner.startHoststat()
1402 // check for and/or load image
1403 err = runner.LoadImage()
1405 if !runner.checkBrokenNode(err) {
1406 // Failed to load image but not due to a "broken node"
1407 // condition, probably user error.
1408 runner.finalState = "Cancelled"
1410 err = fmt.Errorf("While loading container image: %v", err)
1414 // set up FUSE mount and binds
1415 err = runner.SetupMounts()
1417 runner.finalState = "Cancelled"
1418 err = fmt.Errorf("While setting up mounts: %v", err)
1422 err = runner.CreateContainer()
1426 err = runner.LogHostInfo()
1430 err = runner.LogNodeRecord()
1434 err = runner.LogContainerRecord()
1439 if runner.IsCancelled() {
1443 err = runner.UpdateContainerRunning()
1447 runner.finalState = "Cancelled"
1449 err = runner.startCrunchstat()
1454 err = runner.StartContainer()
1456 runner.checkBrokenNode(err)
1460 err = runner.WaitFinish()
1461 if err == nil && !runner.IsCancelled() {
1462 runner.finalState = "Complete"
1467 // Fetch the current container record (uuid = runner.Container.UUID)
1468 // into runner.Container.
1469 func (runner *ContainerRunner) fetchContainerRecord() error {
1470 reader, err := runner.ArvClient.CallRaw("GET", "containers", runner.Container.UUID, "", nil)
1472 return fmt.Errorf("error fetching container record: %v", err)
1474 defer reader.Close()
1476 dec := json.NewDecoder(reader)
1478 err = dec.Decode(&runner.Container)
1480 return fmt.Errorf("error decoding container record: %v", err)
1484 SecretMounts map[string]arvados.Mount `json:"secret_mounts"`
1487 containerToken, err := runner.ContainerToken()
1489 return fmt.Errorf("error getting container token: %v", err)
1492 containerClient, err := runner.MkArvClient(containerToken)
1494 return fmt.Errorf("error creating container API client: %v", err)
1497 err = containerClient.Call("GET", "containers", runner.Container.UUID, "secret_mounts", nil, &sm)
1499 if apierr, ok := err.(arvadosclient.APIServerError); !ok || apierr.HttpStatusCode != 404 {
1500 return fmt.Errorf("error fetching secret_mounts: %v", err)
1502 // ok && apierr.HttpStatusCode == 404, which means
1503 // secret_mounts isn't supported by this API server.
1505 runner.SecretMounts = sm.SecretMounts
1510 // NewContainerRunner creates a new container runner.
1511 func NewContainerRunner(client *arvados.Client, api IArvadosClient, kc IKeepClient, docker ThinDockerClient, containerUUID string) (*ContainerRunner, error) {
1512 cr := &ContainerRunner{
1518 cr.NewLogWriter = cr.NewArvLogWriter
1519 cr.RunArvMount = cr.ArvMountCmd
1520 cr.MkTempDir = ioutil.TempDir
1521 cr.MkArvClient = func(token string) (IArvadosClient, error) {
1522 cl, err := arvadosclient.MakeArvadosClient()
1530 cr.LogCollection, err = (&arvados.Collection{}).FileSystem(cr.client, cr.Kc)
1534 cr.Container.UUID = containerUUID
1535 w, err := cr.NewLogWriter("crunch-run")
1539 cr.CrunchLog = NewThrottledLogger(w)
1540 cr.CrunchLog.Immediate = log.New(os.Stderr, containerUUID+" ", 0)
1542 loadLogThrottleParams(api)
1548 statInterval := flag.Duration("crunchstat-interval", 10*time.Second, "sampling period for periodic resource usage reporting")
1549 cgroupRoot := flag.String("cgroup-root", "/sys/fs/cgroup", "path to sysfs cgroup tree")
1550 cgroupParent := flag.String("cgroup-parent", "docker", "name of container's parent cgroup (ignored if -cgroup-parent-subsystem is used)")
1551 cgroupParentSubsystem := flag.String("cgroup-parent-subsystem", "", "use current cgroup for given subsystem as parent cgroup for container")
1552 caCertsPath := flag.String("ca-certs", "", "Path to TLS root certificates")
1553 enableNetwork := flag.String("container-enable-networking", "default",
1554 `Specify if networking should be enabled for container. One of 'default', 'always':
1555 default: only enable networking if container requests it.
1556 always: containers always have networking enabled
1558 networkMode := flag.String("container-network-mode", "default",
1559 `Set networking mode for container. Corresponds to Docker network mode (--net).
1561 memprofile := flag.String("memprofile", "", "write memory profile to `file` after running container")
1562 getVersion := flag.Bool("version", false, "Print version information and exit.")
1565 // Print version information if requested
1567 fmt.Printf("crunch-run %s\n", version)
1571 log.Printf("crunch-run %s started", version)
1573 containerId := flag.Arg(0)
1575 if *caCertsPath != "" {
1576 arvadosclient.CertFiles = []string{*caCertsPath}
1579 api, err := arvadosclient.MakeArvadosClient()
1581 log.Fatalf("%s: %v", containerId, err)
1585 kc, kcerr := keepclient.MakeKeepClient(api)
1587 log.Fatalf("%s: %v", containerId, kcerr)
1589 kc.BlockCache = &keepclient.BlockCache{MaxBlocks: 2}
1592 // API version 1.21 corresponds to Docker 1.9, which is currently the
1593 // minimum version we want to support.
1594 docker, dockererr := dockerclient.NewClient(dockerclient.DefaultDockerHost, "1.21", nil, nil)
1596 cr, err := NewContainerRunner(arvados.NewClientFromEnv(), api, kc, docker, containerId)
1600 if dockererr != nil {
1601 cr.CrunchLog.Printf("%s: %v", containerId, dockererr)
1602 cr.checkBrokenNode(dockererr)
1603 cr.CrunchLog.Close()
1607 parentTemp, tmperr := cr.MkTempDir("", "crunch-run."+containerId+".")
1609 log.Fatalf("%s: %v", containerId, tmperr)
1612 cr.parentTemp = parentTemp
1613 cr.statInterval = *statInterval
1614 cr.cgroupRoot = *cgroupRoot
1615 cr.expectCgroupParent = *cgroupParent
1616 cr.enableNetwork = *enableNetwork
1617 cr.networkMode = *networkMode
1618 if *cgroupParentSubsystem != "" {
1619 p := findCgroup(*cgroupParentSubsystem)
1620 cr.setCgroupParent = p
1621 cr.expectCgroupParent = p
1626 if *memprofile != "" {
1627 f, err := os.Create(*memprofile)
1629 log.Printf("could not create memory profile: %s", err)
1631 runtime.GC() // get up-to-date statistics
1632 if err := pprof.WriteHeapProfile(f); err != nil {
1633 log.Printf("could not write memory profile: %s", err)
1635 closeerr := f.Close()
1636 if closeerr != nil {
1637 log.Printf("closing memprofile file: %s", err)
1642 log.Fatalf("%s: %v", containerId, runerr)