forked from cloudfoundry/bosh-agent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dummy_platform.go
493 lines (391 loc) · 12.3 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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
package platform
import (
"bytes"
"encoding/json"
"fmt"
"os"
"path/filepath"
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 formattedDisk struct {
DiskCid string
}
type diskMigration struct {
FromDiskCid string
ToDiskCid string
}
const CredentialFileName = "password"
const EtcHostsFileName = "etc_hosts"
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
auditLogger AuditLogger
}
func NewDummyPlatform(
collector boshstats.Collector,
fs boshsys.FileSystem,
cmdRunner boshsys.CmdRunner,
dirProvider boshdirs.Provider,
devicePathResolver boshdpresolv.DevicePathResolver,
logger boshlog.Logger,
auditLogger AuditLogger,
) Platform {
return &dummyPlatform{
fs: fs,
cmdRunner: cmdRunner,
collector: collector,
compressor: boshcmd.NewTarballCompressor(cmdRunner, fs),
copier: boshcmd.NewGenericCpCopier(fs, logger),
dirProvider: dirProvider,
devicePathResolver: devicePathResolver,
vitalsService: boshvitals.NewService(collector, dirProvider),
certManager: boshcert.NewDummyCertManager(fs, cmdRunner, 0, logger),
logger: logger,
auditLogger: auditLogger,
}
}
func (p dummyPlatform) GetFs() (fs boshsys.FileSystem) {
return p.fs
}
func (p dummyPlatform) GetAuditLogger() AuditLogger {
return p.auditLogger
}
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, 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 []string, username string) (err error) {
return
}
func (p dummyPlatform) SetUserPassword(user, encryptedPwd string) (err error) {
credentialsPath := filepath.Join(p.dirProvider.BoshDir(), user, CredentialFileName)
return p.fs.WriteFileString(credentialsPath, encryptedPwd)
}
func (p dummyPlatform) SaveDNSRecords(dnsRecords boshsettings.DNSRecords, hostname string) (err error) {
etcHostsPath := filepath.Join(p.dirProvider.BoshDir(), EtcHostsFileName)
dnsRecordsContents := bytes.NewBuffer([]byte{})
for _, dnsRecord := range dnsRecords.Records {
dnsRecordsContents.WriteString(fmt.Sprintf("%s %s\n", dnsRecord[0], dnsRecord[1]))
}
return p.fs.WriteFileString(etcHostsPath, dnsRecordsContents.String())
}
func (p dummyPlatform) SetupIPv6(config boshsettings.IPv6) error {
return nil
}
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, desiredSwapSizeInBytes *uint64) (err error) {
return
}
func (p dummyPlatform) SetupRawEphemeralDisks(devices []boshsettings.DiskSettings) (err error) {
return
}
func (p dummyPlatform) SetupDataDir() error {
dataDir := p.dirProvider.DataDir()
sysDataDir := filepath.Join(dataDir, "sys")
logDir := filepath.Join(sysDataDir, "log")
err := p.fs.MkdirAll(logDir, logDirPermissions)
if err != nil {
return bosherr.WrapErrorf(err, "Making %s dir", logDir)
}
sysDir := filepath.Join(filepath.Dir(dataDir), "sys")
err = p.fs.Symlink(sysDataDir, sysDir)
if err != nil {
return bosherr.WrapErrorf(err, "Symlinking '%s' to '%s'", sysDir, sysDataDir)
}
return nil
}
func (p dummyPlatform) SetupTmpDir() error {
return nil
}
func (p dummyPlatform) SetupHomeDir() error {
return nil
}
func (p dummyPlatform) SetupLogDir() error {
return nil
}
func (p dummyPlatform) SetupBlobsDir() error {
blobsDir := p.dirProvider.BlobsDir()
if err := p.fs.MkdirAll(blobsDir, blobsDirPermissions); err != nil {
return bosherr.WrapErrorf(err, "Making %s dir", blobsDir)
}
return nil
}
func (p dummyPlatform) SetupLoggingAndAuditing() error {
return nil
}
func (p dummyPlatform) MountPersistentDisk(diskSettings boshsettings.DiskSettings, mountPoint string) error {
mounts, err := p.existingMounts()
if err != nil {
return err
}
_, isMountPoint, err := p.IsMountPoint(mountPoint)
if err != nil {
return err
}
managedSettingsPath := filepath.Join(p.dirProvider.BoshDir(), "managed_disk_settings.json")
if isMountPoint {
currentManagedDisk, err := p.fs.ReadFileString(managedSettingsPath)
if err != nil {
return err
}
if diskSettings.ID == currentManagedDisk {
return nil
}
mountPoint = p.dirProvider.StoreMigrationDir()
}
newlyFormattedDisk := []formattedDisk{{DiskCid: diskSettings.ID}}
diskJSON, err := json.Marshal(newlyFormattedDisk)
if err != nil {
return err
}
p.fs.WriteFile(filepath.Join(p.dirProvider.BoshDir(), "formatted_disks.json"), diskJSON)
mounts = append(mounts, mount{MountDir: mountPoint, DiskCid: diskSettings.ID})
mountsJSON, err := json.Marshal(mounts)
if err != nil {
return err
}
p.fs.WriteFileString(managedSettingsPath, diskSettings.ID)
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 := filepath.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) {
var formattedDisks []formattedDisk
formattedDisksPath := filepath.Join(p.dirProvider.BoshDir(), "formatted_disks.json")
if p.fs.FileExists(formattedDisksPath) {
bytes, err := p.fs.ReadFile(formattedDisksPath)
if err != nil {
return false, err
}
json.Unmarshal(bytes, &formattedDisks)
for _, disk := range formattedDisks {
if diskSettings.ID == disk.DiskCid {
return true, nil
}
}
}
return false, nil
}
func (p dummyPlatform) AssociateDisk(name string, settings boshsettings.DiskSettings) error {
diskAssocsPath := filepath.Join(p.dirProvider.BoshDir(), "disk_associations.json")
diskNames := []string{}
bytes, err := p.fs.ReadFile(diskAssocsPath)
if err != nil {
err, ok := err.(bosherr.ComplexError)
if !ok {
return bosherr.WrapError(err, "Associating Disk: ")
} else if !os.IsNotExist(err.Cause) {
return bosherr.WrapError(err, "Associating Disk: ")
}
} else if err == nil {
json.Unmarshal(bytes, &diskNames)
}
diskNames = append(diskNames, name)
contents, err := json.Marshal(diskNames)
if err != nil {
return err
}
return p.fs.WriteFile(diskAssocsPath, contents)
}
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) DeleteARPEntryWithIP(ip string) error {
return nil
}
func (p dummyPlatform) GetDefaultNetwork() (boshsettings.Network, error) {
var network boshsettings.Network
networkPath := filepath.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) RemoveStaticLibraries(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 filepath.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
}
func (p dummyPlatform) SetupRecordsJSONPermission(path string) error {
return nil
}