open-vault/builtin/logical/ssh/secret_dynamic_key.go

137 lines
4.0 KiB
Go
Raw Normal View History

package ssh
import (
"fmt"
"time"
2015-07-29 18:21:36 +00:00
"github.com/hashicorp/vault/helper/uuid"
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
)
const SecretDynamicKeyType = "secret_dynamic_key_type"
func secretDynamicKey(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,
2015-07-27 20:42:03 +00:00
Description: "IP address of host",
},
},
2015-07-27 20:42:03 +00:00
DefaultDuration: 10 * time.Minute,
2015-07-29 18:21:36 +00:00
DefaultGracePeriod: 2 * time.Minute,
2015-07-27 20:42:03 +00:00
Renew: b.secretDynamicKeyRenew,
Revoke: b.secretDynamicKeyRevoke,
}
}
2015-07-27 20:42:03 +00:00
func (b *backend) secretDynamicKeyRenew(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)
}
2015-07-27 20:42:03 +00:00
func (b *backend) secretDynamicKeyRevoke(req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
2015-07-27 19:03:10 +00:00
adminUserRaw, ok := req.Secret.InternalData["admin_user"]
if !ok {
return nil, fmt.Errorf("secret is missing internal data")
}
adminUser, ok := adminUserRaw.(string)
if !ok {
return nil, fmt.Errorf("secret is missing internal data")
}
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")
}
2015-07-27 19:03:10 +00:00
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")
}
2015-07-27 19:03:10 +00:00
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")
}
2015-07-27 19:03:10 +00:00
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")
}
2015-07-27 19:03:10 +00:00
installScriptRaw, ok := req.Secret.InternalData["install_script"]
if !ok {
return nil, fmt.Errorf("secret is missing internal data")
}
installScript := installScriptRaw.(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)
2015-07-02 21:23:09 +00:00
// 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)
}
2015-07-02 21:23:09 +00:00
// Transfer the dynamic public key to target machine and use it to remove the entry from authorized_keys file
2015-07-29 18:21:36 +00:00
dynamicPublicKeyFileName := uuid.GenerateUUID()
err = scpUpload(adminUser, ip, port, hostKey.Key, dynamicPublicKeyFileName, dynamicPublicKey)
if err != nil {
return nil, fmt.Errorf("error uploading pubic key: %s", err)
}
scriptFileName := fmt.Sprintf("%s.sh", dynamicPublicKeyFileName)
err = scpUpload(adminUser, ip, port, hostKey.Key, scriptFileName, installScript)
if err != nil {
return nil, fmt.Errorf("error uploading script file: %s", err)
}
2015-07-02 21:23:09 +00:00
// Remove the public key from authorized_keys file in target machine
2015-07-29 18:21:36 +00:00
err = uninstallPublicKeyInTarget(adminUser, dynamicPublicKeyFileName, username, ip, port, hostKey.Key)
2015-06-30 02:00:08 +00:00
if err != nil {
2015-07-02 21:23:09 +00:00
return nil, fmt.Errorf("error removing public key from authorized_keys file in target")
}
return nil, nil
}