open-vault/api/renewer.go

281 lines
6.7 KiB
Go
Raw Normal View History

2017-06-20 04:34:11 +00:00
package api
import (
"errors"
2017-06-26 21:21:58 +00:00
"math/rand"
2017-06-20 04:34:11 +00:00
"sync"
"time"
)
2017-06-26 21:21:58 +00:00
func init() {
// Seed the random generator
rand.Seed(time.Now().Unix())
}
2017-06-20 22:57:34 +00:00
var (
ErrRenewerMissingInput = errors.New("missing input to renewer")
ErrRenewerMissingSecret = errors.New("missing secret to renew")
ErrRenewerNotRenewable = errors.New("secret is not renewable")
ErrRenewerNoSecretData = errors.New("returned empty secret data")
2017-06-20 04:34:11 +00:00
2017-06-20 22:57:34 +00:00
// DefaultRenewerGrace is the default grace period
DefaultRenewerGrace = 15 * time.Second
)
2017-06-20 04:34:11 +00:00
// Renewer is a process for renewing a secret.
//
// renewer, err := client.NewRenewer(&RenewerInput{
// Secret: mySecret,
// })
// go renewer.Renew()
// defer renewer.Stop()
//
// for {
// select {
// case err := <-DoneCh():
// if err != nil {
// log.Fatal(err)
// }
//
// // Renewal is now over
2017-06-20 23:06:08 +00:00
// case renewal := <-RenewCh():
// log.Printf("Successfully renewed: %#v", renewal)
2017-06-20 04:34:11 +00:00
// default:
// }
// }
//
//
// The `DoneCh` will return if renewal fails or if the remaining lease duration
// after a renewal is less than or equal to the grace (in number of seconds). In
// both cases, the caller should attempt a re-read of the secret. Clients should
// check the return value of the channel to see if renewal was successful.
type Renewer struct {
sync.Mutex
2017-06-20 23:06:08 +00:00
client *Client
secret *Secret
grace time.Duration
doneCh chan error
renewCh chan *RenewOutput
2017-06-20 04:34:11 +00:00
stopped bool
stopCh chan struct{}
}
2017-06-20 22:57:34 +00:00
// RenewerInput is used as input to the renew function.
type RenewerInput struct {
// Secret is the secret to renew
Secret *Secret
2017-06-20 04:34:11 +00:00
2017-06-20 22:57:34 +00:00
// Grace is a minimum renewal (in seconds) before returring so the upstream
// client can do a re-read. This can be used to prevent clients from waiting
// too long to read a new credential and incur downtime.
Grace time.Duration
}
2017-06-20 04:34:11 +00:00
2017-06-20 23:06:08 +00:00
// RenewOutput is the metadata returned to the client (if it's listening) to
// renew messages.
type RenewOutput struct {
// RenewedAt is the timestamp when the renewal took place (UTC).
RenewedAt time.Time
// Secret is the underlying renewal data. It's the same struct as all data
// that is returned from Vault, but since this is renewal data, it will not
// usually include the secret itself.
Secret *Secret
}
2017-06-20 04:34:11 +00:00
// NewRenewer creates a new renewer from the given input.
func (c *Client) NewRenewer(i *RenewerInput) (*Renewer, error) {
if i == nil {
return nil, ErrRenewerMissingInput
}
secret := i.Secret
if secret == nil {
return nil, ErrRenewerMissingSecret
}
grace := i.Grace
if grace == 0 {
grace = DefaultRenewerGrace
}
return &Renewer{
2017-06-20 23:06:08 +00:00
client: c,
secret: secret,
grace: grace,
doneCh: make(chan error),
renewCh: make(chan *RenewOutput, 5),
2017-06-20 04:34:11 +00:00
stopped: false,
2017-06-20 22:57:05 +00:00
stopCh: make(chan struct{}),
2017-06-20 04:34:11 +00:00
}, nil
}
// DoneCh returns the channel where the renewer will publish when renewal stops.
// If there is an error, this will be an error.
func (r *Renewer) DoneCh() <-chan error {
return r.doneCh
}
2017-06-20 23:06:08 +00:00
// RenewCh is a channel that receives a message when a successful renewal takes
// place and includes metadata about the renewal.
func (r *Renewer) RenewCh() <-chan *RenewOutput {
return r.renewCh
2017-06-20 04:34:11 +00:00
}
// Stop stops the renewer.
func (r *Renewer) Stop() {
r.Lock()
if !r.stopped {
close(r.stopCh)
r.stopped = true
}
r.Unlock()
}
// Renew starts a background process for renewing this secret. When the secret
// is has auth data, this attempts to renew the auth (token). When the secret
// has a lease, this attempts to renew the lease.
//
// This function will not return if nothing is reading from doneCh (it blocks)
// on a write to the channel.
func (r *Renewer) Renew() {
if r.secret.Auth != nil {
r.doneCh <- r.renewAuth()
} else {
r.doneCh <- r.renewLease()
}
}
// renewAuth is a helper for renewing authentication.
func (r *Renewer) renewAuth() error {
if !r.secret.Auth.Renewable || r.secret.Auth.ClientToken == "" {
return ErrRenewerNotRenewable
}
client, token := r.client, r.secret.Auth.ClientToken
for {
// Check if we are stopped.
select {
case <-r.stopCh:
return nil
default:
}
// Renew the auth.
2017-06-20 22:52:40 +00:00
renewal, err := client.Auth().Token().RenewTokenAsSelf(token, 0)
2017-06-20 04:34:11 +00:00
if err != nil {
return err
}
// Push a message that a renewal took place.
select {
2017-06-20 23:06:08 +00:00
case r.renewCh <- &RenewOutput{time.Now().UTC(), renewal}:
2017-06-20 04:34:11 +00:00
default:
}
// Somehow, sometimes, this happens.
if renewal == nil || renewal.Auth == nil {
return ErrRenewerNoSecretData
}
// Do nothing if we are not renewable
if !renewal.Auth.Renewable {
return ErrRenewerNotRenewable
}
// Grab the lease duration and sleep duration - note that we grab the auth
// lease duration, not the secret lease duration.
leaseDuration := time.Duration(renewal.Auth.LeaseDuration) * time.Second
sleepDuration := sleepDuration(leaseDuration)
2017-06-20 04:34:11 +00:00
// If we are within grace, return now.
if leaseDuration <= r.grace || sleepDuration <= r.grace {
2017-06-20 04:34:11 +00:00
return nil
}
select {
case <-r.stopCh:
return nil
case <-time.After(sleepDuration):
2017-06-20 04:34:11 +00:00
continue
}
}
}
// renewLease is a helper for renewing a lease.
func (r *Renewer) renewLease() error {
if !r.secret.Renewable || r.secret.LeaseID == "" {
return ErrRenewerNotRenewable
}
client, leaseID := r.client, r.secret.LeaseID
for {
// Check if we are stopped.
select {
case <-r.stopCh:
return nil
default:
}
// Renew the lease.
renewal, err := client.Sys().Renew(leaseID, 0)
if err != nil {
return err
}
// Push a message that a renewal took place.
select {
2017-06-20 23:06:08 +00:00
case r.renewCh <- &RenewOutput{time.Now().UTC(), renewal}:
2017-06-20 04:34:11 +00:00
default:
}
// Somehow, sometimes, this happens.
if renewal == nil {
return ErrRenewerNoSecretData
}
// Do nothing if we are not renewable
if !renewal.Renewable {
return ErrRenewerNotRenewable
}
// Grab the lease duration and sleep duration
leaseDuration := time.Duration(renewal.LeaseDuration) * time.Second
sleepDuration := sleepDuration(leaseDuration)
2017-06-20 04:34:11 +00:00
// If we are within grace, return now.
if leaseDuration <= r.grace || sleepDuration <= r.grace {
2017-06-20 04:34:11 +00:00
return nil
}
select {
case <-r.stopCh:
return nil
case <-time.After(sleepDuration):
2017-06-20 04:34:11 +00:00
continue
}
}
}
// sleepDuration calculates the time to sleep given the base lease duration. The
// base is the resulting lease duration. It will be reduced to 1/3 and
// multiplied by a random float between 0.0 and 1.0. This extra randomness
// prevents multiple clients from all trying to renew simultaneously.
func sleepDuration(base time.Duration) time.Duration {
sleep := float64(base)
// Renew at 1/3 the remaining lease. This will give us an opportunity to retry
// at least one more time should the first renewal fail.
sleep = sleep / 3.0
// Use a randomness so many clients do not hit Vault simultaneously.
sleep = sleep * rand.Float64()
return time.Duration(sleep) * time.Second
}