forked from UKHomeOffice/vault-sidekick
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
171 lines (149 loc) · 4.52 KB
/
main.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
/*
Copyright 2015 Home Office All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"encoding/json"
"fmt"
"os"
"os/signal"
"sync"
"syscall"
"time"
"github.com/golang/glog"
"github.com/UKHomeOffice/vault-sidekick/metrics"
)
var (
prog = "vault-sidekick"
release = "v0.3.10"
gitsha = ""
)
func main() {
version := fmt.Sprintf("%s (git+sha %s)", release, gitsha)
// step: parse and validate the command line / environment options
if err := parseOptions(); err != nil {
showUsage("invalid options, %s", err)
}
if options.showVersion {
fmt.Printf("%s %s\n", prog, version)
return
}
glog.Infof("starting the %s, %s", prog, version)
// Don't initialise metrics in one-shot mode.
if options.oneShot {
glog.Infof("running in one-shot mode")
} else {
metrics.Init(options.vaultAuthOptions.RoleID, options.metricsPort)
}
// step: create a client to vault
vault, err := NewVaultService(options.vaultURL)
if err != nil {
showUsage("unable to create the vault client: %s", err)
}
// step: create a channel to receive events upon and add our resources for renewal
updates := make(chan VaultEvent, 10)
vault.AddListener(updates)
expiryUpdates := make(chan VaultEvent, 10)
vault.AddListener(expiryUpdates)
// Start a background worker which listens for resource updates and reports expiry metrics.
go reportExpiryMetrics(expiryUpdates)
// step: create a channel to receive events and keep the metrics
// collector data in sync
metricUpdates := make(chan VaultEvent, 10)
vault.AddListener(metricUpdates)
// step: setup the termination signals
signalChannel := make(chan os.Signal)
signal.Notify(signalChannel, syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT)
// step: add each of the resources to the service processor
for _, rn := range options.resources.items {
if err := rn.IsValid(); err != nil {
showUsage("%s", err)
}
vault.Watch(rn)
}
toProcess := options.resources.items
toProcessLock := &sync.Mutex{}
failedResource := false
if options.oneShot && len(toProcess) == 0 {
glog.Infof("nothing to retrieve from vault. exiting...")
os.Exit(0)
}
// step: we simply wait for events i.e. secrets from vault and write them to the output directory
for {
select {
case evt := <-updates:
glog.V(10).Infof("recieved an update from the resource: %s", evt.Resource)
go func(r VaultEvent) {
toProcessLock.Lock()
defer toProcessLock.Unlock()
switch r.Type {
case EventTypeSuccess:
if err := processResource(evt.Resource, evt.Secret); err != nil {
glog.Errorf("failed to write out the update, error: %s", err)
}
if options.oneShot {
for i, r := range toProcess {
if evt.Resource == r {
toProcess = append(toProcess[:i], toProcess[i+1:]...)
}
}
}
case EventTypeFailure:
if evt.Resource.MaxRetries > 0 && evt.Resource.MaxRetries < evt.Resource.Retries {
for i, r := range toProcess {
if evt.Resource == r {
toProcess = append(toProcess[:i], toProcess[i+1:]...)
failedResource = true
}
}
}
}
if len(toProcess) == 0 {
glog.Infof("no resources left to process. exiting...")
if failedResource {
os.Exit(1)
} else {
os.Exit(0)
}
}
}(evt)
case <-signalChannel:
glog.Infof("recieved a termination signal, shutting down the service")
os.Exit(0)
}
}
}
// reportExpiryMetrics takes a channel of VaultEvents, and reports expiry metrics on every successful renewal event.
func reportExpiryMetrics(updates chan VaultEvent) {
for {
select {
case event := <-updates:
if event.Type == EventTypeFailure {
continue
}
if event.Resource.Resource != "pki" {
continue
}
expirationJSON, ok := event.Secret["expiration"].(json.Number)
if !ok {
metrics.Error("no_expiration_in_pki_resource")
continue
}
expiration, err := expirationJSON.Int64()
if err != nil {
metrics.Error("expiration_not_int64")
continue
}
metrics.ResourceExpiry(event.Resource.ID(), time.Unix(expiration, 0))
}
}
}