2015-06-16 20:58:54 +00:00
|
|
|
package ssh
|
|
|
|
|
|
|
|
import (
|
2015-06-26 01:47:32 +00:00
|
|
|
"fmt"
|
2015-06-16 20:58:54 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/vault/logical"
|
|
|
|
"github.com/hashicorp/vault/logical/framework"
|
|
|
|
)
|
|
|
|
|
2015-07-02 23:00:14 +00:00
|
|
|
const SecretDynamicKeyType = "secret_dynamic_key_type"
|
2015-06-16 20:58:54 +00:00
|
|
|
|
2015-07-23 22:12:13 +00:00
|
|
|
func secretDynamicKey(b *backend) *framework.Secret {
|
2015-06-16 20:58:54 +00:00
|
|
|
return &framework.Secret{
|
2015-07-02 23:00:14 +00:00
|
|
|
Type: SecretDynamicKeyType,
|
2015-06-16 20:58:54 +00:00
|
|
|
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-06-16 20:58:54 +00:00
|
|
|
},
|
|
|
|
},
|
2016-01-29 22:44:09 +00:00
|
|
|
|
|
|
|
Renew: b.secretDynamicKeyRenew,
|
|
|
|
Revoke: b.secretDynamicKeyRevoke,
|
2015-06-16 20:58:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-27 20:42:03 +00:00
|
|
|
func (b *backend) secretDynamicKeyRenew(req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
|
2016-01-29 22:44:09 +00:00
|
|
|
f := framework.LeaseExtend(0, 0, b.System())
|
2015-06-19 00:48:41 +00:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
2015-06-26 01:47:32 +00:00
|
|
|
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
|
|
|
|
2015-06-26 01:47:32 +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
|
|
|
|
2015-06-26 01:47:32 +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
|
|
|
|
2015-06-26 01:47:32 +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
|
|
|
|
2015-08-06 19:50:12 +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")
|
|
|
|
}
|
|
|
|
|
2015-07-06 20:56:45 +00:00
|
|
|
portRaw, ok := req.Secret.InternalData["port"]
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("secret is missing internal data")
|
|
|
|
}
|
2015-08-13 15:46:55 +00:00
|
|
|
port := int(portRaw.(float64))
|
2015-06-26 01:47:32 +00:00
|
|
|
|
2015-07-02 21:23:09 +00:00
|
|
|
// Fetch the host key using the key name
|
2015-08-13 21:18:30 +00:00
|
|
|
hostKey, err := b.getKey(req.Storage, hostKeyName)
|
2015-06-26 01:47:32 +00:00
|
|
|
if err != nil {
|
2015-07-02 01:05:52 +00:00
|
|
|
return nil, fmt.Errorf("key '%s' not found error:%s", hostKeyName, err)
|
2015-06-26 01:47:32 +00:00
|
|
|
}
|
2015-08-13 21:18:30 +00:00
|
|
|
if hostKey == nil {
|
|
|
|
return nil, fmt.Errorf("key '%s' not found", hostKeyName)
|
2015-06-26 01:47:32 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 21:23:09 +00:00
|
|
|
// Remove the public key from authorized_keys file in target machine
|
2015-08-13 17:36:31 +00:00
|
|
|
// The last param 'false' indicates that the key should be uninstalled.
|
2015-08-18 01:22:03 +00:00
|
|
|
err = b.installPublicKeyInTarget(adminUser, username, ip, port, hostKey.Key, dynamicPublicKey, installScript, false)
|
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")
|
2015-06-26 01:47:32 +00:00
|
|
|
}
|
2015-06-16 20:58:54 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|