Fix more golint warnings.
[arvados.git] / lib / crunchrun / crunchrun.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 package crunchrun
6
7 import (
8         "bytes"
9         "encoding/json"
10         "errors"
11         "flag"
12         "fmt"
13         "io"
14         "io/ioutil"
15         "log"
16         "os"
17         "os/exec"
18         "os/signal"
19         "path"
20         "path/filepath"
21         "regexp"
22         "runtime"
23         "runtime/pprof"
24         "sort"
25         "strings"
26         "sync"
27         "syscall"
28         "time"
29
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"
37
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"
42 )
43
44 type command struct{}
45
46 var Command = command{}
47
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)
56 }
57
58 // ErrCancelled is the error returned when the container is cancelled.
59 var ErrCancelled = errors.New("Cancelled")
60
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)
67         ClearBlockCache()
68 }
69
70 // NewLogWriter is a factory function to create a new log writer.
71 type NewLogWriter func(name string) (io.WriteCloser, error)
72
73 type RunArvMount func(args []string, tok string) (*exec.Cmd, error)
74
75 type MkTempDir func(string, string) (string, error)
76
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)
89 }
90
91 type PsProcess interface {
92         CmdlineSlice() ([]string, error)
93 }
94
95 // ContainerRunner is the main stateful struct used for a single execution of a
96 // container.
97 type ContainerRunner struct {
98         Docker ThinDockerClient
99
100         // Dispatcher client is initialized with the Dispatcher token.
101         // This is a privileged token used to manage container status
102         // and logs.
103         //
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
107         // #14467)
108         dispatcherClient     *arvados.Client
109         DispatcherArvClient  IArvadosClient
110         DispatcherKeepClient IKeepClient
111
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.
115         //
116         // Same comment as above applies to
117         // containerClient/ContainerArvClient.
118         containerClient     *arvados.Client
119         ContainerArvClient  IArvadosClient
120         ContainerKeepClient IKeepClient
121
122         Container       arvados.Container
123         ContainerConfig dockercontainer.Config
124         HostConfig      dockercontainer.HostConfig
125         token           string
126         ContainerID     string
127         ExitCode        *int
128         NewLogWriter    NewLogWriter
129         loggingDone     chan bool
130         CrunchLog       *ThrottledLogger
131         Stdout          io.WriteCloser
132         Stderr          io.WriteCloser
133         logUUID         string
134         logMtx          sync.Mutex
135         LogCollection   arvados.CollectionFileSystem
136         LogsPDH         *string
137         RunArvMount     RunArvMount
138         MkTempDir       MkTempDir
139         ArvMount        *exec.Cmd
140         ArvMountPoint   string
141         HostOutputDir   string
142         Binds           []string
143         Volumes         map[string]struct{}
144         OutputPDH       *string
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)
149         finalState      string
150         parentTemp      string
151
152         statLogger       io.WriteCloser
153         statReporter     *crunchstat.Reporter
154         hoststatLogger   io.WriteCloser
155         hoststatReporter *crunchstat.Reporter
156         statInterval     time.Duration
157         cgroupRoot       string
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
171
172         cStateLock sync.Mutex
173         cCancelled bool // StopContainer() invoked
174         cRemoved   bool // docker confirmed the container no longer exists
175
176         enableNetwork string // one of "default" or "always"
177         networkMode   string // passed through to HostConfig.NetworkMode
178         arvMountLog   *ThrottledLogger
179
180         containerWatchdogInterval time.Duration
181 }
182
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)
190
191         go func(sig chan os.Signal) {
192                 for s := range sig {
193                         runner.stop(s)
194                 }
195         }(runner.SigChan)
196 }
197
198 // stop the underlying Docker container.
199 func (runner *ContainerRunner) stop(sig os.Signal) {
200         runner.cStateLock.Lock()
201         defer runner.cStateLock.Unlock()
202         if sig != nil {
203                 runner.CrunchLog.Printf("caught signal: %v", sig)
204         }
205         if runner.ContainerID == "" {
206                 return
207         }
208         runner.cCancelled = true
209         runner.CrunchLog.Printf("removing container")
210         err := runner.Docker.ContainerRemove(context.TODO(), runner.ContainerID, dockertypes.ContainerRemoveOptions{Force: true})
211         if err != nil {
212                 runner.CrunchLog.Printf("error removing container: %s", err)
213         }
214         if err == nil || strings.Contains(err.Error(), "No such container: "+runner.ContainerID) {
215                 runner.cRemoved = true
216         }
217 }
218
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.*",
223 }
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)")
225
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)
231                 if err != nil {
232                         runner.CrunchLog.Printf("Error writing %s: %s", path, err)
233                         return
234                 }
235                 f.Close()
236         } else {
237                 runner.CrunchLog.Printf("Running broken node hook %q", *brokenNodeHook)
238                 // run killme script
239                 c := exec.Command(*brokenNodeHook)
240                 c.Stdout = runner.CrunchLog
241                 c.Stderr = runner.CrunchLog
242                 err := c.Run()
243                 if err != nil {
244                         runner.CrunchLog.Printf("Error running broken node hook: %v", err)
245                 }
246         }
247 }
248
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()
254                         return true
255                 }
256         }
257         return false
258 }
259
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) {
264
265         runner.CrunchLog.Printf("Fetching Docker image from collection '%s'", runner.Container.ContainerImage)
266
267         var collection arvados.Collection
268         err = runner.ContainerArvClient.Get("collections", runner.Container.ContainerImage, nil, &collection)
269         if err != nil {
270                 return fmt.Errorf("While getting container image collection: %v", err)
271         }
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")
278                 }
279                 imageID = img[:len(img)-4]
280         }
281
282         runner.CrunchLog.Printf("Using Docker image id '%s'", imageID)
283
284         _, _, err = runner.Docker.ImageInspectWithRaw(context.TODO(), imageID)
285         if err != nil {
286                 runner.CrunchLog.Print("Loading Docker image from keep")
287
288                 var readCloser io.ReadCloser
289                 readCloser, err = runner.ContainerKeepClient.ManifestFileReader(manifest, img)
290                 if err != nil {
291                         return fmt.Errorf("While creating ManifestFileReader for container image: %v", err)
292                 }
293
294                 response, err := runner.Docker.ImageLoad(context.TODO(), readCloser, true)
295                 if err != nil {
296                         return fmt.Errorf("While loading container image into Docker: %v", err)
297                 }
298
299                 defer response.Body.Close()
300                 rbody, err := ioutil.ReadAll(response.Body)
301                 if err != nil {
302                         return fmt.Errorf("Reading response to image load: %v", err)
303                 }
304                 runner.CrunchLog.Printf("Docker response: %s", rbody)
305         } else {
306                 runner.CrunchLog.Print("Docker image is available")
307         }
308
309         runner.ContainerConfig.Image = imageID
310
311         runner.ContainerKeepClient.ClearBlockCache()
312
313         return nil
314 }
315
316 func (runner *ContainerRunner) ArvMountCmd(arvMountCmd []string, token string) (c *exec.Cmd, err error) {
317         c = exec.Command("arv-mount", arvMountCmd...)
318
319         // Copy our environment, but override ARVADOS_API_TOKEN with
320         // the container auth token.
321         c.Env = nil
322         for _, s := range os.Environ() {
323                 if !strings.HasPrefix(s, "ARVADOS_API_TOKEN=") {
324                         c.Env = append(c.Env, s)
325                 }
326         }
327         c.Env = append(c.Env, "ARVADOS_API_TOKEN="+token)
328
329         w, err := runner.NewLogWriter("arv-mount")
330         if err != nil {
331                 return nil, err
332         }
333         runner.arvMountLog = NewThrottledLogger(w)
334         c.Stdout = runner.arvMountLog
335         c.Stderr = runner.arvMountLog
336
337         runner.CrunchLog.Printf("Running %v", c.Args)
338
339         err = c.Start()
340         if err != nil {
341                 return nil, err
342         }
343
344         statReadme := make(chan bool)
345         runner.ArvMountExit = make(chan error)
346
347         keepStatting := true
348         go func() {
349                 for keepStatting {
350                         time.Sleep(100 * time.Millisecond)
351                         _, err = os.Stat(fmt.Sprintf("%s/by_id/README", runner.ArvMountPoint))
352                         if err == nil {
353                                 keepStatting = false
354                                 statReadme <- true
355                         }
356                 }
357                 close(statReadme)
358         }()
359
360         go func() {
361                 mnterr := c.Wait()
362                 if mnterr != nil {
363                         runner.CrunchLog.Printf("Arv-mount exit error: %v", mnterr)
364                 }
365                 runner.ArvMountExit <- mnterr
366                 close(runner.ArvMountExit)
367         }()
368
369         select {
370         case <-statReadme:
371                 break
372         case err := <-runner.ArvMountExit:
373                 runner.ArvMount = nil
374                 keepStatting = false
375                 return nil, err
376         }
377
378         return c, nil
379 }
380
381 func (runner *ContainerRunner) SetupArvMountPoint(prefix string) (err error) {
382         if runner.ArvMountPoint == "" {
383                 runner.ArvMountPoint, err = runner.MkTempDir(runner.parentTemp, prefix)
384         }
385         return
386 }
387
388 func copyfile(src string, dst string) (err error) {
389         srcfile, err := os.Open(src)
390         if err != nil {
391                 return
392         }
393
394         os.MkdirAll(path.Dir(dst), 0777)
395
396         dstfile, err := os.Create(dst)
397         if err != nil {
398                 return
399         }
400         _, err = io.Copy(dstfile, srcfile)
401         if err != nil {
402                 return
403         }
404
405         err = srcfile.Close()
406         err2 := dstfile.Close()
407
408         if err != nil {
409                 return
410         }
411
412         if err2 != nil {
413                 return err2
414         }
415
416         return nil
417 }
418
419 func (runner *ContainerRunner) SetupMounts() (err error) {
420         err = runner.SetupArvMountPoint("keep")
421         if err != nil {
422                 return fmt.Errorf("While creating keep mount temp dir: %v", err)
423         }
424
425         token, err := runner.ContainerToken()
426         if err != nil {
427                 return fmt.Errorf("could not get container token: %s", err)
428         }
429
430         pdhOnly := true
431         tmpcount := 0
432         arvMountCmd := []string{
433                 "--foreground",
434                 "--allow-other",
435                 "--read-write",
436                 fmt.Sprintf("--crunchstat-interval=%v", runner.statInterval.Seconds())}
437
438         if runner.Container.RuntimeConstraints.KeepCacheRAM > 0 {
439                 arvMountCmd = append(arvMountCmd, "--file-cache", fmt.Sprintf("%d", runner.Container.RuntimeConstraints.KeepCacheRAM))
440         }
441
442         collectionPaths := []string{}
443         runner.Binds = nil
444         runner.Volumes = make(map[string]struct{})
445         needCertMount := true
446         type copyFile struct {
447                 src  string
448                 bind string
449         }
450         var copyFiles []copyFile
451
452         var binds []string
453         for bind := range runner.Container.Mounts {
454                 binds = append(binds, bind)
455         }
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)
459                 }
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)
464                 }
465                 binds = append(binds, bind)
466         }
467         sort.Strings(binds)
468
469         for _, bind := range binds {
470                 mnt, ok := runner.Container.Mounts[bind]
471                 if !ok {
472                         mnt = runner.SecretMounts[bind]
473                 }
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)
478                         }
479
480                         // Does path start with OutputPath?
481                         prefix := runner.Container.OutputPath
482                         if !strings.HasSuffix(prefix, "/") {
483                                 prefix += "/"
484                         }
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)
487                         }
488                 }
489
490                 if bind == "stdin" {
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' and 'json' are supported", mnt.Kind)
494                         }
495                 }
496
497                 if bind == "/etc/arvados/ca-certificates.crt" {
498                         needCertMount = false
499                 }
500
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)
504                         }
505                 }
506
507                 switch {
508                 case mnt.Kind == "collection" && bind != "stdin":
509                         var src string
510                         if mnt.UUID != "" && mnt.PortableDataHash != "" {
511                                 return fmt.Errorf("cannot specify both 'uuid' and 'portable_data_hash' for a collection mount")
512                         }
513                         if mnt.UUID != "" {
514                                 if mnt.Writable {
515                                         return fmt.Errorf("writing to existing collections currently not permitted")
516                                 }
517                                 pdhOnly = false
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")
522                                 }
523                                 idx := strings.Index(mnt.PortableDataHash, "/")
524                                 if idx > 0 {
525                                         mnt.Path = path.Clean(mnt.PortableDataHash[idx:])
526                                         mnt.PortableDataHash = mnt.PortableDataHash[0:idx]
527                                         runner.Container.Mounts[bind] = mnt
528                                 }
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:]
535                                         }
536                                         src += "/" + mnt.Path
537                                 }
538                         } else {
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))
542                                 tmpcount++
543                         }
544                         if mnt.Writable {
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):]})
550                                 } else {
551                                         runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", src, bind))
552                                 }
553                         } else {
554                                 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s:ro", src, bind))
555                         }
556                         collectionPaths = append(collectionPaths, src)
557
558                 case mnt.Kind == "tmp":
559                         var tmpdir string
560                         tmpdir, err = runner.MkTempDir(runner.parentTemp, "tmp")
561                         if err != nil {
562                                 return fmt.Errorf("while creating mount temp dir: %v", err)
563                         }
564                         st, staterr := os.Stat(tmpdir)
565                         if staterr != nil {
566                                 return fmt.Errorf("while Stat on temp dir: %v", staterr)
567                         }
568                         err = os.Chmod(tmpdir, st.Mode()|os.ModeSetgid|0777)
569                         if staterr != nil {
570                                 return fmt.Errorf("while Chmod temp dir: %v", err)
571                         }
572                         runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", tmpdir, bind))
573                         if bind == runner.Container.OutputPath {
574                                 runner.HostOutputDir = tmpdir
575                         }
576
577                 case mnt.Kind == "json" || mnt.Kind == "text":
578                         var filedata []byte
579                         if mnt.Kind == "json" {
580                                 filedata, err = json.Marshal(mnt.Content)
581                                 if err != nil {
582                                         return fmt.Errorf("encoding json data: %v", err)
583                                 }
584                         } else {
585                                 text, ok := mnt.Content.(string)
586                                 if !ok {
587                                         return fmt.Errorf("content for mount %q must be a string", bind)
588                                 }
589                                 filedata = []byte(text)
590                         }
591
592                         tmpdir, err := runner.MkTempDir(runner.parentTemp, mnt.Kind)
593                         if err != nil {
594                                 return fmt.Errorf("creating temp dir: %v", err)
595                         }
596                         tmpfn := filepath.Join(tmpdir, "mountdata."+mnt.Kind)
597                         err = ioutil.WriteFile(tmpfn, filedata, 0444)
598                         if err != nil {
599                                 return fmt.Errorf("writing temp file: %v", err)
600                         }
601                         if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
602                                 copyFiles = append(copyFiles, copyFile{tmpfn, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
603                         } else {
604                                 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s:ro", tmpfn, bind))
605                         }
606
607                 case mnt.Kind == "git_tree":
608                         tmpdir, err := runner.MkTempDir(runner.parentTemp, "git_tree")
609                         if err != nil {
610                                 return fmt.Errorf("creating temp dir: %v", err)
611                         }
612                         err = gitMount(mnt).extractTree(runner.ContainerArvClient, tmpdir, token)
613                         if err != nil {
614                                 return err
615                         }
616                         runner.Binds = append(runner.Binds, tmpdir+":"+bind+":ro")
617                 }
618         }
619
620         if runner.HostOutputDir == "" {
621                 return fmt.Errorf("output path does not correspond to a writable mount point")
622         }
623
624         if wantAPI := runner.Container.RuntimeConstraints.API; needCertMount && wantAPI != nil && *wantAPI {
625                 for _, certfile := range arvadosclient.CertFiles {
626                         _, err := os.Stat(certfile)
627                         if err == nil {
628                                 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:/etc/arvados/ca-certificates.crt:ro", certfile))
629                                 break
630                         }
631                 }
632         }
633
634         if pdhOnly {
635                 arvMountCmd = append(arvMountCmd, "--mount-by-pdh", "by_id")
636         } else {
637                 arvMountCmd = append(arvMountCmd, "--mount-by-id", "by_id")
638         }
639         arvMountCmd = append(arvMountCmd, runner.ArvMountPoint)
640
641         runner.ArvMount, err = runner.RunArvMount(arvMountCmd, token)
642         if err != nil {
643                 return fmt.Errorf("while trying to start arv-mount: %v", err)
644         }
645
646         for _, p := range collectionPaths {
647                 _, err = os.Stat(p)
648                 if err != nil {
649                         return fmt.Errorf("while checking that input files exist: %v", err)
650                 }
651         }
652
653         for _, cp := range copyFiles {
654                 st, err := os.Stat(cp.src)
655                 if err != nil {
656                         return fmt.Errorf("while staging writable file from %q to %q: %v", cp.src, cp.bind, err)
657                 }
658                 if st.IsDir() {
659                         err = filepath.Walk(cp.src, func(walkpath string, walkinfo os.FileInfo, walkerr error) error {
660                                 if walkerr != nil {
661                                         return walkerr
662                                 }
663                                 target := path.Join(cp.bind, walkpath[len(cp.src):])
664                                 if walkinfo.Mode().IsRegular() {
665                                         copyerr := copyfile(walkpath, target)
666                                         if copyerr != nil {
667                                                 return copyerr
668                                         }
669                                         return os.Chmod(target, walkinfo.Mode()|0777)
670                                 } else if walkinfo.Mode().IsDir() {
671                                         mkerr := os.MkdirAll(target, 0777)
672                                         if mkerr != nil {
673                                                 return mkerr
674                                         }
675                                         return os.Chmod(target, walkinfo.Mode()|os.ModeSetgid|0777)
676                                 } else {
677                                         return fmt.Errorf("source %q is not a regular file or directory", cp.src)
678                                 }
679                         })
680                 } else if st.Mode().IsRegular() {
681                         err = copyfile(cp.src, cp.bind)
682                         if err == nil {
683                                 err = os.Chmod(cp.bind, st.Mode()|0777)
684                         }
685                 }
686                 if err != nil {
687                         return fmt.Errorf("while staging writable file from %q to %q: %v", cp.src, cp.bind, err)
688                 }
689         }
690
691         return nil
692 }
693
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)
698
699         header := make([]byte, 8)
700         var err error
701         for err == nil {
702                 _, err = io.ReadAtLeast(containerReader, header, 8)
703                 if err != nil {
704                         if err == io.EOF {
705                                 err = nil
706                         }
707                         break
708                 }
709                 readsize := int64(header[7]) | (int64(header[6]) << 8) | (int64(header[5]) << 16) | (int64(header[4]) << 24)
710                 if header[0] == 1 {
711                         // stdout
712                         _, err = io.CopyN(runner.Stdout, containerReader, readsize)
713                 } else {
714                         // stderr
715                         _, err = io.CopyN(runner.Stderr, containerReader, readsize)
716                 }
717         }
718
719         if err != nil {
720                 runner.CrunchLog.Printf("error reading docker logs: %v", err)
721         }
722
723         err = runner.Stdout.Close()
724         if err != nil {
725                 runner.CrunchLog.Printf("error closing stdout logs: %v", err)
726         }
727
728         err = runner.Stderr.Close()
729         if err != nil {
730                 runner.CrunchLog.Printf("error closing stderr logs: %v", err)
731         }
732
733         if runner.statReporter != nil {
734                 runner.statReporter.Stop()
735                 err = runner.statLogger.Close()
736                 if err != nil {
737                         runner.CrunchLog.Printf("error closing crunchstat logs: %v", err)
738                 }
739         }
740 }
741
742 func (runner *ContainerRunner) stopHoststat() error {
743         if runner.hoststatReporter == nil {
744                 return nil
745         }
746         runner.hoststatReporter.Stop()
747         err := runner.hoststatLogger.Close()
748         if err != nil {
749                 return fmt.Errorf("error closing hoststat logs: %v", err)
750         }
751         return nil
752 }
753
754 func (runner *ContainerRunner) startHoststat() error {
755         w, err := runner.NewLogWriter("hoststat")
756         if err != nil {
757                 return err
758         }
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,
764         }
765         runner.hoststatReporter.Start()
766         return nil
767 }
768
769 func (runner *ContainerRunner) startCrunchstat() error {
770         w, err := runner.NewLogWriter("crunchstat")
771         if err != nil {
772                 return err
773         }
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,
782         }
783         runner.statReporter.Start()
784         return nil
785 }
786
787 type infoCommand struct {
788         label string
789         cmd   []string
790 }
791
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
796 // LogNodeRecord).
797 func (runner *ContainerRunner) LogHostInfo() (err error) {
798         w, err := runner.NewLogWriter("node-info")
799         if err != nil {
800                 return
801         }
802
803         commands := []infoCommand{
804                 {
805                         label: "Host Information",
806                         cmd:   []string{"uname", "-a"},
807                 },
808                 {
809                         label: "CPU Information",
810                         cmd:   []string{"cat", "/proc/cpuinfo"},
811                 },
812                 {
813                         label: "Memory Information",
814                         cmd:   []string{"cat", "/proc/meminfo"},
815                 },
816                 {
817                         label: "Disk Space",
818                         cmd:   []string{"df", "-m", "/", os.TempDir()},
819                 },
820                 {
821                         label: "Disk INodes",
822                         cmd:   []string{"df", "-i", "/", os.TempDir()},
823                 },
824         }
825
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:]...)
830                 cmd.Stdout = w
831                 cmd.Stderr = w
832                 if err := cmd.Run(); err != nil {
833                         err = fmt.Errorf("While running command %q: %v", command.cmd, err)
834                         fmt.Fprintln(w, err)
835                         return err
836                 }
837                 fmt.Fprintln(w, "")
838         }
839
840         err = w.Close()
841         if err != nil {
842                 return fmt.Errorf("While closing node-info logs: %v", err)
843         }
844         return nil
845 }
846
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)
852         }
853         return err
854 }
855
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)
864                 if err != nil {
865                         return err
866                 }
867                 defer w.Close()
868                 _, err = io.WriteString(w, it)
869                 if err != nil {
870                         return err
871                 }
872                 return w.Close()
873         }
874         // Dispatched via crunch-dispatch-slurm. Look up
875         // apiserver's node record corresponding to
876         // $SLURMD_NODENAME.
877         hostname := os.Getenv("SLURMD_NODENAME")
878         if hostname == "" {
879                 hostname, _ = os.Hostname()
880         }
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{})
886                 if ok {
887                         delete(node, "info")
888                 }
889         })
890         return err
891 }
892
893 func (runner *ContainerRunner) logAPIResponse(label, path string, params map[string]interface{}, munge func(interface{})) (logged bool, err error) {
894         writer, err := runner.LogCollection.OpenFile(label+".json", os.O_CREATE|os.O_WRONLY, 0666)
895         if err != nil {
896                 return false, err
897         }
898         w := &ArvLogWriter{
899                 ArvClient:     runner.DispatcherArvClient,
900                 UUID:          runner.Container.UUID,
901                 loggingStream: label,
902                 writeCloser:   writer,
903         }
904
905         reader, err := runner.DispatcherArvClient.CallRaw("GET", path, "", "", arvadosclient.Dict(params))
906         if err != nil {
907                 return false, fmt.Errorf("error getting %s record: %v", label, err)
908         }
909         defer reader.Close()
910
911         dec := json.NewDecoder(reader)
912         dec.UseNumber()
913         var resp map[string]interface{}
914         if err = dec.Decode(&resp); err != nil {
915                 return false, fmt.Errorf("error decoding %s list response: %v", label, err)
916         }
917         items, ok := resp["items"].([]interface{})
918         if !ok {
919                 return false, fmt.Errorf("error decoding %s list response: no \"items\" key in API list response", label)
920         } else if len(items) < 1 {
921                 return false, nil
922         }
923         if munge != nil {
924                 munge(items[0])
925         }
926         // Re-encode it using indentation to improve readability
927         enc := json.NewEncoder(w)
928         enc.SetIndent("", "    ")
929         if err = enc.Encode(items[0]); err != nil {
930                 return false, fmt.Errorf("error logging %s record: %v", label, err)
931         }
932         err = w.Close()
933         if err != nil {
934                 return false, fmt.Errorf("error closing %s.json in log collection: %v", label, err)
935         }
936         return true, nil
937 }
938
939 // AttachStreams connects the docker container stdin, stdout and stderr logs
940 // to the Arvados logger which logs to Keep and the API server logs table.
941 func (runner *ContainerRunner) AttachStreams() (err error) {
942
943         runner.CrunchLog.Print("Attaching container streams")
944
945         // If stdin mount is provided, attach it to the docker container
946         var stdinRdr arvados.File
947         var stdinJSON []byte
948         if stdinMnt, ok := runner.Container.Mounts["stdin"]; ok {
949                 if stdinMnt.Kind == "collection" {
950                         var stdinColl arvados.Collection
951                         collID := stdinMnt.UUID
952                         if collID == "" {
953                                 collID = stdinMnt.PortableDataHash
954                         }
955                         err = runner.ContainerArvClient.Get("collections", collID, nil, &stdinColl)
956                         if err != nil {
957                                 return fmt.Errorf("While getting stdin collection: %v", err)
958                         }
959
960                         stdinRdr, err = runner.ContainerKeepClient.ManifestFileReader(
961                                 manifest.Manifest{Text: stdinColl.ManifestText},
962                                 stdinMnt.Path)
963                         if os.IsNotExist(err) {
964                                 return fmt.Errorf("stdin collection path not found: %v", stdinMnt.Path)
965                         } else if err != nil {
966                                 return fmt.Errorf("While getting stdin collection path %v: %v", stdinMnt.Path, err)
967                         }
968                 } else if stdinMnt.Kind == "json" {
969                         stdinJSON, err = json.Marshal(stdinMnt.Content)
970                         if err != nil {
971                                 return fmt.Errorf("While encoding stdin json data: %v", err)
972                         }
973                 }
974         }
975
976         stdinUsed := stdinRdr != nil || len(stdinJSON) != 0
977         response, err := runner.Docker.ContainerAttach(context.TODO(), runner.ContainerID,
978                 dockertypes.ContainerAttachOptions{Stream: true, Stdin: stdinUsed, Stdout: true, Stderr: true})
979         if err != nil {
980                 return fmt.Errorf("While attaching container stdout/stderr streams: %v", err)
981         }
982
983         runner.loggingDone = make(chan bool)
984
985         if stdoutMnt, ok := runner.Container.Mounts["stdout"]; ok {
986                 stdoutFile, err := runner.getStdoutFile(stdoutMnt.Path)
987                 if err != nil {
988                         return err
989                 }
990                 runner.Stdout = stdoutFile
991         } else if w, err := runner.NewLogWriter("stdout"); err != nil {
992                 return err
993         } else {
994                 runner.Stdout = NewThrottledLogger(w)
995         }
996
997         if stderrMnt, ok := runner.Container.Mounts["stderr"]; ok {
998                 stderrFile, err := runner.getStdoutFile(stderrMnt.Path)
999                 if err != nil {
1000                         return err
1001                 }
1002                 runner.Stderr = stderrFile
1003         } else if w, err := runner.NewLogWriter("stderr"); err != nil {
1004                 return err
1005         } else {
1006                 runner.Stderr = NewThrottledLogger(w)
1007         }
1008
1009         if stdinRdr != nil {
1010                 go func() {
1011                         _, err := io.Copy(response.Conn, stdinRdr)
1012                         if err != nil {
1013                                 runner.CrunchLog.Printf("While writing stdin collection to docker container: %v", err)
1014                                 runner.stop(nil)
1015                         }
1016                         stdinRdr.Close()
1017                         response.CloseWrite()
1018                 }()
1019         } else if len(stdinJSON) != 0 {
1020                 go func() {
1021                         _, err := io.Copy(response.Conn, bytes.NewReader(stdinJSON))
1022                         if err != nil {
1023                                 runner.CrunchLog.Printf("While writing stdin json to docker container: %v", err)
1024                                 runner.stop(nil)
1025                         }
1026                         response.CloseWrite()
1027                 }()
1028         }
1029
1030         go runner.ProcessDockerAttach(response.Reader)
1031
1032         return nil
1033 }
1034
1035 func (runner *ContainerRunner) getStdoutFile(mntPath string) (*os.File, error) {
1036         stdoutPath := mntPath[len(runner.Container.OutputPath):]
1037         index := strings.LastIndex(stdoutPath, "/")
1038         if index > 0 {
1039                 subdirs := stdoutPath[:index]
1040                 if subdirs != "" {
1041                         st, err := os.Stat(runner.HostOutputDir)
1042                         if err != nil {
1043                                 return nil, fmt.Errorf("While Stat on temp dir: %v", err)
1044                         }
1045                         stdoutPath := filepath.Join(runner.HostOutputDir, subdirs)
1046                         err = os.MkdirAll(stdoutPath, st.Mode()|os.ModeSetgid|0777)
1047                         if err != nil {
1048                                 return nil, fmt.Errorf("While MkdirAll %q: %v", stdoutPath, err)
1049                         }
1050                 }
1051         }
1052         stdoutFile, err := os.Create(filepath.Join(runner.HostOutputDir, stdoutPath))
1053         if err != nil {
1054                 return nil, fmt.Errorf("While creating file %q: %v", stdoutPath, err)
1055         }
1056
1057         return stdoutFile, nil
1058 }
1059
1060 // CreateContainer creates the docker container.
1061 func (runner *ContainerRunner) CreateContainer() error {
1062         runner.CrunchLog.Print("Creating Docker container")
1063
1064         runner.ContainerConfig.Cmd = runner.Container.Command
1065         if runner.Container.Cwd != "." {
1066                 runner.ContainerConfig.WorkingDir = runner.Container.Cwd
1067         }
1068
1069         for k, v := range runner.Container.Environment {
1070                 runner.ContainerConfig.Env = append(runner.ContainerConfig.Env, k+"="+v)
1071         }
1072
1073         runner.ContainerConfig.Volumes = runner.Volumes
1074
1075         maxRAM := int64(runner.Container.RuntimeConstraints.RAM)
1076         minDockerRAM := int64(16)
1077         if maxRAM < minDockerRAM*1024*1024 {
1078                 // Docker daemon won't let you set a limit less than ~10 MiB
1079                 maxRAM = minDockerRAM * 1024 * 1024
1080         }
1081         runner.HostConfig = dockercontainer.HostConfig{
1082                 Binds: runner.Binds,
1083                 LogConfig: dockercontainer.LogConfig{
1084                         Type: "none",
1085                 },
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
1092                 },
1093         }
1094
1095         if wantAPI := runner.Container.RuntimeConstraints.API; wantAPI != nil && *wantAPI {
1096                 tok, err := runner.ContainerToken()
1097                 if err != nil {
1098                         return err
1099                 }
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"),
1104                 )
1105                 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode(runner.networkMode)
1106         } else {
1107                 if runner.enableNetwork == "always" {
1108                         runner.HostConfig.NetworkMode = dockercontainer.NetworkMode(runner.networkMode)
1109                 } else {
1110                         runner.HostConfig.NetworkMode = dockercontainer.NetworkMode("none")
1111                 }
1112         }
1113
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
1120
1121         createdBody, err := runner.Docker.ContainerCreate(context.TODO(), &runner.ContainerConfig, &runner.HostConfig, nil, runner.Container.UUID)
1122         if err != nil {
1123                 return fmt.Errorf("While creating container: %v", err)
1124         }
1125
1126         runner.ContainerID = createdBody.ID
1127
1128         return runner.AttachStreams()
1129 }
1130
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 {
1137                 return ErrCancelled
1138         }
1139         err := runner.Docker.ContainerStart(context.TODO(), runner.ContainerID,
1140                 dockertypes.ContainerStartOptions{})
1141         if err != nil {
1142                 var advice string
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])
1145                 }
1146                 return fmt.Errorf("could not start container: %v%s", err, advice)
1147         }
1148         return nil
1149 }
1150
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")
1156
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)
1161         }
1162
1163         containerGone := make(chan struct{})
1164         go func() {
1165                 defer close(containerGone)
1166                 if runner.containerWatchdogInterval < 1 {
1167                         runner.containerWatchdogInterval = time.Minute
1168                 }
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)
1172                         cancel()
1173                         runner.cStateLock.Lock()
1174                         done := runner.cRemoved || runner.ExitCode != nil
1175                         runner.cStateLock.Unlock()
1176                         if done {
1177                                 return
1178                         } else if err != nil {
1179                                 runner.CrunchLog.Printf("Error inspecting container: %s", err)
1180                                 runner.checkBrokenNode(err)
1181                                 return
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)
1184                                 return
1185                         }
1186                 }
1187         }()
1188
1189         for {
1190                 select {
1191                 case waitBody := <-waitOk:
1192                         runner.CrunchLog.Printf("Container exited with code: %v", waitBody.StatusCode)
1193                         code := int(waitBody.StatusCode)
1194                         runner.ExitCode = &code
1195
1196                         // wait for stdout/stderr to complete
1197                         <-runner.loggingDone
1198                         return nil
1199
1200                 case err := <-waitErr:
1201                         return fmt.Errorf("container wait: %v", err)
1202
1203                 case <-arvMountExit:
1204                         runner.CrunchLog.Printf("arv-mount exited while container is still running.  Stopping container.")
1205                         runner.stop(nil)
1206                         // arvMountExit will always be ready now that
1207                         // it's closed, but that doesn't interest us.
1208                         arvMountExit = nil
1209
1210                 case <-runTimeExceeded:
1211                         runner.CrunchLog.Printf("maximum run time exceeded. Stopping container.")
1212                         runner.stop(nil)
1213                         runTimeExceeded = nil
1214
1215                 case <-containerGone:
1216                         return errors.New("docker client never returned status")
1217                 }
1218         }
1219 }
1220
1221 func (runner *ContainerRunner) updateLogs() {
1222         ticker := time.NewTicker(crunchLogUpdatePeriod / 360)
1223         defer ticker.Stop()
1224
1225         sigusr1 := make(chan os.Signal, 1)
1226         signal.Notify(sigusr1, syscall.SIGUSR1)
1227         defer signal.Stop(sigusr1)
1228
1229         saveAtTime := time.Now().Add(crunchLogUpdatePeriod)
1230         saveAtSize := crunchLogUpdateSize
1231         var savedSize int64
1232         for {
1233                 select {
1234                 case <-ticker.C:
1235                 case <-sigusr1:
1236                         saveAtTime = time.Now()
1237                 }
1238                 runner.logMtx.Lock()
1239                 done := runner.LogsPDH != nil
1240                 runner.logMtx.Unlock()
1241                 if done {
1242                         return
1243                 }
1244                 size := runner.LogCollection.Size()
1245                 if size == savedSize || (time.Now().Before(saveAtTime) && size < saveAtSize) {
1246                         continue
1247                 }
1248                 saveAtTime = time.Now().Add(crunchLogUpdatePeriod)
1249                 saveAtSize = runner.LogCollection.Size() + crunchLogUpdateSize
1250                 saved, err := runner.saveLogCollection(false)
1251                 if err != nil {
1252                         runner.CrunchLog.Printf("error updating log collection: %s", err)
1253                         continue
1254                 }
1255
1256                 var updated arvados.Container
1257                 err = runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{
1258                         "container": arvadosclient.Dict{"log": saved.PortableDataHash},
1259                 }, &updated)
1260                 if err != nil {
1261                         runner.CrunchLog.Printf("error updating container log to %s: %s", saved.PortableDataHash, err)
1262                         continue
1263                 }
1264
1265                 savedSize = size
1266         }
1267 }
1268
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)
1277                 if err != nil {
1278                         return err
1279                 }
1280                 if runner.Container.Output != "" {
1281                         // Container output is already set.
1282                         runner.OutputPDH = &runner.Container.Output
1283                         return nil
1284                 }
1285         }
1286
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,
1297         }).Copy()
1298         if err != nil {
1299                 return err
1300         }
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)
1304                 if err != nil {
1305                         return err
1306                 }
1307                 txt, err = fs.MarshalManifest(".")
1308                 if err != nil {
1309                         return err
1310                 }
1311         }
1312         var resp arvados.Collection
1313         err = runner.ContainerArvClient.Create("collections", arvadosclient.Dict{
1314                 "ensure_unique_name": true,
1315                 "collection": arvadosclient.Dict{
1316                         "is_trashed":    true,
1317                         "name":          "output for " + runner.Container.UUID,
1318                         "manifest_text": txt,
1319                 },
1320         }, &resp)
1321         if err != nil {
1322                 return fmt.Errorf("error creating output collection: %v", err)
1323         }
1324         runner.OutputPDH = &resp.PortableDataHash
1325         return nil
1326 }
1327
1328 func (runner *ContainerRunner) CleanupDirs() {
1329         if runner.ArvMount != nil {
1330                 var delay int64 = 8
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()
1336
1337                 if umnterr != nil {
1338                         runner.CrunchLog.Printf("Error unmounting: %v", umnterr)
1339                 } else {
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)
1344                         go func() {
1345                                 mnterr := umount.Wait()
1346                                 if mnterr != nil {
1347                                         runner.CrunchLog.Printf("Error unmounting: %v", mnterr)
1348                                 }
1349                                 umountExit <- mnterr
1350                         }()
1351
1352                         for again := true; again; {
1353                                 again = false
1354                                 select {
1355                                 case <-umountExit:
1356                                         umount = nil
1357                                         again = true
1358                                 case <-runner.ArvMountExit:
1359                                         break
1360                                 case <-time.After(time.Duration((delay + 1) * int64(time.Second))):
1361                                         runner.CrunchLog.Printf("Timed out waiting for unmount")
1362                                         if umount != nil {
1363                                                 umount.Process.Kill()
1364                                         }
1365                                         runner.ArvMount.Process.Kill()
1366                                 }
1367                         }
1368                 }
1369         }
1370
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)
1374                 }
1375         }
1376
1377         if rmerr := os.RemoveAll(runner.parentTemp); rmerr != nil {
1378                 runner.CrunchLog.Printf("While cleaning up temporary directory %s: %v", runner.parentTemp, rmerr)
1379         }
1380 }
1381
1382 // CommitLogs posts the collection containing the final container logs.
1383 func (runner *ContainerRunner) CommitLogs() error {
1384         func() {
1385                 // Hold cStateLock to prevent races on CrunchLog (e.g., stop()).
1386                 runner.cStateLock.Lock()
1387                 defer runner.cStateLock.Unlock()
1388
1389                 runner.CrunchLog.Print(runner.finalState)
1390
1391                 if runner.arvMountLog != nil {
1392                         runner.arvMountLog.Close()
1393                 }
1394                 runner.CrunchLog.Close()
1395
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",
1404                         writeCloser:   nil,
1405                 })
1406                 runner.CrunchLog.Immediate = log.New(os.Stderr, runner.Container.UUID+" ", 0)
1407         }()
1408
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.
1415                 return nil
1416         }
1417         saved, err := runner.saveLogCollection(true)
1418         if err != nil {
1419                 return fmt.Errorf("error saving log collection: %s", err)
1420         }
1421         runner.logMtx.Lock()
1422         defer runner.logMtx.Unlock()
1423         runner.LogsPDH = &saved.PortableDataHash
1424         return nil
1425 }
1426
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.
1432                 return
1433         }
1434         mt, err := runner.LogCollection.MarshalManifest(".")
1435         if err != nil {
1436                 err = fmt.Errorf("error creating log manifest: %v", err)
1437                 return
1438         }
1439         updates := arvadosclient.Dict{
1440                 "name":          "logs for " + runner.Container.UUID,
1441                 "manifest_text": mt,
1442         }
1443         if final {
1444                 updates["is_trashed"] = true
1445         } else {
1446                 exp := time.Now().Add(crunchLogUpdatePeriod * 24)
1447                 updates["trash_at"] = exp
1448                 updates["delete_at"] = exp
1449         }
1450         reqBody := arvadosclient.Dict{"collection": updates}
1451         if runner.logUUID == "" {
1452                 reqBody["ensure_unique_name"] = true
1453                 err = runner.DispatcherArvClient.Create("collections", reqBody, &response)
1454         } else {
1455                 err = runner.DispatcherArvClient.Update("collections", runner.logUUID, reqBody, &response)
1456         }
1457         if err != nil {
1458                 return
1459         }
1460         runner.logUUID = response.UUID
1461         return
1462 }
1463
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 {
1469                 return ErrCancelled
1470         }
1471         return runner.DispatcherArvClient.Update("containers", runner.Container.UUID,
1472                 arvadosclient.Dict{"container": arvadosclient.Dict{"state": "Running"}}, nil)
1473 }
1474
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
1480         }
1481
1482         var auth arvados.APIClientAuthorization
1483         err := runner.DispatcherArvClient.Call("GET", "containers", runner.Container.UUID, "auth", nil, &auth)
1484         if err != nil {
1485                 return "", err
1486         }
1487         runner.token = fmt.Sprintf("v2/%s/%s/%s", auth.UUID, auth.APIToken, runner.Container.UUID)
1488         return runner.token, nil
1489 }
1490
1491 // UpdateContainerFinal 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
1498         }
1499         if runner.finalState == "Complete" {
1500                 if runner.ExitCode != nil {
1501                         update["exit_code"] = *runner.ExitCode
1502                 }
1503                 if runner.OutputPDH != nil {
1504                         update["output"] = *runner.OutputPDH
1505                 }
1506         }
1507         return runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{"container": update}, nil)
1508 }
1509
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
1515 }
1516
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)
1520         if err != nil {
1521                 return nil, err
1522         }
1523         return &ArvLogWriter{
1524                 ArvClient:     runner.DispatcherArvClient,
1525                 UUID:          runner.Container.UUID,
1526                 loggingStream: name,
1527                 writeCloser:   writer,
1528         }, nil
1529 }
1530
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)
1535
1536         hostname, hosterr := os.Hostname()
1537         if hosterr != nil {
1538                 runner.CrunchLog.Printf("Error getting hostname '%v'", hosterr)
1539         } else {
1540                 runner.CrunchLog.Printf("Executing on host '%s'", hostname)
1541         }
1542
1543         runner.finalState = "Queued"
1544
1545         defer func() {
1546                 runner.CleanupDirs()
1547
1548                 runner.CrunchLog.Printf("crunch-run finished")
1549                 runner.CrunchLog.Close()
1550         }()
1551
1552         err = runner.fetchContainerRecord()
1553         if err != nil {
1554                 return
1555         }
1556         if runner.Container.State != "Locked" {
1557                 return fmt.Errorf("dispatch error detected: container %q has state %q", runner.Container.UUID, runner.Container.State)
1558         }
1559
1560         defer func() {
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) {
1567                         if e == nil {
1568                                 return
1569                         }
1570                         runner.CrunchLog.Printf("error in %s: %v", errorIn, e)
1571                         if err == nil {
1572                                 err = e
1573                         }
1574                         if runner.finalState == "Complete" {
1575                                 // There was an error in the finalization.
1576                                 runner.finalState = "Cancelled"
1577                         }
1578                 }
1579
1580                 // Log the error encountered in Run(), if any
1581                 checkErr("Run", err)
1582
1583                 if runner.finalState == "Queued" {
1584                         runner.UpdateContainerFinal()
1585                         return
1586                 }
1587
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
1592                 }
1593
1594                 checkErr("CaptureOutput", runner.CaptureOutput())
1595                 checkErr("stopHoststat", runner.stopHoststat())
1596                 checkErr("CommitLogs", runner.CommitLogs())
1597                 checkErr("UpdateContainerFinal", runner.UpdateContainerFinal())
1598         }()
1599
1600         runner.setupSignals()
1601         err = runner.startHoststat()
1602         if err != nil {
1603                 return
1604         }
1605
1606         // check for and/or load image
1607         err = runner.LoadImage()
1608         if err != nil {
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"
1613                 }
1614                 err = fmt.Errorf("While loading container image: %v", err)
1615                 return
1616         }
1617
1618         // set up FUSE mount and binds
1619         err = runner.SetupMounts()
1620         if err != nil {
1621                 runner.finalState = "Cancelled"
1622                 err = fmt.Errorf("While setting up mounts: %v", err)
1623                 return
1624         }
1625
1626         err = runner.CreateContainer()
1627         if err != nil {
1628                 return
1629         }
1630         err = runner.LogHostInfo()
1631         if err != nil {
1632                 return
1633         }
1634         err = runner.LogNodeRecord()
1635         if err != nil {
1636                 return
1637         }
1638         err = runner.LogContainerRecord()
1639         if err != nil {
1640                 return
1641         }
1642
1643         if runner.IsCancelled() {
1644                 return
1645         }
1646
1647         err = runner.UpdateContainerRunning()
1648         if err != nil {
1649                 return
1650         }
1651         runner.finalState = "Cancelled"
1652
1653         err = runner.startCrunchstat()
1654         if err != nil {
1655                 return
1656         }
1657
1658         err = runner.StartContainer()
1659         if err != nil {
1660                 runner.checkBrokenNode(err)
1661                 return
1662         }
1663
1664         err = runner.WaitFinish()
1665         if err == nil && !runner.IsCancelled() {
1666                 runner.finalState = "Complete"
1667         }
1668         return
1669 }
1670
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)
1675         if err != nil {
1676                 return fmt.Errorf("error fetching container record: %v", err)
1677         }
1678         defer reader.Close()
1679
1680         dec := json.NewDecoder(reader)
1681         dec.UseNumber()
1682         err = dec.Decode(&runner.Container)
1683         if err != nil {
1684                 return fmt.Errorf("error decoding container record: %v", err)
1685         }
1686
1687         var sm struct {
1688                 SecretMounts map[string]arvados.Mount `json:"secret_mounts"`
1689         }
1690
1691         containerToken, err := runner.ContainerToken()
1692         if err != nil {
1693                 return fmt.Errorf("error getting container token: %v", err)
1694         }
1695
1696         runner.ContainerArvClient, runner.ContainerKeepClient,
1697                 runner.containerClient, err = runner.MkArvClient(containerToken)
1698         if err != nil {
1699                 return fmt.Errorf("error creating container API client: %v", err)
1700         }
1701
1702         err = runner.ContainerArvClient.Call("GET", "containers", runner.Container.UUID, "secret_mounts", nil, &sm)
1703         if err != nil {
1704                 if apierr, ok := err.(arvadosclient.APIServerError); !ok || apierr.HttpStatusCode != 404 {
1705                         return fmt.Errorf("error fetching secret_mounts: %v", err)
1706                 }
1707                 // ok && apierr.HttpStatusCode == 404, which means
1708                 // secret_mounts isn't supported by this API server.
1709         }
1710         runner.SecretMounts = sm.SecretMounts
1711
1712         return nil
1713 }
1714
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) {
1721
1722         cr := &ContainerRunner{
1723                 dispatcherClient:     dispatcherClient,
1724                 DispatcherArvClient:  dispatcherArvClient,
1725                 DispatcherKeepClient: dispatcherKeepClient,
1726                 Docker:               docker,
1727         }
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()
1733                 if err != nil {
1734                         return nil, nil, nil, err
1735                 }
1736                 cl.ApiToken = token
1737                 kc, err := keepclient.MakeKeepClient(cl)
1738                 if err != nil {
1739                         return nil, nil, nil, err
1740                 }
1741                 c2 := arvados.NewClientFromEnv()
1742                 c2.AuthToken = token
1743                 return cl, kc, c2, nil
1744         }
1745         var err error
1746         cr.LogCollection, err = (&arvados.Collection{}).FileSystem(cr.dispatcherClient, cr.DispatcherKeepClient)
1747         if err != nil {
1748                 return nil, err
1749         }
1750         cr.Container.UUID = containerUUID
1751         w, err := cr.NewLogWriter("crunch-run")
1752         if err != nil {
1753                 return nil, err
1754         }
1755         cr.CrunchLog = NewThrottledLogger(w)
1756         cr.CrunchLog.Immediate = log.New(os.Stderr, containerUUID+" ", 0)
1757
1758         loadLogThrottleParams(dispatcherArvClient)
1759         go cr.updateLogs()
1760
1761         return cr, nil
1762 }
1763
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
1780         `)
1781         networkMode := flags.String("container-network-mode", "default",
1782                 `Set networking mode for container.  Corresponds to Docker network mode (--net).
1783         `)
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.")
1786
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
1794                 // comes later.
1795                 args = args[1:]
1796                 ignoreDetachFlag = true
1797         }
1798
1799         if err := flags.Parse(args); err == flag.ErrHelp {
1800                 return 0
1801         } else if err != nil {
1802                 log.Print(err)
1803                 return 1
1804         }
1805
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
1809                 // /dev/null).
1810                 err := loadEnv(os.Stdin)
1811                 if err != nil {
1812                         log.Print(err)
1813                         return 1
1814                 }
1815         }
1816
1817         containerID := flags.Arg(0)
1818
1819         switch {
1820         case *detach && !ignoreDetachFlag:
1821                 return Detach(containerID, prog, args, os.Stdout, os.Stderr)
1822         case *kill >= 0:
1823                 return KillProcess(containerID, syscall.Signal(*kill), os.Stdout, os.Stderr)
1824         case *list:
1825                 return ListProcesses(os.Stdout, os.Stderr)
1826         }
1827
1828         if containerID == "" {
1829                 log.Printf("usage: %s [options] UUID", prog)
1830                 return 1
1831         }
1832
1833         log.Printf("crunch-run %s started", cmd.Version.String())
1834         time.Sleep(*sleep)
1835
1836         if *caCertsPath != "" {
1837                 arvadosclient.CertFiles = []string{*caCertsPath}
1838         }
1839
1840         api, err := arvadosclient.MakeArvadosClient()
1841         if err != nil {
1842                 log.Printf("%s: %v", containerID, err)
1843                 return 1
1844         }
1845         api.Retries = 8
1846
1847         kc, kcerr := keepclient.MakeKeepClient(api)
1848         if kcerr != nil {
1849                 log.Printf("%s: %v", containerID, kcerr)
1850                 return 1
1851         }
1852         kc.BlockCache = &keepclient.BlockCache{MaxBlocks: 2}
1853         kc.Retries = 4
1854
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)
1858
1859         cr, err := NewContainerRunner(arvados.NewClientFromEnv(), api, kc, docker, containerID)
1860         if err != nil {
1861                 log.Print(err)
1862                 return 1
1863         }
1864         if dockererr != nil {
1865                 cr.CrunchLog.Printf("%s: %v", containerID, dockererr)
1866                 cr.checkBrokenNode(dockererr)
1867                 cr.CrunchLog.Close()
1868                 return 1
1869         }
1870
1871         parentTemp, tmperr := cr.MkTempDir("", "crunch-run."+containerID+".")
1872         if tmperr != nil {
1873                 log.Printf("%s: %v", containerID, tmperr)
1874                 return 1
1875         }
1876
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
1887         }
1888
1889         runerr := cr.Run()
1890
1891         if *memprofile != "" {
1892                 f, err := os.Create(*memprofile)
1893                 if err != nil {
1894                         log.Printf("could not create memory profile: %s", err)
1895                 }
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)
1899                 }
1900                 closeerr := f.Close()
1901                 if closeerr != nil {
1902                         log.Printf("closing memprofile file: %s", err)
1903                 }
1904         }
1905
1906         if runerr != nil {
1907                 log.Printf("%s: %v", containerID, runerr)
1908                 return 1
1909         }
1910         return 0
1911 }
1912
1913 func loadEnv(rdr io.Reader) error {
1914         buf, err := ioutil.ReadAll(rdr)
1915         if err != nil {
1916                 return fmt.Errorf("read stdin: %s", err)
1917         }
1918         var env map[string]string
1919         err = json.Unmarshal(buf, &env)
1920         if err != nil {
1921                 return fmt.Errorf("decode stdin: %s", err)
1922         }
1923         for k, v := range env {
1924                 err = os.Setenv(k, v)
1925                 if err != nil {
1926                         return fmt.Errorf("setenv(%q): %s", k, err)
1927                 }
1928         }
1929         return nil
1930 }