2015-06-17 16:39:49 +00:00
|
|
|
package ssh
|
|
|
|
|
|
|
|
import (
|
2015-06-18 00:33:03 +00:00
|
|
|
"fmt"
|
2015-06-26 01:47:32 +00:00
|
|
|
"net"
|
2015-06-17 16:39:49 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/vault/logical"
|
|
|
|
"github.com/hashicorp/vault/logical/framework"
|
|
|
|
)
|
|
|
|
|
2015-06-24 22:13:12 +00:00
|
|
|
func pathRoleCreate(b *backend) *framework.Path {
|
2015-06-17 16:39:49 +00:00
|
|
|
return &framework.Path{
|
2015-07-02 01:05:52 +00:00
|
|
|
Pattern: "creds/(?P<name>[-\\w]+)",
|
2015-06-17 16:39:49 +00:00
|
|
|
Fields: map[string]*framework.FieldSchema{
|
2015-06-24 22:13:12 +00:00
|
|
|
"name": &framework.FieldSchema{
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "name of the policy",
|
|
|
|
},
|
2015-06-17 16:39:49 +00:00
|
|
|
"username": &framework.FieldSchema{
|
|
|
|
Type: framework.TypeString,
|
2015-06-24 22:13:12 +00:00
|
|
|
Description: "username in target",
|
2015-06-17 16:39:49 +00:00
|
|
|
},
|
2015-06-24 22:13:12 +00:00
|
|
|
"ip": &framework.FieldSchema{
|
2015-06-17 16:39:49 +00:00
|
|
|
Type: framework.TypeString,
|
2015-06-24 22:13:12 +00:00
|
|
|
Description: "IP of the target machine",
|
2015-06-17 16:39:49 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Callbacks: map[logical.Operation]framework.OperationFunc{
|
2015-06-24 22:13:12 +00:00
|
|
|
logical.WriteOperation: b.pathRoleCreateWrite,
|
2015-06-17 16:39:49 +00:00
|
|
|
},
|
2015-06-30 20:30:13 +00:00
|
|
|
HelpSynopsis: pathRoleCreateHelpSyn,
|
|
|
|
HelpDescription: pathRoleCreateHelpDesc,
|
2015-06-17 16:39:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-24 22:13:12 +00:00
|
|
|
func (b *backend) pathRoleCreateWrite(
|
2015-06-17 16:39:49 +00:00
|
|
|
req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
|
2015-06-24 22:13:12 +00:00
|
|
|
roleName := d.Get("name").(string)
|
2015-06-19 00:48:41 +00:00
|
|
|
username := d.Get("username").(string)
|
2015-06-26 01:47:32 +00:00
|
|
|
ipRaw := d.Get("ip").(string)
|
2015-06-30 20:30:13 +00:00
|
|
|
if roleName == "" {
|
2015-07-02 01:26:42 +00:00
|
|
|
return logical.ErrorResponse("Missing name"), nil
|
2015-06-30 20:30:13 +00:00
|
|
|
}
|
|
|
|
if ipRaw == "" {
|
2015-07-02 01:26:42 +00:00
|
|
|
return logical.ErrorResponse("Missing ip"), nil
|
2015-06-30 20:30:13 +00:00
|
|
|
}
|
2015-06-18 00:33:03 +00:00
|
|
|
|
2015-07-02 21:23:09 +00:00
|
|
|
// Find the role to be used for installing dynamic key
|
2015-07-02 00:35:11 +00:00
|
|
|
roleEntry, err := req.Storage.Get(fmt.Sprintf("policy/%s", roleName))
|
2015-06-19 00:48:41 +00:00
|
|
|
if err != nil {
|
2015-06-24 22:13:12 +00:00
|
|
|
return nil, fmt.Errorf("error retrieving role: %s", err)
|
|
|
|
}
|
|
|
|
if roleEntry == nil {
|
|
|
|
return logical.ErrorResponse(fmt.Sprintf("Role '%s' not found", roleName)), nil
|
|
|
|
}
|
|
|
|
var role sshRole
|
|
|
|
if err := roleEntry.DecodeJSON(&role); err != nil {
|
2015-06-19 00:48:41 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-07-02 21:23:09 +00:00
|
|
|
// Set the default username
|
2015-06-30 20:30:13 +00:00
|
|
|
if username == "" {
|
|
|
|
username = role.DefaultUser
|
|
|
|
}
|
|
|
|
|
2015-07-02 21:23:09 +00:00
|
|
|
// Validate the IP address
|
2015-06-26 01:47:32 +00:00
|
|
|
ipAddr := net.ParseIP(ipRaw)
|
|
|
|
if ipAddr == nil {
|
|
|
|
return logical.ErrorResponse(fmt.Sprintf("Invalid IP '%s'", ipRaw)), nil
|
|
|
|
}
|
|
|
|
ip := ipAddr.String()
|
2015-07-02 21:23:09 +00:00
|
|
|
ipMatched, err := cidrContainsIP(ip, role.CIDR)
|
|
|
|
if err != nil {
|
|
|
|
return logical.ErrorResponse(fmt.Sprintf("Error validating IP: %s", err)), nil
|
2015-06-26 01:47:32 +00:00
|
|
|
}
|
|
|
|
if !ipMatched {
|
|
|
|
return logical.ErrorResponse(fmt.Sprintf("IP[%s] does not belong to role[%s]", ip, roleName)), nil
|
|
|
|
}
|
2015-06-24 22:13:12 +00:00
|
|
|
|
2015-07-02 21:23:09 +00:00
|
|
|
// Fetch the host key to be used for dynamic key installation
|
2015-07-02 00:35:11 +00:00
|
|
|
keyEntry, err := req.Storage.Get(fmt.Sprintf("keys/%s", role.KeyName))
|
2015-06-24 22:13:12 +00:00
|
|
|
if err != nil {
|
2015-07-02 01:05:52 +00:00
|
|
|
return nil, fmt.Errorf("key '%s' not found error:%s", role.KeyName, err)
|
2015-06-19 00:48:41 +00:00
|
|
|
}
|
|
|
|
var hostKey sshHostKey
|
2015-06-24 22:13:12 +00:00
|
|
|
if err := keyEntry.DecodeJSON(&hostKey); err != nil {
|
2015-07-02 01:05:52 +00:00
|
|
|
return nil, fmt.Errorf("error reading the host key: %s", err)
|
2015-06-19 00:48:41 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 21:23:09 +00:00
|
|
|
// Generate RSA key pair
|
2015-06-26 18:08:03 +00:00
|
|
|
dynamicPublicKey, dynamicPrivateKey, _ := generateRSAKeys()
|
2015-06-30 20:30:13 +00:00
|
|
|
|
2015-07-02 21:23:09 +00:00
|
|
|
// Transfer the public key to target machine
|
2015-07-06 20:56:45 +00:00
|
|
|
err = uploadPublicKeyScp(dynamicPublicKey, username, ip, role.Port, hostKey.Key)
|
2015-06-30 20:30:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-06-29 15:49:34 +00:00
|
|
|
|
2015-07-02 21:23:09 +00:00
|
|
|
// Add the public key to authorized_keys file in target machine
|
2015-07-06 20:56:45 +00:00
|
|
|
err = installPublicKeyInTarget(username, ip, role.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 adding public key to authorized_keys file in target")
|
2015-06-29 15:49:34 +00:00
|
|
|
}
|
2015-06-26 01:47:32 +00:00
|
|
|
|
2015-07-02 23:00:14 +00:00
|
|
|
result := b.Secret(SecretDynamicKeyType).Response(map[string]interface{}{
|
2015-06-26 01:47:32 +00:00
|
|
|
"key": dynamicPrivateKey,
|
|
|
|
}, map[string]interface{}{
|
|
|
|
"username": username,
|
|
|
|
"ip": ip,
|
|
|
|
"host_key_name": role.KeyName,
|
|
|
|
"dynamic_public_key": dynamicPublicKey,
|
2015-07-06 20:56:45 +00:00
|
|
|
"port": role.Port,
|
2015-07-01 00:21:41 +00:00
|
|
|
})
|
2015-07-02 21:23:09 +00:00
|
|
|
|
|
|
|
// Change the lease information to reflect user's choice
|
2015-07-01 00:21:41 +00:00
|
|
|
lease, _ := b.Lease(req.Storage)
|
|
|
|
if lease != nil {
|
|
|
|
result.Secret.Lease = lease.Lease
|
|
|
|
result.Secret.LeaseGracePeriod = lease.LeaseMax
|
|
|
|
}
|
|
|
|
return result, nil
|
2015-06-26 01:47:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type sshCIDR struct {
|
|
|
|
CIDR []string
|
2015-06-17 16:39:49 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 20:30:13 +00:00
|
|
|
const pathRoleCreateHelpSyn = `
|
|
|
|
Creates a dynamic key for the target machine.
|
2015-06-17 16:39:49 +00:00
|
|
|
`
|
|
|
|
|
2015-06-30 20:30:13 +00:00
|
|
|
const pathRoleCreateHelpDesc = `
|
|
|
|
This path will generates a new key for establishing SSH session with
|
|
|
|
target host. Previously registered shared key belonging to target
|
|
|
|
infrastructure will be used to install the new key at the target. If
|
|
|
|
this backend is mounted at 'ssh', then "ssh/creds/role" would generate
|
|
|
|
a dynamic key for 'web' role.
|
|
|
|
|
|
|
|
The dynamic keys will have a lease associated with them. The access
|
|
|
|
keys can be revoked by using the lease ID.
|
2015-06-17 16:39:49 +00:00
|
|
|
`
|