forked from cloudfoundry/bosh-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dummy_platform.go
340 lines (273 loc) · 8.39 KB
/
dummy_platform.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
package platform
import (
"encoding/json"
"path"
boshdpresolv "github.com/cloudfoundry/bosh-agent/infrastructure/devicepathresolver"
boshcert "github.com/cloudfoundry/bosh-agent/platform/cert"
boshstats "github.com/cloudfoundry/bosh-agent/platform/stats"
boshvitals "github.com/cloudfoundry/bosh-agent/platform/vitals"
boshsettings "github.com/cloudfoundry/bosh-agent/settings"
boshdir "github.com/cloudfoundry/bosh-agent/settings/directories"
boshdirs "github.com/cloudfoundry/bosh-agent/settings/directories"
bosherr "github.com/cloudfoundry/bosh-utils/errors"
boshcmd "github.com/cloudfoundry/bosh-utils/fileutil"
boshlog "github.com/cloudfoundry/bosh-utils/logger"
boshsys "github.com/cloudfoundry/bosh-utils/system"
)
type mount struct {
MountDir string
DiskCid string
}
type diskMigration struct {
FromDiskCid string
ToDiskCid string
}
type dummyPlatform struct {
collector boshstats.Collector
fs boshsys.FileSystem
cmdRunner boshsys.CmdRunner
compressor boshcmd.Compressor
copier boshcmd.Copier
dirProvider boshdirs.Provider
vitalsService boshvitals.Service
devicePathResolver boshdpresolv.DevicePathResolver
logger boshlog.Logger
certManager boshcert.Manager
}
func NewDummyPlatform(
collector boshstats.Collector,
fs boshsys.FileSystem,
cmdRunner boshsys.CmdRunner,
dirProvider boshdirs.Provider,
devicePathResolver boshdpresolv.DevicePathResolver,
logger boshlog.Logger,
) Platform {
return &dummyPlatform{
fs: fs,
cmdRunner: cmdRunner,
collector: collector,
compressor: boshcmd.NewTarballCompressor(cmdRunner, fs),
copier: boshcmd.NewCpCopier(cmdRunner, fs, logger),
dirProvider: dirProvider,
devicePathResolver: devicePathResolver,
vitalsService: boshvitals.NewService(collector, dirProvider),
certManager: boshcert.NewDummyCertManager(fs, cmdRunner, 0, logger),
}
}
func (p dummyPlatform) GetFs() (fs boshsys.FileSystem) {
return p.fs
}
func (p dummyPlatform) GetRunner() (runner boshsys.CmdRunner) {
return p.cmdRunner
}
func (p dummyPlatform) GetCompressor() (compressor boshcmd.Compressor) {
return p.compressor
}
func (p dummyPlatform) GetCopier() (copier boshcmd.Copier) {
return p.copier
}
func (p dummyPlatform) GetDirProvider() (dirProvider boshdir.Provider) {
return p.dirProvider
}
func (p dummyPlatform) GetVitalsService() (service boshvitals.Service) {
return p.vitalsService
}
func (p dummyPlatform) GetDevicePathResolver() (devicePathResolver boshdpresolv.DevicePathResolver) {
return p.devicePathResolver
}
func (p dummyPlatform) SetupRuntimeConfiguration() (err error) {
return
}
func (p dummyPlatform) CreateUser(username, password, basePath string) (err error) {
return
}
func (p dummyPlatform) AddUserToGroups(username string, groups []string) (err error) {
return
}
func (p dummyPlatform) DeleteEphemeralUsersMatching(regex string) (err error) {
return
}
func (p dummyPlatform) SetupRootDisk(ephemeralDiskPath string) (err error) {
return
}
func (p dummyPlatform) SetupSSH(publicKey, username string) (err error) {
return
}
func (p dummyPlatform) SetUserPassword(user, encryptedPwd string) (err error) {
return
}
func (p dummyPlatform) SetupHostname(hostname string) (err error) {
return
}
func (p dummyPlatform) SetupNetworking(networks boshsettings.Networks) (err error) {
return
}
func (p dummyPlatform) GetConfiguredNetworkInterfaces() (interfaces []string, err error) {
return
}
func (p dummyPlatform) GetCertManager() (certManager boshcert.Manager) {
return p.certManager
}
func (p dummyPlatform) SetupLogrotate(groupName, basePath, size string) (err error) {
return
}
func (p dummyPlatform) SetTimeWithNtpServers(servers []string) (err error) {
return
}
func (p dummyPlatform) SetupEphemeralDiskWithPath(devicePath string) (err error) {
return
}
func (p dummyPlatform) SetupRawEphemeralDisks(devices []boshsettings.DiskSettings) (err error) {
return
}
func (p dummyPlatform) SetupDataDir() error {
return nil
}
func (p dummyPlatform) SetupTmpDir() error {
return nil
}
func (p dummyPlatform) MountPersistentDisk(diskSettings boshsettings.DiskSettings, mountPoint string) error {
mounts, err := p.existingMounts()
if err != nil {
return err
}
mounts = append(mounts, mount{MountDir: mountPoint, DiskCid: diskSettings.ID})
mountsJSON, err := json.Marshal(mounts)
if err != nil {
return err
}
return p.fs.WriteFile(p.mountsPath(), mountsJSON)
}
func (p dummyPlatform) UnmountPersistentDisk(diskSettings boshsettings.DiskSettings) (didUnmount bool, err error) {
mounts, err := p.existingMounts()
if err != nil {
return false, err
}
var updatedMounts []mount
for _, mount := range mounts {
if mount.DiskCid != diskSettings.ID {
updatedMounts = append(updatedMounts, mount)
}
}
updatedMountsJSON, err := json.Marshal(updatedMounts)
if err != nil {
return false, err
}
err = p.fs.WriteFile(p.mountsPath(), updatedMountsJSON)
if err != nil {
return false, err
}
return true, nil
}
func (p dummyPlatform) GetEphemeralDiskPath(diskSettings boshsettings.DiskSettings) string {
return "/dev/sdb"
}
func (p dummyPlatform) GetFileContentsFromCDROM(filePath string) (contents []byte, err error) {
return
}
func (p dummyPlatform) GetFilesContentsFromDisk(diskPath string, fileNames []string) (contents [][]byte, err error) {
return
}
func (p dummyPlatform) MigratePersistentDisk(fromMountPoint, toMountPoint string) (err error) {
diskMigrationsPath := path.Join(p.dirProvider.BoshDir(), "disk_migrations.json")
var diskMigrations []diskMigration
if p.fs.FileExists(diskMigrationsPath) {
bytes, err := p.fs.ReadFile(diskMigrationsPath)
if err != nil {
return err
}
err = json.Unmarshal(bytes, &diskMigrations)
if err != nil {
return err
}
}
mounts, err := p.existingMounts()
if err != nil {
return err
}
fromDiskCid := p.getDiskCidByMountPoint(fromMountPoint, mounts)
toDiskCid := p.getDiskCidByMountPoint(toMountPoint, mounts)
diskMigrations = append(diskMigrations, diskMigration{FromDiskCid: fromDiskCid, ToDiskCid: toDiskCid})
diskMigrationsJSON, err := json.Marshal(diskMigrations)
if err != nil {
return err
}
return p.fs.WriteFile(diskMigrationsPath, diskMigrationsJSON)
}
func (p dummyPlatform) IsMountPoint(mountPointPath string) (partitionPath string, result bool, err error) {
mounts, err := p.existingMounts()
if err != nil {
return "", false, err
}
for _, mount := range mounts {
if mount.MountDir == mountPointPath {
return "", true, nil
}
}
return "", false, nil
}
func (p dummyPlatform) IsPersistentDiskMounted(diskSettings boshsettings.DiskSettings) (bool, error) {
return true, nil
}
func (p dummyPlatform) IsPersistentDiskMountable(diskSettings boshsettings.DiskSettings) (bool, error) {
return false, nil
}
func (p dummyPlatform) StartMonit() (err error) {
return
}
func (p dummyPlatform) SetupMonitUser() (err error) {
return
}
func (p dummyPlatform) GetMonitCredentials() (username, password string, err error) {
return
}
func (p dummyPlatform) PrepareForNetworkingChange() error {
return nil
}
func (p dummyPlatform) CleanIPMacAddressCache(ip string) error {
return nil
}
func (p dummyPlatform) GetDefaultNetwork() (boshsettings.Network, error) {
var network boshsettings.Network
networkPath := path.Join(p.dirProvider.BoshDir(), "dummy-default-network-settings.json")
contents, err := p.fs.ReadFile(networkPath)
if err != nil {
return network, nil
}
err = json.Unmarshal([]byte(contents), &network)
if err != nil {
return network, bosherr.WrapError(err, "Unmarshal json settings")
}
return network, nil
}
func (p dummyPlatform) GetHostPublicKey() (string, error) {
return "dummy-public-key", nil
}
func (p dummyPlatform) RemoveDevTools(packageFileListPath string) error {
return nil
}
func (p dummyPlatform) getDiskCidByMountPoint(mountPoint string, mounts []mount) string {
var diskCid string
for _, mount := range mounts {
if mount.MountDir == mountPoint {
diskCid = mount.DiskCid
}
}
return diskCid
}
func (p dummyPlatform) mountsPath() string {
return path.Join(p.dirProvider.BoshDir(), "mounts.json")
}
func (p dummyPlatform) existingMounts() ([]mount, error) {
mountsPath := p.mountsPath()
var mounts []mount
if !p.fs.FileExists(mountsPath) {
return mounts, nil
}
bytes, err := p.fs.ReadFile(mountsPath)
if err != nil {
return mounts, err
}
err = json.Unmarshal(bytes, &mounts)
return mounts, err
}