aboutsummaryrefslogtreecommitdiff
path: root/cmd/kpod/mount.go
blob: 4a68621ac1cebfc7ede6cf5dd728149496ffba91 (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
109
110
111
112
113
114
115
116
117
118
119
120
121
package main

import (
	js "encoding/json"
	"fmt"

	of "github.com/projectatomic/libpod/cmd/kpod/formats"
	"github.com/pkg/errors"
	"github.com/urfave/cli"
)

var (
	mountDescription = `
   kpod mount
   Lists all mounted containers mount points

   kpod mount CONTAINER-NAME-OR-ID
   Mounts the specified container and outputs the mountpoint
`

	mountFlags = []cli.Flag{
		cli.BoolFlag{
			Name:  "notruncate",
			Usage: "do not truncate output",
		},
		cli.StringFlag{
			Name:  "label",
			Usage: "SELinux label for the mount point",
		},
		cli.StringFlag{
			Name:  "format",
			Usage: "Change the output format to Go template",
		},
	}
	mountCommand = cli.Command{
		Name:        "mount",
		Usage:       "Mount a working container's root filesystem",
		Description: mountDescription,
		Action:      mountCmd,
		ArgsUsage:   "[CONTAINER-NAME-OR-ID]",
		Flags:       mountFlags,
	}
)

// MountOutputParams stores info about each layer
type jsonMountPoint struct {
	ID         string   `json:"id"`
	Names      []string `json:"names"`
	MountPoint string   `json:"mountpoint"`
}

func mountCmd(c *cli.Context) error {
	formats := map[string]bool{
		"":            true,
		of.JSONString: true,
	}

	args := c.Args()
	json := c.String("format") == of.JSONString
	if !formats[c.String("format")] {
		return errors.Errorf("%q is not a supported format", c.String("format"))
	}

	if len(args) > 1 {
		return errors.Errorf("too many arguments specified")
	}
	if err := validateFlags(c, mountFlags); err != nil {
		return err
	}
	config, err := getConfig(c)
	if err != nil {
		return errors.Wrapf(err, "Could not get config")
	}
	store, err := getStore(config)
	if err != nil {
		return errors.Wrapf(err, "error getting store")
	}
	if len(args) == 1 {
		if json {
			return errors.Wrapf(err, "json option can not be used with a container id")
		}
		mountPoint, err := store.Mount(args[0], c.String("label"))
		if err != nil {
			return errors.Wrapf(err, "error finding container %q", args[0])
		}
		fmt.Printf("%s\n", mountPoint)
	} else {
		jsonMountPoints := []jsonMountPoint{}
		containers, err2 := store.Containers()
		if err2 != nil {
			return errors.Wrapf(err2, "error reading list of all containers")
		}
		for _, container := range containers {
			layer, err := store.Layer(container.LayerID)
			if err != nil {
				return errors.Wrapf(err, "error finding layer %q for container %q", container.LayerID, container.ID)
			}
			if layer.MountPoint == "" {
				continue
			}
			if json {
				jsonMountPoints = append(jsonMountPoints, jsonMountPoint{ID: container.ID, Names: container.Names, MountPoint: layer.MountPoint})
				continue
			}

			if c.Bool("notruncate") {
				fmt.Printf("%-64s %s\n", container.ID, layer.MountPoint)
			} else {
				fmt.Printf("%-12.12s %s\n", container.ID, layer.MountPoint)
			}
		}
		if json {
			data, err := js.MarshalIndent(jsonMountPoints, "", "    ")
			if err != nil {
				return err
			}
			fmt.Printf("%s\n", data)
		}
	}
	return nil
}