forked from cloudfoundry/bosh-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sync_dns_with_signed_url.go
133 lines (109 loc) · 3.71 KB
/
sync_dns_with_signed_url.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
package action
import (
"encoding/json"
"errors"
"fmt"
"path/filepath"
"sync"
"github.com/cloudfoundry/bosh-agent/agent/action/state"
blobdelegator "github.com/cloudfoundry/bosh-agent/agent/httpblobprovider/blobstore_delegator"
boshplat "github.com/cloudfoundry/bosh-agent/platform"
boshsettings "github.com/cloudfoundry/bosh-agent/settings"
boshcrypto "github.com/cloudfoundry/bosh-utils/crypto"
bosherr "github.com/cloudfoundry/bosh-utils/errors"
boshlog "github.com/cloudfoundry/bosh-utils/logger"
boshuuid "github.com/cloudfoundry/bosh-utils/uuid"
)
type SyncDNSWithSignedURLRequest struct {
SignedURL string `json:"signed_url"`
MultiDigest boshcrypto.MultipleDigest `json:"multi_digest"`
Version uint64 `json:"version"`
Headers map[string]string `json:"headers"`
}
type SyncDNSWithSignedURL struct {
blobDelegator blobdelegator.BlobstoreDelegator
settingsService boshsettings.Service
platform boshplat.Platform
logger boshlog.Logger
logTag string
lock *sync.Mutex
}
func NewSyncDNSWithSignedURL(
settingsService boshsettings.Service,
platform boshplat.Platform,
logger boshlog.Logger,
bd blobdelegator.BlobstoreDelegator) (action SyncDNSWithSignedURL) {
action.settingsService = settingsService
action.platform = platform
action.logger = logger
action.lock = &sync.Mutex{}
action.logTag = "SyncDNSWithSignedURL"
action.blobDelegator = bd
return
}
func (a SyncDNSWithSignedURL) IsAsynchronous(_ ProtocolVersion) bool {
return false
}
func (a SyncDNSWithSignedURL) IsPersistent() bool {
return false
}
func (a SyncDNSWithSignedURL) IsLoggable() bool {
return true
}
func (a SyncDNSWithSignedURL) Resume() (interface{}, error) {
return nil, errors.New("not supported")
}
func (a SyncDNSWithSignedURL) Cancel() error {
return errors.New("not supported")
}
func (a SyncDNSWithSignedURL) Run(request SyncDNSWithSignedURLRequest) (string, error) {
if !a.needsUpdateWithLock(request.Version) {
return "synced", nil
}
filePath, err := a.blobDelegator.Get(request.MultiDigest, request.SignedURL, "", request.Headers)
if err != nil {
return "", bosherr.WrapError(err, "fetching new DNS records")
}
fs := a.platform.GetFs()
defer func() {
err = fs.RemoveAll(filePath)
if err != nil {
a.logger.Error(a.logTag, fmt.Sprintf("Failed to remove dns blob file at path '%s'", filePath))
}
}()
contents, err := fs.ReadFile(filePath)
if err != nil {
return "", bosherr.WrapErrorf(err, "reading %s from blobstore", filePath)
}
a.lock.Lock()
defer a.lock.Unlock()
syncDNSState := a.createSyncDNSState()
if !syncDNSState.NeedsUpdate(request.Version) {
return "synced", nil
}
dnsRecords := boshsettings.DNSRecords{}
if err := json.Unmarshal(contents, &dnsRecords); err != nil {
return "", bosherr.WrapError(err, "unmarshalling DNS records")
}
if dnsRecords.Version != request.Version {
return "", bosherr.Error("version from unpacked dns blob does not match version supplied by director")
}
err = a.platform.SaveDNSRecords(dnsRecords, a.settingsService.GetSettings().AgentID)
if err != nil {
return "", bosherr.WrapError(err, "saving DNS records")
}
err = syncDNSState.SaveState(contents)
if err != nil {
return "", bosherr.WrapError(err, "saving local DNS state")
}
return "synced", nil
}
func (a SyncDNSWithSignedURL) createSyncDNSState() state.SyncDNSState {
stateFilePath := filepath.Join(a.platform.GetDirProvider().InstanceDNSDir(), localDNSStateFilename)
return state.NewSyncDNSState(a.platform, stateFilePath, boshuuid.NewGenerator())
}
func (a SyncDNSWithSignedURL) needsUpdateWithLock(version uint64) bool {
a.lock.Lock()
defer a.lock.Unlock()
return a.createSyncDNSState().NeedsUpdate(version)
}