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

227 lines
6.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"
2016-06-08 07:18:26 +00:00
"github.com/fatih/structs"
"github.com/hashicorp/vault/sdk/framework"
"github.com/hashicorp/vault/sdk/helper/jsonutil"
"github.com/hashicorp/vault/sdk/logical"
2015-11-18 16:25:42 +00:00
)
2016-04-08 16:46:25 +00:00
func pathListRoles(b *backend) *framework.Path {
return &framework.Path{
Pattern: "roles/?$",
Callbacks: map[logical.Operation]framework.OperationFunc{
logical.ListOperation: b.pathRoleList,
},
HelpSynopsis: pathRoleHelpSyn,
HelpDescription: pathRoleHelpDesc,
}
}
2015-11-18 16:25:42 +00:00
func pathRoles(b *backend) *framework.Path {
return &framework.Path{
Pattern: "roles/" + framework.GenericNameRegex("name"),
2016-06-08 07:18:26 +00:00
Fields: map[string]*framework.FieldSchema{
"name": {
2016-06-08 07:18:26 +00:00
Type: framework.TypeString,
Description: "Name of the role.",
},
"tags": {
2016-06-08 07:18:26 +00:00
Type: framework.TypeString,
Description: "Comma-separated list of tags for this role.",
},
"vhosts": {
2016-06-08 07:18:26 +00:00
Type: framework.TypeString,
Description: "A map of virtual hosts to permissions.",
},
"vhost_topics": {
Type: framework.TypeString,
Description: "A nested map of virtual hosts and exchanges to topic permissions.",
},
2016-06-08 07:18:26 +00:00
},
2015-11-18 16:25:42 +00:00
Callbacks: map[logical.Operation]framework.OperationFunc{
logical.ReadOperation: b.pathRoleRead,
logical.UpdateOperation: b.pathRoleUpdate,
2015-11-18 16:25:42 +00:00
logical.DeleteOperation: b.pathRoleDelete,
},
HelpSynopsis: pathRoleHelpSyn,
HelpDescription: pathRoleHelpDesc,
}
}
2016-06-08 07:18:26 +00:00
// Reads the role configuration from the storage
func (b *backend) Role(ctx context.Context, s logical.Storage, n string) (*roleEntry, error) {
entry, err := s.Get(ctx, "role/"+n)
2015-11-18 16:25:42 +00:00
if err != nil {
return nil, err
}
if entry == nil {
return nil, nil
}
var result roleEntry
if err := entry.DecodeJSON(&result); err != nil {
return nil, err
}
return &result, nil
}
2016-06-08 07:18:26 +00:00
// Deletes an existing role
func (b *backend) pathRoleDelete(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
2015-11-18 16:25:42 +00:00
}
return nil, req.Storage.Delete(ctx, "role/"+name)
2015-11-18 16:25:42 +00:00
}
2016-06-08 07:18:26 +00:00
// Reads an existing role
func (b *backend) pathRoleRead(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
}
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 nil, nil
}
return &logical.Response{
2016-06-08 07:18:26 +00:00
Data: structs.New(role).Map(),
2015-11-18 16:25:42 +00:00
}, nil
}
2016-06-08 07:18:26 +00:00
// Lists all the roles registered with the backend
func (b *backend) pathRoleList(ctx context.Context, req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
roles, err := req.Storage.List(ctx, "role/")
2016-04-08 16:46:25 +00:00
if err != nil {
return nil, err
}
2016-06-08 07:18:26 +00:00
return logical.ListResponse(roles), nil
2016-04-08 16:46:25 +00:00
}
2016-06-08 07:18:26 +00:00
// Registers a new role with the backend
func (b *backend) pathRoleUpdate(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
}
tags := d.Get("tags").(string)
rawVHosts := d.Get("vhosts").(string)
rawVHostTopics := d.Get("vhost_topics").(string)
2016-06-08 07:18:26 +00:00
// Either tags or VHost permissions are always required, but topic permissions are always optional.
2016-06-08 07:18:26 +00:00
if tags == "" && rawVHosts == "" {
return logical.ErrorResponse("both tags and vhosts not specified"), nil
2016-05-21 05:51:09 +00:00
}
2015-11-18 16:25:42 +00:00
var vhosts map[string]vhostPermission
if len(rawVHosts) > 0 {
if err := jsonutil.DecodeJSON([]byte(rawVHosts), &vhosts); err != nil {
2015-11-18 16:25:42 +00:00
return logical.ErrorResponse(fmt.Sprintf("failed to unmarshal vhosts: %s", err)), nil
}
}
var vhostTopics map[string]map[string]vhostTopicPermission
if len(rawVHostTopics) > 0 {
if err := jsonutil.DecodeJSON([]byte(rawVHostTopics), &vhostTopics); err != nil {
return logical.ErrorResponse(fmt.Sprintf("failed to unmarshal vhost_topics: %s", err)), nil
}
}
2015-11-18 16:25:42 +00:00
// Store it
entry, err := logical.StorageEntryJSON("role/"+name, &roleEntry{
Tags: tags,
VHosts: vhosts,
VHostTopics: vhostTopics,
2015-11-18 16:25:42 +00:00
})
if err != nil {
return nil, err
}
if err := req.Storage.Put(ctx, entry); err != nil {
2015-11-18 16:25:42 +00:00
return nil, err
}
return nil, nil
}
// Role that defines the capabilities of the credentials issued against it.
// Maps are used because the names of vhosts and exchanges will vary widely.
// VHosts is a map with a vhost name as key and the permissions as value.
// VHostTopics is a nested map with vhost name and exchange name as keys and
// the topic permissions as value.
2015-11-18 16:25:42 +00:00
type roleEntry struct {
Tags string `json:"tags" structs:"tags" mapstructure:"tags"`
VHosts map[string]vhostPermission `json:"vhosts" structs:"vhosts" mapstructure:"vhosts"`
VHostTopics map[string]map[string]vhostTopicPermission `json:"vhost_topics" structs:"vhost_topics" mapstructure:"vhost_topics"`
2015-11-18 16:25:42 +00:00
}
2016-06-08 07:18:26 +00:00
// Structure representing the permissions of a vhost
2015-11-18 16:25:42 +00:00
type vhostPermission struct {
2016-06-08 07:18:26 +00:00
Configure string `json:"configure" structs:"configure" mapstructure:"configure"`
Write string `json:"write" structs:"write" mapstructure:"write"`
Read string `json:"read" structs:"read" mapstructure:"read"`
2016-05-21 05:51:09 +00:00
}
// Structure representing the topic permissions of an exchange
type vhostTopicPermission struct {
Write string `json:"write" structs:"write" mapstructure:"write"`
Read string `json:"read" structs:"read" mapstructure:"read"`
}
2015-11-18 16:25:42 +00:00
const pathRoleHelpSyn = `
Manage the roles that can be created with this backend.
`
const pathRoleHelpDesc = `
This path lets you manage the roles that can be created with this backend.
The "tags" parameter customizes the tags used to create the role.
This is a comma separated list of strings. The "vhosts" parameter customizes
the virtual hosts that this user will be associated with. This is a JSON object
passed as a string in the form:
{
"vhostOne": {
"configure": ".*",
"write": ".*",
"read": ".*"
},
"vhostTwo": {
"configure": ".*",
"write": ".*",
"read": ".*"
}
}
The "vhost_topics" parameter customizes the topic permissions that this user
will be granted. This is a JSON object passed as a string in the form:
{
"vhostOne": {
"exchangeOneOne": {
"write": ".*",
"read": ".*"
},
"exchangeOneTwo": {
"write": ".*",
"read": ".*"
}
},
"vhostTwo": {
"exchangeTwoOne": {
"write": ".*",
"read": ".*"
}
}
}
2015-11-18 16:25:42 +00:00
`