summaryrefslogtreecommitdiff
path: root/cmd/podman/umount.go
blob: 1e364b48f6bc0678d6c1fe2364a9f72fdaa5ebce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package main

import (
	"fmt"

	"github.com/containers/storage"
	"github.com/pkg/errors"
	"github.com/projectatomic/libpod/cmd/podman/libpodruntime"
	"github.com/projectatomic/libpod/libpod"
	"github.com/sirupsen/logrus"
	"github.com/urfave/cli"
)

var (
	umountFlags = []cli.Flag{
		cli.BoolFlag{
			Name:  "all, a",
			Usage: "umount all of the currently mounted containers",
		},
		cli.BoolFlag{
			Name:  "force, f",
			Usage: "force the complete umount all of the currently mounted containers",
		},
	}

	description = `
Container storage increments a mount counter each time a container is mounted.
When a container is unmounted, the mount counter is decremented and the
container's root filesystem is physically unmounted only when the mount
counter reaches zero indicating no other processes are using the mount.
An unmount can be forced with the --force flag.
`
	umountCommand = cli.Command{
		Name:        "umount",
		Aliases:     []string{"unmount"},
		Usage:       "Unmounts working container's root filesystem",
		Description: description,
		Flags:       umountFlags,
		Action:      umountCmd,
		ArgsUsage:   "CONTAINER-NAME-OR-ID",
	}
)

func umountCmd(c *cli.Context) error {
	runtime, err := libpodruntime.GetRuntime(c)
	if err != nil {
		return errors.Wrapf(err, "could not get runtime")
	}
	defer runtime.Shutdown(false)

	force := c.Bool("force")
	umountAll := c.Bool("all")
	args := c.Args()
	if len(args) == 0 && !umountAll {
		return errors.Errorf("container ID must be specified")
	}
	if len(args) > 0 && umountAll {
		return errors.Errorf("when using the --all switch, you may not pass any container IDs")
	}

	umountContainerErrStr := "error unmounting container"
	var lastError error
	if len(args) > 0 {
		for _, name := range args {
			ctr, err := runtime.LookupContainer(name)
			if err != nil {
				if lastError != nil {
					logrus.Error(lastError)
				}
				lastError = errors.Wrapf(err, "%s %s", umountContainerErrStr, name)
				continue
			}

			if err = ctr.Unmount(force); err != nil {
				if lastError != nil {
					logrus.Error(lastError)
				}
				lastError = errors.Wrapf(err, "%s %s", umountContainerErrStr, name)
				continue
			}
			fmt.Printf("%s\n", ctr.ID())
		}
	} else {
		containers, err := runtime.GetContainers()
		if err != nil {
			return errors.Wrapf(err, "error reading Containers")
		}
		for _, ctr := range containers {
			ctrState, err := ctr.State()
			if ctrState == libpod.ContainerStateRunning || err != nil {
				continue
			}

			if err = ctr.Unmount(force); err != nil {
				if umountAll && errors.Cause(err) == storage.ErrLayerNotMounted {
					continue
				}
				if lastError != nil {
					logrus.Error(lastError)
				}
				lastError = errors.Wrapf(err, "%s %s", umountContainerErrStr, ctr.ID())
				continue
			}
			fmt.Printf("%s\n", ctr.ID())
		}
	}
	return lastError
}