open-vault/builtin/logical/rabbitmq/path_role_create.go

127 lines
3.4 KiB
Go
Raw Normal View History

2015-11-18 16:25:42 +00:00
package rabbitmq
import (
"context"
2015-11-18 16:25:42 +00:00
"fmt"
"github.com/hashicorp/errwrap"
multierror "github.com/hashicorp/go-multierror"
uuid "github.com/hashicorp/go-uuid"
2015-11-18 16:25:42 +00:00
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
rabbithole "github.com/michaelklishin/rabbit-hole"
2015-11-18 16:25:42 +00:00
)
2016-06-08 07:18:26 +00:00
func pathCreds(b *backend) *framework.Path {
2015-11-18 16:25:42 +00:00
return &framework.Path{
Pattern: "creds/" + framework.GenericNameRegex("name"),
Fields: map[string]*framework.FieldSchema{
"name": &framework.FieldSchema{
Type: framework.TypeString,
Description: "Name of the role.",
},
},
Callbacks: map[logical.Operation]framework.OperationFunc{
2016-06-08 07:18:26 +00:00
logical.ReadOperation: b.pathCredsRead,
2015-11-18 16:25:42 +00:00
},
HelpSynopsis: pathRoleCreateReadHelpSyn,
HelpDescription: pathRoleCreateReadHelpDesc,
}
}
2016-06-08 07:18:26 +00:00
// Issues the credential based on the role name
func (b *backend) pathCredsRead(ctx context.Context, req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
2016-06-08 07:18:26 +00:00
name := d.Get("name").(string)
if name == "" {
return logical.ErrorResponse("missing name"), nil
2016-05-21 05:51:09 +00:00
}
2015-11-18 16:25:42 +00:00
// Get the role
role, err := b.Role(ctx, req.Storage, name)
2015-11-18 16:25:42 +00:00
if err != nil {
return nil, err
}
if role == nil {
return logical.ErrorResponse(fmt.Sprintf("unknown role: %s", name)), nil
}
2016-05-21 05:51:09 +00:00
// Ensure username is unique
2016-06-08 14:36:16 +00:00
uuidVal, err := uuid.GenerateUUID()
if err != nil {
return nil, err
}
username := fmt.Sprintf("%s-%s", req.DisplayName, uuidVal)
password, err := uuid.GenerateUUID()
if err != nil {
return nil, err
}
2015-11-18 16:25:42 +00:00
2016-06-08 07:18:26 +00:00
// Get the client configuration
client, err := b.Client(ctx, req.Storage)
2015-11-18 16:25:42 +00:00
if err != nil {
return nil, err
}
2016-05-21 05:51:09 +00:00
if client == nil {
2016-06-08 07:18:26 +00:00
return logical.ErrorResponse("failed to get the client"), nil
2016-05-21 05:51:09 +00:00
}
2016-06-08 07:18:26 +00:00
// Register the generated credentials in the backend, with the RabbitMQ server
if _, err = client.PutUser(username, rabbithole.UserSettings{
2015-11-18 16:25:42 +00:00
Password: password,
Tags: role.Tags,
2016-06-08 07:18:26 +00:00
}); err != nil {
return nil, fmt.Errorf("failed to create a new user with the generated credentials")
2015-11-18 16:25:42 +00:00
}
2016-06-08 07:18:26 +00:00
// If the role had vhost permissions specified, assign those permissions
// to the created username for respective vhosts.
2015-11-18 16:25:42 +00:00
for vhost, permission := range role.VHosts {
2016-06-08 07:18:26 +00:00
if _, err := client.UpdatePermissionsIn(vhost, username, rabbithole.Permissions{
2015-11-18 16:25:42 +00:00
Configure: permission.Configure,
Write: permission.Write,
Read: permission.Read,
2016-06-08 07:18:26 +00:00
}); err != nil {
outerErr := errwrap.Wrapf(fmt.Sprintf("failed to update permissions to the %q user: {{err}}", username), err)
2016-05-21 05:51:09 +00:00
// Delete the user because it's in an unknown state
2016-06-08 07:18:26 +00:00
if _, rmErr := client.DeleteUser(username); rmErr != nil {
return nil, multierror.Append(errwrap.Wrapf("failed to delete user: {{err}}", rmErr), outerErr)
2016-05-21 05:51:09 +00:00
}
return nil, outerErr
2015-11-18 16:25:42 +00:00
}
}
// Return the secret
resp := b.Secret(SecretCredsType).Response(map[string]interface{}{
"username": username,
"password": password,
}, map[string]interface{}{
"username": username,
})
2016-06-08 07:18:26 +00:00
// Determine if we have a lease
lease, err := b.Lease(ctx, req.Storage)
2016-06-08 07:18:26 +00:00
if err != nil {
return nil, err
}
2016-06-08 07:18:26 +00:00
if lease != nil {
resp.Secret.TTL = lease.TTL
resp.Secret.MaxTTL = lease.MaxTTL
2016-06-08 07:18:26 +00:00
}
2015-11-18 16:25:42 +00:00
return resp, nil
}
const pathRoleCreateReadHelpSyn = `
Request RabbitMQ credentials for a certain role.
`
const pathRoleCreateReadHelpDesc = `
This path reads RabbitMQ credentials for a certain role. The
RabbitMQ credentials will be generated on demand and will be automatically
revoked when the lease is up.
`