forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
host.go
190 lines (175 loc) · 5.6 KB
/
host.go
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
package host
import (
"fmt"
"path"
"strings"
"github.com/docker/engine-api/types"
"github.com/golang/glog"
"github.com/openshift/origin/pkg/bootstrap/docker/dockerhelper"
"github.com/openshift/origin/pkg/bootstrap/docker/errors"
"github.com/openshift/origin/pkg/bootstrap/docker/run"
)
const (
cmdTestNsenterMount = "nsenter --mount=/rootfs/proc/1/ns/mnt findmnt"
cmdEnsureHostDirs = `#/bin/bash
for dir in %s; do
if [ ! -d "${dir}" ]; then
mkdir -p "${dir}"
fi
done
`
ensureVolumeShareCmd = `#/bin/bash
nsenter --mount=/rootfs/proc/1/ns/mnt mkdir -p %[1]s
grep -F %[1]s /rootfs/proc/1/mountinfo || nsenter --mount=/rootfs/proc/1/ns/mnt mount -o bind %[1]s %[1]s
grep -F %[1]s /rootfs/proc/1/mountinfo | grep shared || nsenter --mount=/rootfs/proc/1/ns/mnt mount --make-shared %[1]s
`
DefaultVolumesDir = "/var/lib/origin/openshift.local.volumes"
DefaultConfigDir = "/var/lib/origin/openshift.local.config"
DefaultPersistentVolumesDir = "/var/lib/origin/openshift.local.pv"
)
// HostHelper contains methods to help check settings on a Docker host machine
// using a privileged container
type HostHelper struct {
client dockerhelper.Interface
runHelper *run.RunHelper
image string
volumesDir string
configDir string
dataDir string
persistentVolumesDir string
}
// NewHostHelper creates a new HostHelper
func NewHostHelper(dockerHelper *dockerhelper.Helper, image, volumesDir, configDir, dataDir, pvDir string) *HostHelper {
return &HostHelper{
runHelper: run.NewRunHelper(dockerHelper),
client: dockerHelper.Client(),
image: image,
volumesDir: volumesDir,
configDir: configDir,
dataDir: dataDir,
persistentVolumesDir: pvDir,
}
}
// CanUseNsenterMounter returns true if the Docker host machine can execute findmnt through nsenter
func (h *HostHelper) CanUseNsenterMounter() (bool, error) {
rc, err := h.runner().
Image(h.image).
DiscardContainer().
Privileged().
Bind("/:/rootfs:ro").
Entrypoint("/bin/bash").
Command("-c", cmdTestNsenterMount).Run()
return err == nil && rc == 0, nil
}
// EnsureVolumeShare ensures that the host Docker machine has a shared directory that can be used
// for OpenShift volumes
func (h *HostHelper) EnsureVolumeShare() error {
cmd := fmt.Sprintf(ensureVolumeShareCmd, h.volumesDir)
rc, err := h.runner().
Image(h.image).
DiscardContainer().
HostPid().
Privileged().
Bind("/proc:/rootfs/proc:ro").
Entrypoint("/bin/bash").
Command("-c", cmd).Run()
if err != nil || rc != 0 {
return errors.NewError("cannot create volume share").WithCause(err)
}
return nil
}
func (h *HostHelper) defaultBinds() []string {
return []string{fmt.Sprintf("%s:/var/lib/origin/openshift.local.config:z", h.configDir)}
}
// DownloadDirFromContainer copies a set of files from the Docker host to the local file system
func (h *HostHelper) DownloadDirFromContainer(sourceDir, destDir string) error {
container, err := h.runner().
Image(h.image).
Bind(h.defaultBinds()...).
Entrypoint("/bin/true").
Create()
if err != nil {
return err
}
defer func() {
errors.LogError(h.client.ContainerRemove(container, types.ContainerRemoveOptions{}))
}()
err = dockerhelper.DownloadDirFromContainer(h.client, container, sourceDir, destDir)
if err != nil {
glog.V(4).Infof("An error occurred downloading the directory: %v", err)
} else {
glog.V(4).Infof("Successfully downloaded directory.")
}
return err
}
// UploadFileToContainer copies a local file to the Docker host
func (h *HostHelper) UploadFileToContainer(src, dst string) error {
container, err := h.runner().
Image(h.image).
Bind(h.defaultBinds()...).
Entrypoint("/bin/true").
Create()
if err != nil {
return err
}
defer func() {
errors.LogError(h.client.ContainerRemove(container, types.ContainerRemoveOptions{}))
}()
err = dockerhelper.UploadFileToContainer(h.client, container, src, dst)
if err != nil {
glog.V(4).Infof("An error occurred uploading the file: %v", err)
} else {
glog.V(4).Infof("Successfully uploaded file.")
}
return err
}
// Hostname retrieves the FQDN of the Docker host machine
func (h *HostHelper) Hostname() (string, error) {
hostname, _, _, err := h.runner().
Image(h.image).
HostNetwork().
HostPid().
DiscardContainer().
Privileged().
Entrypoint("/bin/bash").
Command("-c", "uname -n").Output()
if err != nil {
return "", err
}
return strings.ToLower(strings.TrimSpace(hostname)), nil
}
func (h *HostHelper) EnsureHostDirectories(createVolumeShare bool) error {
// Attempt to create host directories only if they are
// the default directories. If the user specifies them, then the
// user is responsible for ensuring they exist, are mountable, etc.
dirs := []string{}
if h.configDir == DefaultConfigDir {
dirs = append(dirs, path.Join("/rootfs", h.configDir))
}
if h.volumesDir == DefaultVolumesDir {
dirs = append(dirs, path.Join("/rootfs", h.volumesDir))
}
if h.persistentVolumesDir == DefaultPersistentVolumesDir {
dirs = append(dirs, path.Join("/rootfs", h.persistentVolumesDir))
}
if len(dirs) > 0 {
cmd := fmt.Sprintf(cmdEnsureHostDirs, strings.Join(dirs, " "))
rc, err := h.runner().
Image(h.image).
DiscardContainer().
Privileged().
Bind("/var:/rootfs/var:z").
Entrypoint("/bin/bash").
Command("-c", cmd).Run()
if err != nil || rc != 0 {
return errors.NewError("cannot create host volumes directory").WithCause(err)
}
}
if createVolumeShare {
return h.EnsureVolumeShare()
}
return nil
}
func (h *HostHelper) runner() *run.Runner {
return h.runHelper.New()
}