2015-04-19 21:59:30 +00:00
|
|
|
package userpass
|
|
|
|
|
|
|
|
import (
|
2015-09-17 00:12:41 +00:00
|
|
|
"fmt"
|
2015-04-19 21:59:30 +00:00
|
|
|
"strings"
|
2015-09-17 00:12:41 +00:00
|
|
|
"time"
|
2015-04-19 21:59:30 +00:00
|
|
|
|
2016-04-06 00:30:38 +00:00
|
|
|
"github.com/hashicorp/vault/helper/policyutil"
|
2015-04-19 21:59:30 +00:00
|
|
|
"github.com/hashicorp/vault/logical"
|
|
|
|
"github.com/hashicorp/vault/logical/framework"
|
|
|
|
)
|
|
|
|
|
2016-04-09 22:28:30 +00:00
|
|
|
func pathUsersList(b *backend) *framework.Path {
|
|
|
|
return &framework.Path{
|
|
|
|
Pattern: "users/?",
|
|
|
|
|
|
|
|
Callbacks: map[logical.Operation]framework.OperationFunc{
|
|
|
|
logical.ListOperation: b.pathUserList,
|
|
|
|
},
|
|
|
|
|
|
|
|
HelpSynopsis: pathUserHelpSyn,
|
|
|
|
HelpDescription: pathUserHelpDesc,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-19 21:59:30 +00:00
|
|
|
func pathUsers(b *backend) *framework.Path {
|
|
|
|
return &framework.Path{
|
2016-03-15 21:47:13 +00:00
|
|
|
Pattern: "users/" + framework.GenericNameRegex("username"),
|
2015-04-19 21:59:30 +00:00
|
|
|
Fields: map[string]*framework.FieldSchema{
|
2016-03-15 21:47:13 +00:00
|
|
|
"username": &framework.FieldSchema{
|
2015-04-19 21:59:30 +00:00
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Username for this user.",
|
|
|
|
},
|
|
|
|
|
|
|
|
"password": &framework.FieldSchema{
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Password for this user.",
|
|
|
|
},
|
|
|
|
|
|
|
|
"policies": &framework.FieldSchema{
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Comma-separated list of policies",
|
|
|
|
},
|
2015-09-17 00:12:41 +00:00
|
|
|
"ttl": &framework.FieldSchema{
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Default: "",
|
|
|
|
Description: "The lease duration which decides login expiration",
|
|
|
|
},
|
|
|
|
"max_ttl": &framework.FieldSchema{
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Default: "",
|
|
|
|
Description: "Maximum duration after which login should expire",
|
|
|
|
},
|
2015-04-19 21:59:30 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
Callbacks: map[logical.Operation]framework.OperationFunc{
|
|
|
|
logical.DeleteOperation: b.pathUserDelete,
|
|
|
|
logical.ReadOperation: b.pathUserRead,
|
2016-03-15 19:17:50 +00:00
|
|
|
logical.UpdateOperation: b.pathUserWrite,
|
|
|
|
logical.CreateOperation: b.pathUserWrite,
|
2015-04-19 21:59:30 +00:00
|
|
|
},
|
|
|
|
|
2016-03-15 19:17:50 +00:00
|
|
|
ExistenceCheck: b.userExistenceCheck,
|
|
|
|
|
2015-04-19 21:59:30 +00:00
|
|
|
HelpSynopsis: pathUserHelpSyn,
|
|
|
|
HelpDescription: pathUserHelpDesc,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-15 19:17:50 +00:00
|
|
|
func (b *backend) userExistenceCheck(req *logical.Request, data *framework.FieldData) (bool, error) {
|
2016-03-16 18:21:14 +00:00
|
|
|
userEntry, err := b.user(req.Storage, data.Get("username").(string))
|
2016-03-15 19:17:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
2016-03-16 15:26:33 +00:00
|
|
|
return userEntry != nil, nil
|
2016-03-15 19:17:50 +00:00
|
|
|
}
|
|
|
|
|
2016-03-16 18:21:14 +00:00
|
|
|
func (b *backend) user(s logical.Storage, username string) (*UserEntry, error) {
|
|
|
|
if username == "" {
|
|
|
|
return nil, fmt.Errorf("missing username")
|
|
|
|
}
|
|
|
|
|
|
|
|
entry, err := s.Get("user/" + strings.ToLower(username))
|
2015-04-19 21:59:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if entry == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var result UserEntry
|
|
|
|
if err := entry.DecodeJSON(&result); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &result, nil
|
|
|
|
}
|
|
|
|
|
2016-03-16 15:39:52 +00:00
|
|
|
func (b *backend) setUser(s logical.Storage, username string, userEntry *UserEntry) error {
|
2016-03-15 19:17:50 +00:00
|
|
|
entry, err := logical.StorageEntryJSON("user/"+username, userEntry)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.Put(entry)
|
|
|
|
}
|
|
|
|
|
2016-04-09 22:28:30 +00:00
|
|
|
func (b *backend) pathUserList(
|
|
|
|
req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
|
|
|
|
users, err := req.Storage.List("user/")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return logical.ListResponse(users), nil
|
|
|
|
}
|
|
|
|
|
2015-04-19 21:59:30 +00:00
|
|
|
func (b *backend) pathUserDelete(
|
|
|
|
req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
|
2016-03-15 21:47:13 +00:00
|
|
|
err := req.Storage.Delete("user/" + strings.ToLower(d.Get("username").(string)))
|
2015-04-19 21:59:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *backend) pathUserRead(
|
|
|
|
req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
|
2016-03-15 21:47:13 +00:00
|
|
|
user, err := b.user(req.Storage, strings.ToLower(d.Get("username").(string)))
|
2015-04-19 21:59:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if user == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return &logical.Response{
|
|
|
|
Data: map[string]interface{}{
|
|
|
|
"policies": strings.Join(user.Policies, ","),
|
2016-04-09 22:28:30 +00:00
|
|
|
"ttl": user.TTL.Seconds(),
|
|
|
|
"max_ttl": user.MaxTTL.Seconds(),
|
2015-04-19 21:59:30 +00:00
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2016-03-15 21:32:39 +00:00
|
|
|
func (b *backend) userCreateUpdate(req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
|
2016-03-15 21:47:13 +00:00
|
|
|
username := strings.ToLower(d.Get("username").(string))
|
2016-03-15 21:32:39 +00:00
|
|
|
userEntry, err := b.user(req.Storage, username)
|
2016-03-15 21:05:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Due to existence check, user will only be nil if it's a create operation
|
2016-03-15 21:32:39 +00:00
|
|
|
if userEntry == nil {
|
|
|
|
userEntry = &UserEntry{}
|
2016-03-15 19:17:50 +00:00
|
|
|
}
|
|
|
|
|
2016-03-16 18:21:14 +00:00
|
|
|
if _, ok := d.GetOk("password"); ok {
|
|
|
|
err = b.updateUserPassword(req, d, userEntry)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-03-16 17:39:20 +00:00
|
|
|
}
|
|
|
|
|
2016-04-06 00:30:38 +00:00
|
|
|
if policiesRaw, ok := d.GetOk("policies"); ok {
|
|
|
|
userEntry.Policies = policyutil.ParsePolicies(policiesRaw.(string))
|
2015-07-13 05:09:24 +00:00
|
|
|
}
|
2016-03-15 21:05:23 +00:00
|
|
|
|
2016-03-16 18:21:14 +00:00
|
|
|
ttlStr := userEntry.TTL.String()
|
2016-03-16 17:39:20 +00:00
|
|
|
if ttlStrRaw, ok := d.GetOk("ttl"); ok {
|
|
|
|
ttlStr = ttlStrRaw.(string)
|
2016-03-15 21:05:23 +00:00
|
|
|
}
|
2015-07-13 05:09:24 +00:00
|
|
|
|
2016-03-16 18:21:14 +00:00
|
|
|
maxTTLStr := userEntry.MaxTTL.String()
|
2016-03-16 17:39:20 +00:00
|
|
|
if maxTTLStrRaw, ok := d.GetOk("max_ttl"); ok {
|
|
|
|
maxTTLStr = maxTTLStrRaw.(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
userEntry.TTL, userEntry.MaxTTL, err = b.SanitizeTTL(ttlStr, maxTTLStr)
|
|
|
|
if err != nil {
|
|
|
|
return logical.ErrorResponse(fmt.Sprintf("err: %s", err)), nil
|
2015-09-17 00:12:41 +00:00
|
|
|
}
|
|
|
|
|
2016-03-16 15:39:52 +00:00
|
|
|
return nil, b.setUser(req.Storage, username, userEntry)
|
2016-03-15 21:32:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *backend) pathUserWrite(
|
|
|
|
req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
|
|
|
|
password := d.Get("password").(string)
|
2016-03-16 18:21:14 +00:00
|
|
|
if req.Operation == logical.CreateOperation && password == "" {
|
2016-03-16 19:14:06 +00:00
|
|
|
return logical.ErrorResponse("missing password"), logical.ErrInvalidRequest
|
2016-03-15 21:32:39 +00:00
|
|
|
}
|
|
|
|
return b.userCreateUpdate(req, d)
|
2015-04-19 21:59:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type UserEntry struct {
|
2015-07-13 05:09:24 +00:00
|
|
|
// Password is deprecated in Vault 0.2 in favor of
|
|
|
|
// PasswordHash, but is retained for backwards compatibilty.
|
2015-04-19 21:59:30 +00:00
|
|
|
Password string
|
2015-07-13 05:09:24 +00:00
|
|
|
|
|
|
|
// PasswordHash is a bcrypt hash of the password. This is
|
|
|
|
// used instead of the actual password in Vault 0.2+.
|
|
|
|
PasswordHash []byte
|
|
|
|
|
2015-04-19 21:59:30 +00:00
|
|
|
Policies []string
|
2015-09-17 00:12:41 +00:00
|
|
|
|
|
|
|
// Duration after which the user will be revoked unless renewed
|
|
|
|
TTL time.Duration
|
|
|
|
|
|
|
|
// Maximum duration for which user can be valid
|
|
|
|
MaxTTL time.Duration
|
2015-04-19 21:59:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const pathUserHelpSyn = `
|
|
|
|
Manage users allowed to authenticate.
|
|
|
|
`
|
|
|
|
|
|
|
|
const pathUserHelpDesc = `
|
|
|
|
This endpoint allows you to create, read, update, and delete users
|
|
|
|
that are allowed to authenticate.
|
2015-04-19 22:06:29 +00:00
|
|
|
|
|
|
|
Deleting a user will not revoke auth for prior authenticated users
|
|
|
|
with that name. To do this, do a revoke on "login/<username>" for
|
|
|
|
the username you want revoked. If you don't need to revoke login immediately,
|
|
|
|
then the next renew will cause the lease to expire.
|
2015-04-19 21:59:30 +00:00
|
|
|
`
|