Merge branch '16313-minimum-container-memory-limit'
[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' or '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 += 1
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         } else {
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
894 func (runner *ContainerRunner) logAPIResponse(label, path string, params map[string]interface{}, munge func(interface{})) (logged bool, err error) {
895         writer, err := runner.LogCollection.OpenFile(label+".json", os.O_CREATE|os.O_WRONLY, 0666)
896         if err != nil {
897                 return false, err
898         }
899         w := &ArvLogWriter{
900                 ArvClient:     runner.DispatcherArvClient,
901                 UUID:          runner.Container.UUID,
902                 loggingStream: label,
903                 writeCloser:   writer,
904         }
905
906         reader, err := runner.DispatcherArvClient.CallRaw("GET", path, "", "", arvadosclient.Dict(params))
907         if err != nil {
908                 return false, fmt.Errorf("error getting %s record: %v", label, err)
909         }
910         defer reader.Close()
911
912         dec := json.NewDecoder(reader)
913         dec.UseNumber()
914         var resp map[string]interface{}
915         if err = dec.Decode(&resp); err != nil {
916                 return false, fmt.Errorf("error decoding %s list response: %v", label, err)
917         }
918         items, ok := resp["items"].([]interface{})
919         if !ok {
920                 return false, fmt.Errorf("error decoding %s list response: no \"items\" key in API list response", label)
921         } else if len(items) < 1 {
922                 return false, nil
923         }
924         if munge != nil {
925                 munge(items[0])
926         }
927         // Re-encode it using indentation to improve readability
928         enc := json.NewEncoder(w)
929         enc.SetIndent("", "    ")
930         if err = enc.Encode(items[0]); err != nil {
931                 return false, fmt.Errorf("error logging %s record: %v", label, err)
932         }
933         err = w.Close()
934         if err != nil {
935                 return false, fmt.Errorf("error closing %s.json in log collection: %v", label, err)
936         }
937         return true, nil
938 }
939
940 // AttachStreams connects the docker container stdin, stdout and stderr logs
941 // to the Arvados logger which logs to Keep and the API server logs table.
942 func (runner *ContainerRunner) AttachStreams() (err error) {
943
944         runner.CrunchLog.Print("Attaching container streams")
945
946         // If stdin mount is provided, attach it to the docker container
947         var stdinRdr arvados.File
948         var stdinJson []byte
949         if stdinMnt, ok := runner.Container.Mounts["stdin"]; ok {
950                 if stdinMnt.Kind == "collection" {
951                         var stdinColl arvados.Collection
952                         collId := stdinMnt.UUID
953                         if collId == "" {
954                                 collId = stdinMnt.PortableDataHash
955                         }
956                         err = runner.ContainerArvClient.Get("collections", collId, nil, &stdinColl)
957                         if err != nil {
958                                 return fmt.Errorf("While getting stdin collection: %v", err)
959                         }
960
961                         stdinRdr, err = runner.ContainerKeepClient.ManifestFileReader(
962                                 manifest.Manifest{Text: stdinColl.ManifestText},
963                                 stdinMnt.Path)
964                         if os.IsNotExist(err) {
965                                 return fmt.Errorf("stdin collection path not found: %v", stdinMnt.Path)
966                         } else if err != nil {
967                                 return fmt.Errorf("While getting stdin collection path %v: %v", stdinMnt.Path, err)
968                         }
969                 } else if stdinMnt.Kind == "json" {
970                         stdinJson, err = json.Marshal(stdinMnt.Content)
971                         if err != nil {
972                                 return fmt.Errorf("While encoding stdin json data: %v", err)
973                         }
974                 }
975         }
976
977         stdinUsed := stdinRdr != nil || len(stdinJson) != 0
978         response, err := runner.Docker.ContainerAttach(context.TODO(), runner.ContainerID,
979                 dockertypes.ContainerAttachOptions{Stream: true, Stdin: stdinUsed, Stdout: true, Stderr: true})
980         if err != nil {
981                 return fmt.Errorf("While attaching container stdout/stderr streams: %v", err)
982         }
983
984         runner.loggingDone = make(chan bool)
985
986         if stdoutMnt, ok := runner.Container.Mounts["stdout"]; ok {
987                 stdoutFile, err := runner.getStdoutFile(stdoutMnt.Path)
988                 if err != nil {
989                         return err
990                 }
991                 runner.Stdout = stdoutFile
992         } else if w, err := runner.NewLogWriter("stdout"); err != nil {
993                 return err
994         } else {
995                 runner.Stdout = NewThrottledLogger(w)
996         }
997
998         if stderrMnt, ok := runner.Container.Mounts["stderr"]; ok {
999                 stderrFile, err := runner.getStdoutFile(stderrMnt.Path)
1000                 if err != nil {
1001                         return err
1002                 }
1003                 runner.Stderr = stderrFile
1004         } else if w, err := runner.NewLogWriter("stderr"); err != nil {
1005                 return err
1006         } else {
1007                 runner.Stderr = NewThrottledLogger(w)
1008         }
1009
1010         if stdinRdr != nil {
1011                 go func() {
1012                         _, err := io.Copy(response.Conn, stdinRdr)
1013                         if err != nil {
1014                                 runner.CrunchLog.Printf("While writing stdin collection to docker container: %v", err)
1015                                 runner.stop(nil)
1016                         }
1017                         stdinRdr.Close()
1018                         response.CloseWrite()
1019                 }()
1020         } else if len(stdinJson) != 0 {
1021                 go func() {
1022                         _, err := io.Copy(response.Conn, bytes.NewReader(stdinJson))
1023                         if err != nil {
1024                                 runner.CrunchLog.Printf("While writing stdin json to docker container: %v", err)
1025                                 runner.stop(nil)
1026                         }
1027                         response.CloseWrite()
1028                 }()
1029         }
1030
1031         go runner.ProcessDockerAttach(response.Reader)
1032
1033         return nil
1034 }
1035
1036 func (runner *ContainerRunner) getStdoutFile(mntPath string) (*os.File, error) {
1037         stdoutPath := mntPath[len(runner.Container.OutputPath):]
1038         index := strings.LastIndex(stdoutPath, "/")
1039         if index > 0 {
1040                 subdirs := stdoutPath[:index]
1041                 if subdirs != "" {
1042                         st, err := os.Stat(runner.HostOutputDir)
1043                         if err != nil {
1044                                 return nil, fmt.Errorf("While Stat on temp dir: %v", err)
1045                         }
1046                         stdoutPath := filepath.Join(runner.HostOutputDir, subdirs)
1047                         err = os.MkdirAll(stdoutPath, st.Mode()|os.ModeSetgid|0777)
1048                         if err != nil {
1049                                 return nil, fmt.Errorf("While MkdirAll %q: %v", stdoutPath, err)
1050                         }
1051                 }
1052         }
1053         stdoutFile, err := os.Create(filepath.Join(runner.HostOutputDir, stdoutPath))
1054         if err != nil {
1055                 return nil, fmt.Errorf("While creating file %q: %v", stdoutPath, err)
1056         }
1057
1058         return stdoutFile, nil
1059 }
1060
1061 // CreateContainer creates the docker container.
1062 func (runner *ContainerRunner) CreateContainer() error {
1063         runner.CrunchLog.Print("Creating Docker container")
1064
1065         runner.ContainerConfig.Cmd = runner.Container.Command
1066         if runner.Container.Cwd != "." {
1067                 runner.ContainerConfig.WorkingDir = runner.Container.Cwd
1068         }
1069
1070         for k, v := range runner.Container.Environment {
1071                 runner.ContainerConfig.Env = append(runner.ContainerConfig.Env, k+"="+v)
1072         }
1073
1074         runner.ContainerConfig.Volumes = runner.Volumes
1075
1076         maxRAM := int64(runner.Container.RuntimeConstraints.RAM)
1077         minDockerRAM := int64(16)
1078         if maxRAM < minDockerRAM*1024*1024 {
1079                 // Docker daemon won't let you set a limit less than ~10 MiB
1080                 maxRAM = minDockerRAM * 1024 * 1024
1081         }
1082         runner.HostConfig = dockercontainer.HostConfig{
1083                 Binds: runner.Binds,
1084                 LogConfig: dockercontainer.LogConfig{
1085                         Type: "none",
1086                 },
1087                 Resources: dockercontainer.Resources{
1088                         CgroupParent: runner.setCgroupParent,
1089                         NanoCPUs:     int64(runner.Container.RuntimeConstraints.VCPUs) * 1000000000,
1090                         Memory:       maxRAM, // RAM
1091                         MemorySwap:   maxRAM, // RAM+swap
1092                         KernelMemory: maxRAM, // kernel portion
1093                 },
1094         }
1095
1096         if wantAPI := runner.Container.RuntimeConstraints.API; wantAPI != nil && *wantAPI {
1097                 tok, err := runner.ContainerToken()
1098                 if err != nil {
1099                         return err
1100                 }
1101                 runner.ContainerConfig.Env = append(runner.ContainerConfig.Env,
1102                         "ARVADOS_API_TOKEN="+tok,
1103                         "ARVADOS_API_HOST="+os.Getenv("ARVADOS_API_HOST"),
1104                         "ARVADOS_API_HOST_INSECURE="+os.Getenv("ARVADOS_API_HOST_INSECURE"),
1105                 )
1106                 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode(runner.networkMode)
1107         } else {
1108                 if runner.enableNetwork == "always" {
1109                         runner.HostConfig.NetworkMode = dockercontainer.NetworkMode(runner.networkMode)
1110                 } else {
1111                         runner.HostConfig.NetworkMode = dockercontainer.NetworkMode("none")
1112                 }
1113         }
1114
1115         _, stdinUsed := runner.Container.Mounts["stdin"]
1116         runner.ContainerConfig.OpenStdin = stdinUsed
1117         runner.ContainerConfig.StdinOnce = stdinUsed
1118         runner.ContainerConfig.AttachStdin = stdinUsed
1119         runner.ContainerConfig.AttachStdout = true
1120         runner.ContainerConfig.AttachStderr = true
1121
1122         createdBody, err := runner.Docker.ContainerCreate(context.TODO(), &runner.ContainerConfig, &runner.HostConfig, nil, runner.Container.UUID)
1123         if err != nil {
1124                 return fmt.Errorf("While creating container: %v", err)
1125         }
1126
1127         runner.ContainerID = createdBody.ID
1128
1129         return runner.AttachStreams()
1130 }
1131
1132 // StartContainer starts the docker container created by CreateContainer.
1133 func (runner *ContainerRunner) StartContainer() error {
1134         runner.CrunchLog.Printf("Starting Docker container id '%s'", runner.ContainerID)
1135         runner.cStateLock.Lock()
1136         defer runner.cStateLock.Unlock()
1137         if runner.cCancelled {
1138                 return ErrCancelled
1139         }
1140         err := runner.Docker.ContainerStart(context.TODO(), runner.ContainerID,
1141                 dockertypes.ContainerStartOptions{})
1142         if err != nil {
1143                 var advice string
1144                 if m, e := regexp.MatchString("(?ms).*(exec|System error).*(no such file or directory|file not found).*", err.Error()); m && e == nil {
1145                         advice = fmt.Sprintf("\nPossible causes: command %q is missing, the interpreter given in #! is missing, or script has Windows line endings.", runner.Container.Command[0])
1146                 }
1147                 return fmt.Errorf("could not start container: %v%s", err, advice)
1148         }
1149         return nil
1150 }
1151
1152 // WaitFinish waits for the container to terminate, capture the exit code, and
1153 // close the stdout/stderr logging.
1154 func (runner *ContainerRunner) WaitFinish() error {
1155         var runTimeExceeded <-chan time.Time
1156         runner.CrunchLog.Print("Waiting for container to finish")
1157
1158         waitOk, waitErr := runner.Docker.ContainerWait(context.TODO(), runner.ContainerID, dockercontainer.WaitConditionNotRunning)
1159         arvMountExit := runner.ArvMountExit
1160         if timeout := runner.Container.SchedulingParameters.MaxRunTime; timeout > 0 {
1161                 runTimeExceeded = time.After(time.Duration(timeout) * time.Second)
1162         }
1163
1164         containerGone := make(chan struct{})
1165         go func() {
1166                 defer close(containerGone)
1167                 if runner.containerWatchdogInterval < 1 {
1168                         runner.containerWatchdogInterval = time.Minute
1169                 }
1170                 for range time.NewTicker(runner.containerWatchdogInterval).C {
1171                         ctx, cancel := context.WithDeadline(context.Background(), time.Now().Add(runner.containerWatchdogInterval))
1172                         ctr, err := runner.Docker.ContainerInspect(ctx, runner.ContainerID)
1173                         cancel()
1174                         runner.cStateLock.Lock()
1175                         done := runner.cRemoved || runner.ExitCode != nil
1176                         runner.cStateLock.Unlock()
1177                         if done {
1178                                 return
1179                         } else if err != nil {
1180                                 runner.CrunchLog.Printf("Error inspecting container: %s", err)
1181                                 runner.checkBrokenNode(err)
1182                                 return
1183                         } else if ctr.State == nil || !(ctr.State.Running || ctr.State.Status == "created") {
1184                                 runner.CrunchLog.Printf("Container is not running: State=%v", ctr.State)
1185                                 return
1186                         }
1187                 }
1188         }()
1189
1190         for {
1191                 select {
1192                 case waitBody := <-waitOk:
1193                         runner.CrunchLog.Printf("Container exited with code: %v", waitBody.StatusCode)
1194                         code := int(waitBody.StatusCode)
1195                         runner.ExitCode = &code
1196
1197                         // wait for stdout/stderr to complete
1198                         <-runner.loggingDone
1199                         return nil
1200
1201                 case err := <-waitErr:
1202                         return fmt.Errorf("container wait: %v", err)
1203
1204                 case <-arvMountExit:
1205                         runner.CrunchLog.Printf("arv-mount exited while container is still running.  Stopping container.")
1206                         runner.stop(nil)
1207                         // arvMountExit will always be ready now that
1208                         // it's closed, but that doesn't interest us.
1209                         arvMountExit = nil
1210
1211                 case <-runTimeExceeded:
1212                         runner.CrunchLog.Printf("maximum run time exceeded. Stopping container.")
1213                         runner.stop(nil)
1214                         runTimeExceeded = nil
1215
1216                 case <-containerGone:
1217                         return errors.New("docker client never returned status")
1218                 }
1219         }
1220 }
1221
1222 func (runner *ContainerRunner) updateLogs() {
1223         ticker := time.NewTicker(crunchLogUpdatePeriod / 360)
1224         defer ticker.Stop()
1225
1226         sigusr1 := make(chan os.Signal, 1)
1227         signal.Notify(sigusr1, syscall.SIGUSR1)
1228         defer signal.Stop(sigusr1)
1229
1230         saveAtTime := time.Now().Add(crunchLogUpdatePeriod)
1231         saveAtSize := crunchLogUpdateSize
1232         var savedSize int64
1233         for {
1234                 select {
1235                 case <-ticker.C:
1236                 case <-sigusr1:
1237                         saveAtTime = time.Now()
1238                 }
1239                 runner.logMtx.Lock()
1240                 done := runner.LogsPDH != nil
1241                 runner.logMtx.Unlock()
1242                 if done {
1243                         return
1244                 }
1245                 size := runner.LogCollection.Size()
1246                 if size == savedSize || (time.Now().Before(saveAtTime) && size < saveAtSize) {
1247                         continue
1248                 }
1249                 saveAtTime = time.Now().Add(crunchLogUpdatePeriod)
1250                 saveAtSize = runner.LogCollection.Size() + crunchLogUpdateSize
1251                 saved, err := runner.saveLogCollection(false)
1252                 if err != nil {
1253                         runner.CrunchLog.Printf("error updating log collection: %s", err)
1254                         continue
1255                 }
1256
1257                 var updated arvados.Container
1258                 err = runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{
1259                         "container": arvadosclient.Dict{"log": saved.PortableDataHash},
1260                 }, &updated)
1261                 if err != nil {
1262                         runner.CrunchLog.Printf("error updating container log to %s: %s", saved.PortableDataHash, err)
1263                         continue
1264                 }
1265
1266                 savedSize = size
1267         }
1268 }
1269
1270 // CaptureOutput saves data from the container's output directory if
1271 // needed, and updates the container output accordingly.
1272 func (runner *ContainerRunner) CaptureOutput() error {
1273         if wantAPI := runner.Container.RuntimeConstraints.API; wantAPI != nil && *wantAPI {
1274                 // Output may have been set directly by the container, so
1275                 // refresh the container record to check.
1276                 err := runner.DispatcherArvClient.Get("containers", runner.Container.UUID,
1277                         nil, &runner.Container)
1278                 if err != nil {
1279                         return err
1280                 }
1281                 if runner.Container.Output != "" {
1282                         // Container output is already set.
1283                         runner.OutputPDH = &runner.Container.Output
1284                         return nil
1285                 }
1286         }
1287
1288         txt, err := (&copier{
1289                 client:        runner.containerClient,
1290                 arvClient:     runner.ContainerArvClient,
1291                 keepClient:    runner.ContainerKeepClient,
1292                 hostOutputDir: runner.HostOutputDir,
1293                 ctrOutputDir:  runner.Container.OutputPath,
1294                 binds:         runner.Binds,
1295                 mounts:        runner.Container.Mounts,
1296                 secretMounts:  runner.SecretMounts,
1297                 logger:        runner.CrunchLog,
1298         }).Copy()
1299         if err != nil {
1300                 return err
1301         }
1302         if n := len(regexp.MustCompile(` [0-9a-f]+\+\S*\+R`).FindAllStringIndex(txt, -1)); n > 0 {
1303                 runner.CrunchLog.Printf("Copying %d data blocks from remote input collections...", n)
1304                 fs, err := (&arvados.Collection{ManifestText: txt}).FileSystem(runner.containerClient, runner.ContainerKeepClient)
1305                 if err != nil {
1306                         return err
1307                 }
1308                 txt, err = fs.MarshalManifest(".")
1309                 if err != nil {
1310                         return err
1311                 }
1312         }
1313         var resp arvados.Collection
1314         err = runner.ContainerArvClient.Create("collections", arvadosclient.Dict{
1315                 "ensure_unique_name": true,
1316                 "collection": arvadosclient.Dict{
1317                         "is_trashed":    true,
1318                         "name":          "output for " + runner.Container.UUID,
1319                         "manifest_text": txt,
1320                 },
1321         }, &resp)
1322         if err != nil {
1323                 return fmt.Errorf("error creating output collection: %v", err)
1324         }
1325         runner.OutputPDH = &resp.PortableDataHash
1326         return nil
1327 }
1328
1329 func (runner *ContainerRunner) CleanupDirs() {
1330         if runner.ArvMount != nil {
1331                 var delay int64 = 8
1332                 umount := exec.Command("arv-mount", fmt.Sprintf("--unmount-timeout=%d", delay), "--unmount", runner.ArvMountPoint)
1333                 umount.Stdout = runner.CrunchLog
1334                 umount.Stderr = runner.CrunchLog
1335                 runner.CrunchLog.Printf("Running %v", umount.Args)
1336                 umnterr := umount.Start()
1337
1338                 if umnterr != nil {
1339                         runner.CrunchLog.Printf("Error unmounting: %v", umnterr)
1340                 } else {
1341                         // If arv-mount --unmount gets stuck for any reason, we
1342                         // don't want to wait for it forever.  Do Wait() in a goroutine
1343                         // so it doesn't block crunch-run.
1344                         umountExit := make(chan error)
1345                         go func() {
1346                                 mnterr := umount.Wait()
1347                                 if mnterr != nil {
1348                                         runner.CrunchLog.Printf("Error unmounting: %v", mnterr)
1349                                 }
1350                                 umountExit <- mnterr
1351                         }()
1352
1353                         for again := true; again; {
1354                                 again = false
1355                                 select {
1356                                 case <-umountExit:
1357                                         umount = nil
1358                                         again = true
1359                                 case <-runner.ArvMountExit:
1360                                         break
1361                                 case <-time.After(time.Duration((delay + 1) * int64(time.Second))):
1362                                         runner.CrunchLog.Printf("Timed out waiting for unmount")
1363                                         if umount != nil {
1364                                                 umount.Process.Kill()
1365                                         }
1366                                         runner.ArvMount.Process.Kill()
1367                                 }
1368                         }
1369                 }
1370         }
1371
1372         if runner.ArvMountPoint != "" {
1373                 if rmerr := os.Remove(runner.ArvMountPoint); rmerr != nil {
1374                         runner.CrunchLog.Printf("While cleaning up arv-mount directory %s: %v", runner.ArvMountPoint, rmerr)
1375                 }
1376         }
1377
1378         if rmerr := os.RemoveAll(runner.parentTemp); rmerr != nil {
1379                 runner.CrunchLog.Printf("While cleaning up temporary directory %s: %v", runner.parentTemp, rmerr)
1380         }
1381 }
1382
1383 // CommitLogs posts the collection containing the final container logs.
1384 func (runner *ContainerRunner) CommitLogs() error {
1385         func() {
1386                 // Hold cStateLock to prevent races on CrunchLog (e.g., stop()).
1387                 runner.cStateLock.Lock()
1388                 defer runner.cStateLock.Unlock()
1389
1390                 runner.CrunchLog.Print(runner.finalState)
1391
1392                 if runner.arvMountLog != nil {
1393                         runner.arvMountLog.Close()
1394                 }
1395                 runner.CrunchLog.Close()
1396
1397                 // Closing CrunchLog above allows them to be committed to Keep at this
1398                 // point, but re-open crunch log with ArvClient in case there are any
1399                 // other further errors (such as failing to write the log to Keep!)
1400                 // while shutting down
1401                 runner.CrunchLog = NewThrottledLogger(&ArvLogWriter{
1402                         ArvClient:     runner.DispatcherArvClient,
1403                         UUID:          runner.Container.UUID,
1404                         loggingStream: "crunch-run",
1405                         writeCloser:   nil,
1406                 })
1407                 runner.CrunchLog.Immediate = log.New(os.Stderr, runner.Container.UUID+" ", 0)
1408         }()
1409
1410         if runner.LogsPDH != nil {
1411                 // If we have already assigned something to LogsPDH,
1412                 // we must be closing the re-opened log, which won't
1413                 // end up getting attached to the container record and
1414                 // therefore doesn't need to be saved as a collection
1415                 // -- it exists only to send logs to other channels.
1416                 return nil
1417         }
1418         saved, err := runner.saveLogCollection(true)
1419         if err != nil {
1420                 return fmt.Errorf("error saving log collection: %s", err)
1421         }
1422         runner.logMtx.Lock()
1423         defer runner.logMtx.Unlock()
1424         runner.LogsPDH = &saved.PortableDataHash
1425         return nil
1426 }
1427
1428 func (runner *ContainerRunner) saveLogCollection(final bool) (response arvados.Collection, err error) {
1429         runner.logMtx.Lock()
1430         defer runner.logMtx.Unlock()
1431         if runner.LogsPDH != nil {
1432                 // Already finalized.
1433                 return
1434         }
1435         mt, err := runner.LogCollection.MarshalManifest(".")
1436         if err != nil {
1437                 err = fmt.Errorf("error creating log manifest: %v", err)
1438                 return
1439         }
1440         updates := arvadosclient.Dict{
1441                 "name":          "logs for " + runner.Container.UUID,
1442                 "manifest_text": mt,
1443         }
1444         if final {
1445                 updates["is_trashed"] = true
1446         } else {
1447                 exp := time.Now().Add(crunchLogUpdatePeriod * 24)
1448                 updates["trash_at"] = exp
1449                 updates["delete_at"] = exp
1450         }
1451         reqBody := arvadosclient.Dict{"collection": updates}
1452         if runner.logUUID == "" {
1453                 reqBody["ensure_unique_name"] = true
1454                 err = runner.DispatcherArvClient.Create("collections", reqBody, &response)
1455         } else {
1456                 err = runner.DispatcherArvClient.Update("collections", runner.logUUID, reqBody, &response)
1457         }
1458         if err != nil {
1459                 return
1460         }
1461         runner.logUUID = response.UUID
1462         return
1463 }
1464
1465 // UpdateContainerRunning updates the container state to "Running"
1466 func (runner *ContainerRunner) UpdateContainerRunning() error {
1467         runner.cStateLock.Lock()
1468         defer runner.cStateLock.Unlock()
1469         if runner.cCancelled {
1470                 return ErrCancelled
1471         }
1472         return runner.DispatcherArvClient.Update("containers", runner.Container.UUID,
1473                 arvadosclient.Dict{"container": arvadosclient.Dict{"state": "Running"}}, nil)
1474 }
1475
1476 // ContainerToken returns the api_token the container (and any
1477 // arv-mount processes) are allowed to use.
1478 func (runner *ContainerRunner) ContainerToken() (string, error) {
1479         if runner.token != "" {
1480                 return runner.token, nil
1481         }
1482
1483         var auth arvados.APIClientAuthorization
1484         err := runner.DispatcherArvClient.Call("GET", "containers", runner.Container.UUID, "auth", nil, &auth)
1485         if err != nil {
1486                 return "", err
1487         }
1488         runner.token = fmt.Sprintf("v2/%s/%s/%s", auth.UUID, auth.APIToken, runner.Container.UUID)
1489         return runner.token, nil
1490 }
1491
1492 // UpdateContainerComplete updates the container record state on API
1493 // server to "Complete" or "Cancelled"
1494 func (runner *ContainerRunner) UpdateContainerFinal() error {
1495         update := arvadosclient.Dict{}
1496         update["state"] = runner.finalState
1497         if runner.LogsPDH != nil {
1498                 update["log"] = *runner.LogsPDH
1499         }
1500         if runner.finalState == "Complete" {
1501                 if runner.ExitCode != nil {
1502                         update["exit_code"] = *runner.ExitCode
1503                 }
1504                 if runner.OutputPDH != nil {
1505                         update["output"] = *runner.OutputPDH
1506                 }
1507         }
1508         return runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{"container": update}, nil)
1509 }
1510
1511 // IsCancelled returns the value of Cancelled, with goroutine safety.
1512 func (runner *ContainerRunner) IsCancelled() bool {
1513         runner.cStateLock.Lock()
1514         defer runner.cStateLock.Unlock()
1515         return runner.cCancelled
1516 }
1517
1518 // NewArvLogWriter creates an ArvLogWriter
1519 func (runner *ContainerRunner) NewArvLogWriter(name string) (io.WriteCloser, error) {
1520         writer, err := runner.LogCollection.OpenFile(name+".txt", os.O_CREATE|os.O_WRONLY, 0666)
1521         if err != nil {
1522                 return nil, err
1523         }
1524         return &ArvLogWriter{
1525                 ArvClient:     runner.DispatcherArvClient,
1526                 UUID:          runner.Container.UUID,
1527                 loggingStream: name,
1528                 writeCloser:   writer,
1529         }, nil
1530 }
1531
1532 // Run the full container lifecycle.
1533 func (runner *ContainerRunner) Run() (err error) {
1534         runner.CrunchLog.Printf("crunch-run %s started", cmd.Version.String())
1535         runner.CrunchLog.Printf("Executing container '%s'", runner.Container.UUID)
1536
1537         hostname, hosterr := os.Hostname()
1538         if hosterr != nil {
1539                 runner.CrunchLog.Printf("Error getting hostname '%v'", hosterr)
1540         } else {
1541                 runner.CrunchLog.Printf("Executing on host '%s'", hostname)
1542         }
1543
1544         runner.finalState = "Queued"
1545
1546         defer func() {
1547                 runner.CleanupDirs()
1548
1549                 runner.CrunchLog.Printf("crunch-run finished")
1550                 runner.CrunchLog.Close()
1551         }()
1552
1553         err = runner.fetchContainerRecord()
1554         if err != nil {
1555                 return
1556         }
1557         if runner.Container.State != "Locked" {
1558                 return fmt.Errorf("dispatch error detected: container %q has state %q", runner.Container.UUID, runner.Container.State)
1559         }
1560
1561         defer func() {
1562                 // checkErr prints e (unless it's nil) and sets err to
1563                 // e (unless err is already non-nil). Thus, if err
1564                 // hasn't already been assigned when Run() returns,
1565                 // this cleanup func will cause Run() to return the
1566                 // first non-nil error that is passed to checkErr().
1567                 checkErr := func(errorIn string, e error) {
1568                         if e == nil {
1569                                 return
1570                         }
1571                         runner.CrunchLog.Printf("error in %s: %v", errorIn, e)
1572                         if err == nil {
1573                                 err = e
1574                         }
1575                         if runner.finalState == "Complete" {
1576                                 // There was an error in the finalization.
1577                                 runner.finalState = "Cancelled"
1578                         }
1579                 }
1580
1581                 // Log the error encountered in Run(), if any
1582                 checkErr("Run", err)
1583
1584                 if runner.finalState == "Queued" {
1585                         runner.UpdateContainerFinal()
1586                         return
1587                 }
1588
1589                 if runner.IsCancelled() {
1590                         runner.finalState = "Cancelled"
1591                         // but don't return yet -- we still want to
1592                         // capture partial output and write logs
1593                 }
1594
1595                 checkErr("CaptureOutput", runner.CaptureOutput())
1596                 checkErr("stopHoststat", runner.stopHoststat())
1597                 checkErr("CommitLogs", runner.CommitLogs())
1598                 checkErr("UpdateContainerFinal", runner.UpdateContainerFinal())
1599         }()
1600
1601         runner.setupSignals()
1602         err = runner.startHoststat()
1603         if err != nil {
1604                 return
1605         }
1606
1607         // check for and/or load image
1608         err = runner.LoadImage()
1609         if err != nil {
1610                 if !runner.checkBrokenNode(err) {
1611                         // Failed to load image but not due to a "broken node"
1612                         // condition, probably user error.
1613                         runner.finalState = "Cancelled"
1614                 }
1615                 err = fmt.Errorf("While loading container image: %v", err)
1616                 return
1617         }
1618
1619         // set up FUSE mount and binds
1620         err = runner.SetupMounts()
1621         if err != nil {
1622                 runner.finalState = "Cancelled"
1623                 err = fmt.Errorf("While setting up mounts: %v", err)
1624                 return
1625         }
1626
1627         err = runner.CreateContainer()
1628         if err != nil {
1629                 return
1630         }
1631         err = runner.LogHostInfo()
1632         if err != nil {
1633                 return
1634         }
1635         err = runner.LogNodeRecord()
1636         if err != nil {
1637                 return
1638         }
1639         err = runner.LogContainerRecord()
1640         if err != nil {
1641                 return
1642         }
1643
1644         if runner.IsCancelled() {
1645                 return
1646         }
1647
1648         err = runner.UpdateContainerRunning()
1649         if err != nil {
1650                 return
1651         }
1652         runner.finalState = "Cancelled"
1653
1654         err = runner.startCrunchstat()
1655         if err != nil {
1656                 return
1657         }
1658
1659         err = runner.StartContainer()
1660         if err != nil {
1661                 runner.checkBrokenNode(err)
1662                 return
1663         }
1664
1665         err = runner.WaitFinish()
1666         if err == nil && !runner.IsCancelled() {
1667                 runner.finalState = "Complete"
1668         }
1669         return
1670 }
1671
1672 // Fetch the current container record (uuid = runner.Container.UUID)
1673 // into runner.Container.
1674 func (runner *ContainerRunner) fetchContainerRecord() error {
1675         reader, err := runner.DispatcherArvClient.CallRaw("GET", "containers", runner.Container.UUID, "", nil)
1676         if err != nil {
1677                 return fmt.Errorf("error fetching container record: %v", err)
1678         }
1679         defer reader.Close()
1680
1681         dec := json.NewDecoder(reader)
1682         dec.UseNumber()
1683         err = dec.Decode(&runner.Container)
1684         if err != nil {
1685                 return fmt.Errorf("error decoding container record: %v", err)
1686         }
1687
1688         var sm struct {
1689                 SecretMounts map[string]arvados.Mount `json:"secret_mounts"`
1690         }
1691
1692         containerToken, err := runner.ContainerToken()
1693         if err != nil {
1694                 return fmt.Errorf("error getting container token: %v", err)
1695         }
1696
1697         runner.ContainerArvClient, runner.ContainerKeepClient,
1698                 runner.containerClient, err = runner.MkArvClient(containerToken)
1699         if err != nil {
1700                 return fmt.Errorf("error creating container API client: %v", err)
1701         }
1702
1703         err = runner.ContainerArvClient.Call("GET", "containers", runner.Container.UUID, "secret_mounts", nil, &sm)
1704         if err != nil {
1705                 if apierr, ok := err.(arvadosclient.APIServerError); !ok || apierr.HttpStatusCode != 404 {
1706                         return fmt.Errorf("error fetching secret_mounts: %v", err)
1707                 }
1708                 // ok && apierr.HttpStatusCode == 404, which means
1709                 // secret_mounts isn't supported by this API server.
1710         }
1711         runner.SecretMounts = sm.SecretMounts
1712
1713         return nil
1714 }
1715
1716 // NewContainerRunner creates a new container runner.
1717 func NewContainerRunner(dispatcherClient *arvados.Client,
1718         dispatcherArvClient IArvadosClient,
1719         dispatcherKeepClient IKeepClient,
1720         docker ThinDockerClient,
1721         containerUUID string) (*ContainerRunner, error) {
1722
1723         cr := &ContainerRunner{
1724                 dispatcherClient:     dispatcherClient,
1725                 DispatcherArvClient:  dispatcherArvClient,
1726                 DispatcherKeepClient: dispatcherKeepClient,
1727                 Docker:               docker,
1728         }
1729         cr.NewLogWriter = cr.NewArvLogWriter
1730         cr.RunArvMount = cr.ArvMountCmd
1731         cr.MkTempDir = ioutil.TempDir
1732         cr.MkArvClient = func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error) {
1733                 cl, err := arvadosclient.MakeArvadosClient()
1734                 if err != nil {
1735                         return nil, nil, nil, err
1736                 }
1737                 cl.ApiToken = token
1738                 kc, err := keepclient.MakeKeepClient(cl)
1739                 if err != nil {
1740                         return nil, nil, nil, err
1741                 }
1742                 c2 := arvados.NewClientFromEnv()
1743                 c2.AuthToken = token
1744                 return cl, kc, c2, nil
1745         }
1746         var err error
1747         cr.LogCollection, err = (&arvados.Collection{}).FileSystem(cr.dispatcherClient, cr.DispatcherKeepClient)
1748         if err != nil {
1749                 return nil, err
1750         }
1751         cr.Container.UUID = containerUUID
1752         w, err := cr.NewLogWriter("crunch-run")
1753         if err != nil {
1754                 return nil, err
1755         }
1756         cr.CrunchLog = NewThrottledLogger(w)
1757         cr.CrunchLog.Immediate = log.New(os.Stderr, containerUUID+" ", 0)
1758
1759         loadLogThrottleParams(dispatcherArvClient)
1760         go cr.updateLogs()
1761
1762         return cr, nil
1763 }
1764
1765 func (command) RunCommand(prog string, args []string, stdin io.Reader, stdout, stderr io.Writer) int {
1766         flags := flag.NewFlagSet(prog, flag.ContinueOnError)
1767         statInterval := flags.Duration("crunchstat-interval", 10*time.Second, "sampling period for periodic resource usage reporting")
1768         cgroupRoot := flags.String("cgroup-root", "/sys/fs/cgroup", "path to sysfs cgroup tree")
1769         cgroupParent := flags.String("cgroup-parent", "docker", "name of container's parent cgroup (ignored if -cgroup-parent-subsystem is used)")
1770         cgroupParentSubsystem := flags.String("cgroup-parent-subsystem", "", "use current cgroup for given subsystem as parent cgroup for container")
1771         caCertsPath := flags.String("ca-certs", "", "Path to TLS root certificates")
1772         detach := flags.Bool("detach", false, "Detach from parent process and run in the background")
1773         stdinEnv := flags.Bool("stdin-env", false, "Load environment variables from JSON message on stdin")
1774         sleep := flags.Duration("sleep", 0, "Delay before starting (testing use only)")
1775         kill := flags.Int("kill", -1, "Send signal to an existing crunch-run process for given UUID")
1776         list := flags.Bool("list", false, "List UUIDs of existing crunch-run processes")
1777         enableNetwork := flags.String("container-enable-networking", "default",
1778                 `Specify if networking should be enabled for container.  One of 'default', 'always':
1779         default: only enable networking if container requests it.
1780         always:  containers always have networking enabled
1781         `)
1782         networkMode := flags.String("container-network-mode", "default",
1783                 `Set networking mode for container.  Corresponds to Docker network mode (--net).
1784         `)
1785         memprofile := flags.String("memprofile", "", "write memory profile to `file` after running container")
1786         flags.Duration("check-containerd", 0, "Ignored. Exists for compatibility with older versions.")
1787
1788         ignoreDetachFlag := false
1789         if len(args) > 0 && args[0] == "-no-detach" {
1790                 // This process was invoked by a parent process, which
1791                 // has passed along its own arguments, including
1792                 // -detach, after the leading -no-detach flag.  Strip
1793                 // the leading -no-detach flag (it's not recognized by
1794                 // flags.Parse()) and ignore the -detach flag that
1795                 // comes later.
1796                 args = args[1:]
1797                 ignoreDetachFlag = true
1798         }
1799
1800         if err := flags.Parse(args); err == flag.ErrHelp {
1801                 return 0
1802         } else if err != nil {
1803                 log.Print(err)
1804                 return 1
1805         }
1806
1807         if *stdinEnv && !ignoreDetachFlag {
1808                 // Load env vars on stdin if asked (but not in a
1809                 // detached child process, in which case stdin is
1810                 // /dev/null).
1811                 err := loadEnv(os.Stdin)
1812                 if err != nil {
1813                         log.Print(err)
1814                         return 1
1815                 }
1816         }
1817
1818         containerId := flags.Arg(0)
1819
1820         switch {
1821         case *detach && !ignoreDetachFlag:
1822                 return Detach(containerId, prog, args, os.Stdout, os.Stderr)
1823         case *kill >= 0:
1824                 return KillProcess(containerId, syscall.Signal(*kill), os.Stdout, os.Stderr)
1825         case *list:
1826                 return ListProcesses(os.Stdout, os.Stderr)
1827         }
1828
1829         if containerId == "" {
1830                 log.Printf("usage: %s [options] UUID", prog)
1831                 return 1
1832         }
1833
1834         log.Printf("crunch-run %s started", cmd.Version.String())
1835         time.Sleep(*sleep)
1836
1837         if *caCertsPath != "" {
1838                 arvadosclient.CertFiles = []string{*caCertsPath}
1839         }
1840
1841         api, err := arvadosclient.MakeArvadosClient()
1842         if err != nil {
1843                 log.Printf("%s: %v", containerId, err)
1844                 return 1
1845         }
1846         api.Retries = 8
1847
1848         kc, kcerr := keepclient.MakeKeepClient(api)
1849         if kcerr != nil {
1850                 log.Printf("%s: %v", containerId, kcerr)
1851                 return 1
1852         }
1853         kc.BlockCache = &keepclient.BlockCache{MaxBlocks: 2}
1854         kc.Retries = 4
1855
1856         // API version 1.21 corresponds to Docker 1.9, which is currently the
1857         // minimum version we want to support.
1858         docker, dockererr := dockerclient.NewClient(dockerclient.DefaultDockerHost, "1.21", nil, nil)
1859
1860         cr, err := NewContainerRunner(arvados.NewClientFromEnv(), api, kc, docker, containerId)
1861         if err != nil {
1862                 log.Print(err)
1863                 return 1
1864         }
1865         if dockererr != nil {
1866                 cr.CrunchLog.Printf("%s: %v", containerId, dockererr)
1867                 cr.checkBrokenNode(dockererr)
1868                 cr.CrunchLog.Close()
1869                 return 1
1870         }
1871
1872         parentTemp, tmperr := cr.MkTempDir("", "crunch-run."+containerId+".")
1873         if tmperr != nil {
1874                 log.Printf("%s: %v", containerId, tmperr)
1875                 return 1
1876         }
1877
1878         cr.parentTemp = parentTemp
1879         cr.statInterval = *statInterval
1880         cr.cgroupRoot = *cgroupRoot
1881         cr.expectCgroupParent = *cgroupParent
1882         cr.enableNetwork = *enableNetwork
1883         cr.networkMode = *networkMode
1884         if *cgroupParentSubsystem != "" {
1885                 p := findCgroup(*cgroupParentSubsystem)
1886                 cr.setCgroupParent = p
1887                 cr.expectCgroupParent = p
1888         }
1889
1890         runerr := cr.Run()
1891
1892         if *memprofile != "" {
1893                 f, err := os.Create(*memprofile)
1894                 if err != nil {
1895                         log.Printf("could not create memory profile: %s", err)
1896                 }
1897                 runtime.GC() // get up-to-date statistics
1898                 if err := pprof.WriteHeapProfile(f); err != nil {
1899                         log.Printf("could not write memory profile: %s", err)
1900                 }
1901                 closeerr := f.Close()
1902                 if closeerr != nil {
1903                         log.Printf("closing memprofile file: %s", err)
1904                 }
1905         }
1906
1907         if runerr != nil {
1908                 log.Printf("%s: %v", containerId, runerr)
1909                 return 1
1910         }
1911         return 0
1912 }
1913
1914 func loadEnv(rdr io.Reader) error {
1915         buf, err := ioutil.ReadAll(rdr)
1916         if err != nil {
1917                 return fmt.Errorf("read stdin: %s", err)
1918         }
1919         var env map[string]string
1920         err = json.Unmarshal(buf, &env)
1921         if err != nil {
1922                 return fmt.Errorf("decode stdin: %s", err)
1923         }
1924         for k, v := range env {
1925                 err = os.Setenv(k, v)
1926                 if err != nil {
1927                         return fmt.Errorf("setenv(%q): %s", k, err)
1928                 }
1929         }
1930         return nil
1931 }