open-vault/builtin/logical/ssh/secret_ssh_key.go
2015-07-06 16:56:45 -04:00

107 lines
3.1 KiB
Go

package ssh
import (
"fmt"
"time"
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
)
const SecretDynamicKeyType = "secret_dynamic_key_type"
func secretSSHKey(b *backend) *framework.Secret {
return &framework.Secret{
Type: SecretDynamicKeyType,
Fields: map[string]*framework.FieldSchema{
"username": &framework.FieldSchema{
Type: framework.TypeString,
Description: "Username in host",
},
"ip": &framework.FieldSchema{
Type: framework.TypeString,
Description: "ip address of host",
},
},
DefaultDuration: 1 * time.Hour,
DefaultGracePeriod: 10 * time.Minute,
Renew: b.secretSSHKeyRenew,
Revoke: b.secretSSHKeyRevoke,
}
}
func (b *backend) secretSSHKeyRenew(req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
lease, err := b.Lease(req.Storage)
if err != nil {
return nil, err
}
if lease == nil {
lease = &configLease{Lease: 1 * time.Hour}
}
f := framework.LeaseExtend(lease.Lease, lease.LeaseMax, false)
return f(req, d)
}
func (b *backend) secretSSHKeyRevoke(req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
usernameRaw, ok := req.Secret.InternalData["username"]
if !ok {
return nil, fmt.Errorf("secret is missing internal data")
}
username, ok := usernameRaw.(string)
if !ok {
return nil, fmt.Errorf("secret is missing internal data")
}
ipRaw, ok := req.Secret.InternalData["ip"]
if !ok {
return nil, fmt.Errorf("secret is missing internal data")
}
ip, ok := ipRaw.(string)
if !ok {
return nil, fmt.Errorf("secret is missing internal data")
}
hostKeyNameRaw, ok := req.Secret.InternalData["host_key_name"]
if !ok {
return nil, fmt.Errorf("secret is missing internal data")
}
hostKeyName := hostKeyNameRaw.(string)
if !ok {
return nil, fmt.Errorf("secret is missing internal data")
}
dynamicPublicKeyRaw, ok := req.Secret.InternalData["dynamic_public_key"]
if !ok {
return nil, fmt.Errorf("secret is missing internal data")
}
dynamicPublicKey := dynamicPublicKeyRaw.(string)
if !ok {
return nil, fmt.Errorf("secret is missing internal data")
}
portRaw, ok := req.Secret.InternalData["port"]
if !ok {
return nil, fmt.Errorf("secret is missing internal data")
}
port := portRaw.(string)
// Fetch the host key using the key name
hostKeyEntry, err := req.Storage.Get(fmt.Sprintf("keys/%s", hostKeyName))
if err != nil {
return nil, fmt.Errorf("key '%s' not found error:%s", hostKeyName, err)
}
var hostKey sshHostKey
if err := hostKeyEntry.DecodeJSON(&hostKey); err != nil {
return nil, fmt.Errorf("error reading the host key: %s", err)
}
// Transfer the dynamic public key to target machine and use it to remove the entry from authorized_keys file
err = uploadPublicKeyScp(dynamicPublicKey, username, ip, port, hostKey.Key)
if err != nil {
return nil, fmt.Errorf("public key transfer failed: %s", err)
}
// Remove the public key from authorized_keys file in target machine
err = uninstallPublicKeyInTarget(username, ip, port, hostKey.Key)
if err != nil {
return nil, fmt.Errorf("error removing public key from authorized_keys file in target")
}
return nil, nil
}