1
0
Fork 0
mirror of https://github.com/Luzifer/vault-unseal.git synced 2024-10-18 08:04:20 +00:00
vault-unseal/main.go

114 lines
2.9 KiB
Go
Raw Permalink Normal View History

package main
2015-08-12 14:44:48 +00:00
import (
"bytes"
"encoding/json"
"fmt"
"log"
2015-08-12 14:44:48 +00:00
"net/http"
"os"
"sync"
2015-08-12 14:44:48 +00:00
"time"
"golang.org/x/net/context"
"golang.org/x/net/context/ctxhttp"
2015-08-12 14:44:48 +00:00
"github.com/Luzifer/rconfig"
)
var config = struct {
OneShot bool `flag:"oneshot,1" default:"false" description:"Only try once and exit after"`
SealTokens []string `flag:"tokens" default:"" description:"Tokens to try for unsealing the vault instance"`
VaultInstances []string `flag:"instance" env:"VAULT_ADDR" default:"http://127.0.0.1:8200" description:"Vault instance to unlock"`
Sleep int `flag:"sleep" default:"30" description:"How long to wait between sealed-state checks"`
2015-08-12 14:44:48 +00:00
}{}
func init() {
if err := rconfig.Parse(&config); err != nil {
log.Printf("Unable to parse CLI parameters: %s\n", err)
2015-08-12 14:44:48 +00:00
os.Exit(1)
}
2016-07-20 06:41:15 +00:00
if len(config.SealTokens) == 1 && config.SealTokens[0] == "" {
if len(rconfig.Args()) <= 1 {
log.Println("You must provide at least one token.")
os.Exit(1)
}
config.SealTokens = rconfig.Args()[1:]
2015-08-12 14:44:48 +00:00
}
}
func main() {
var wg sync.WaitGroup
2015-08-12 14:44:48 +00:00
for {
for i := range config.VaultInstances {
wg.Add(1)
go func(i int) {
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer wg.Done()
defer cancel()
if err := unsealInstance(ctx, config.VaultInstances[i]); err != nil {
log.Printf("[ERR] %s", err)
}
}(i)
2015-08-12 14:44:48 +00:00
}
if config.OneShot {
break
} else {
<-time.After(time.Duration(config.Sleep) * time.Second)
2015-08-12 14:44:48 +00:00
}
}
2015-08-12 14:44:48 +00:00
wg.Wait()
}
2015-08-12 14:44:48 +00:00
func unsealInstance(ctx context.Context, instance string) error {
s := sealStatus{}
r, err := ctxhttp.Get(ctx, http.DefaultClient, instance+"/v1/sys/seal-status")
if err != nil {
return fmt.Errorf("[%s] An error ocurred while reading seal-status: %s", instance, err)
}
defer r.Body.Close()
2015-08-12 14:44:48 +00:00
if err := json.NewDecoder(r.Body).Decode(&s); err != nil {
return fmt.Errorf("[%s] Unable to decode seal-status: %s", instance, err)
}
if s.Sealed {
for _, token := range config.SealTokens {
log.Printf("[%s] Vault instance is sealed (missing %d tokens), trying to unlock...", instance, s.T-s.Progress)
body := bytes.NewBuffer([]byte{})
json.NewEncoder(body).Encode(map[string]interface{}{
"key": token,
})
r, _ := http.NewRequest("PUT", instance+"/v1/sys/unseal", body)
resp, err := ctxhttp.Do(ctx, http.DefaultClient, r)
if err != nil {
return fmt.Errorf("[%s] An error ocurred while doing unseal: %s", instance, err)
}
defer resp.Body.Close()
if err := json.NewDecoder(resp.Body).Decode(&s); err != nil {
return fmt.Errorf("[%s] Unable to decode seal-status: %s", instance, err)
2015-08-12 14:44:48 +00:00
}
if !s.Sealed {
log.Printf("[%s] Unseal successfully finished.", instance)
break
2015-08-12 14:44:48 +00:00
}
}
if s.Sealed {
log.Printf("[%s] Vault instance is still sealed (missing %d tokens), I don't have any more tokens.", instance, s.T-s.Progress)
2015-08-12 14:44:48 +00:00
}
} else {
log.Printf("[%s] Vault instance is already unsealed.", instance)
2015-08-12 14:44:48 +00:00
}
return nil
2015-08-12 14:44:48 +00:00
}