2015-06-16 20:58:54 +00:00
|
|
|
package ssh
|
|
|
|
|
|
|
|
import (
|
2015-06-26 01:47:32 +00:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"strings"
|
2015-06-16 20:58:54 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/hashicorp/vault/logical"
|
|
|
|
"github.com/hashicorp/vault/logical/framework"
|
|
|
|
)
|
|
|
|
|
2015-06-19 16:59:36 +00:00
|
|
|
const SecretOneTimeKeyType = "secret_one_type_key_type"
|
2015-06-16 20:58:54 +00:00
|
|
|
|
2015-07-01 15:58:49 +00:00
|
|
|
func secretSSHKey(b *backend) *framework.Secret {
|
2015-06-16 20:58:54 +00:00
|
|
|
return &framework.Secret{
|
2015-06-19 16:59:36 +00:00
|
|
|
Type: SecretOneTimeKeyType,
|
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,
|
|
|
|
Description: "ip address of host",
|
|
|
|
},
|
|
|
|
},
|
2015-07-01 00:21:41 +00:00
|
|
|
DefaultDuration: 1 * time.Hour,
|
|
|
|
DefaultGracePeriod: 10 * time.Minute,
|
2015-07-01 15:58:49 +00:00
|
|
|
Renew: b.secretSSHKeyRenew,
|
|
|
|
Revoke: b.secretSSHKeyRevoke,
|
2015-06-16 20:58:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-01 15:58:49 +00:00
|
|
|
func (b *backend) secretSSHKeyRenew(req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
|
2015-06-19 00:48:41 +00:00
|
|
|
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-01 15:58:49 +00:00
|
|
|
func (b *backend) secretSSHKeyRevoke(req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
|
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")
|
|
|
|
}
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
|
|
|
//fetch the host key using the key name
|
|
|
|
hostKeyPath := "keys/" + hostKeyName
|
|
|
|
hostKeyEntry, err := req.Storage.Get(hostKeyPath)
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
//write host key to file and use it as argument to scp command
|
|
|
|
hostKeyFileName := "./vault_ssh_" + username + "_" + ip + "_shared.pem"
|
|
|
|
err = ioutil.WriteFile(hostKeyFileName, []byte(hostKey.Key), 0400)
|
|
|
|
|
|
|
|
//write dynamicPublicKey to file and use it as argument to scp command
|
2015-06-30 20:30:13 +00:00
|
|
|
dynamicPrivateKeyFileName := "vault_ssh_" + username + "_" + ip + "_otk.pem"
|
|
|
|
dynamicPublicKeyFileName := dynamicPrivateKeyFileName + ".pub"
|
|
|
|
err = ioutil.WriteFile(dynamicPublicKeyFileName, []byte(dynamicPublicKey), 0400)
|
2015-06-26 01:47:32 +00:00
|
|
|
|
|
|
|
//transfer the dynamic public key to target machine and use it to remove the entry from authorized_keys file
|
2015-06-30 20:30:13 +00:00
|
|
|
err = uploadFileScp(dynamicPublicKeyFileName, username, ip, hostKey.Key)
|
2015-06-26 01:47:32 +00:00
|
|
|
if err != nil {
|
2015-06-30 20:30:13 +00:00
|
|
|
return nil, fmt.Errorf("Public key transfer failed: %s", err)
|
2015-06-26 01:47:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
authKeysFileName := "~/.ssh/authorized_keys"
|
|
|
|
tempKeysFileName := "~/temp_authorized_keys"
|
|
|
|
|
|
|
|
//commands to be run on target machine
|
2015-06-30 20:30:13 +00:00
|
|
|
grepCmd := "grep -vFf " + dynamicPublicKeyFileName + " " + authKeysFileName + " > " + tempKeysFileName + ";"
|
2015-06-26 01:47:32 +00:00
|
|
|
catCmdRemoveDuplicate := "cat " + tempKeysFileName + " > " + authKeysFileName + ";"
|
2015-06-30 20:30:13 +00:00
|
|
|
rmCmd := "rm -f " + tempKeysFileName + " " + dynamicPublicKeyFileName + ";"
|
2015-06-26 01:47:32 +00:00
|
|
|
remoteCmdString := strings.Join([]string{
|
|
|
|
grepCmd,
|
|
|
|
catCmdRemoveDuplicate,
|
|
|
|
rmCmd,
|
|
|
|
}, "")
|
|
|
|
|
|
|
|
//connect to target machine
|
2015-06-30 02:00:08 +00:00
|
|
|
session, err := createSSHPublicKeysSession(username, ip, hostKey.Key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Unable to create SSH Session using public keys: %s", err)
|
|
|
|
}
|
|
|
|
if session == nil {
|
|
|
|
return nil, fmt.Errorf("Invalid session object")
|
|
|
|
}
|
|
|
|
|
2015-06-30 20:30:13 +00:00
|
|
|
//run the commands in target machine
|
2015-06-26 01:47:32 +00:00
|
|
|
if err := session.Run(remoteCmdString); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-06-30 20:30:13 +00:00
|
|
|
|
2015-06-16 20:58:54 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|