2015-03-11 19:03:28 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-08-08 20:00:31 +00:00
|
|
|
|
2017-02-16 16:37:27 +00:00
|
|
|
"github.com/fatih/structs"
|
2016-08-08 20:00:31 +00:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2015-03-11 19:03:28 +00:00
|
|
|
)
|
|
|
|
|
2015-04-05 00:53:59 +00:00
|
|
|
func (c *Sys) ListAuth() (map[string]*AuthMount, error) {
|
2015-03-13 17:32:22 +00:00
|
|
|
r := c.c.NewRequest("GET", "/v1/sys/auth")
|
2015-03-11 19:03:28 +00:00
|
|
|
resp, err := c.c.RawRequest(r)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
2016-08-14 18:52:45 +00:00
|
|
|
var result map[string]interface{}
|
|
|
|
err = resp.DecodeJSON(&result)
|
2016-08-08 20:00:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-08-14 18:52:45 +00:00
|
|
|
mounts := map[string]*AuthMount{}
|
|
|
|
for k, v := range result {
|
|
|
|
switch v.(type) {
|
|
|
|
case map[string]interface{}:
|
|
|
|
default:
|
|
|
|
continue
|
|
|
|
}
|
2016-08-08 20:00:31 +00:00
|
|
|
var res AuthMount
|
|
|
|
err = mapstructure.Decode(v, &res)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-08-14 18:52:45 +00:00
|
|
|
// Not a mount, some other api.Secret data
|
|
|
|
if res.Type == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
mounts[k] = &res
|
2016-08-08 20:00:31 +00:00
|
|
|
}
|
|
|
|
|
2016-08-14 18:52:45 +00:00
|
|
|
return mounts, nil
|
2015-03-11 19:03:28 +00:00
|
|
|
}
|
|
|
|
|
2017-02-16 16:37:27 +00:00
|
|
|
// DEPRECATED: Use EnableAuthWithOptions instead
|
2015-04-01 03:27:55 +00:00
|
|
|
func (c *Sys) EnableAuth(path, authType, desc string) error {
|
2017-02-16 16:37:27 +00:00
|
|
|
return c.EnableAuthWithOptions(path, &EnableAuthOptions{
|
|
|
|
Type: authType,
|
|
|
|
Description: desc,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Sys) EnableAuthWithOptions(path string, options *EnableAuthOptions) error {
|
|
|
|
body := structs.Map(options)
|
2015-03-11 19:03:28 +00:00
|
|
|
|
2015-04-02 00:09:11 +00:00
|
|
|
r := c.c.NewRequest("POST", fmt.Sprintf("/v1/sys/auth/%s", path))
|
2015-03-11 19:03:28 +00:00
|
|
|
if err := r.SetJSONBody(body); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := c.c.RawRequest(r)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-04-01 03:27:55 +00:00
|
|
|
func (c *Sys) DisableAuth(path string) error {
|
|
|
|
r := c.c.NewRequest("DELETE", fmt.Sprintf("/v1/sys/auth/%s", path))
|
2015-03-11 19:03:28 +00:00
|
|
|
resp, err := c.c.RawRequest(r)
|
2015-04-01 03:27:55 +00:00
|
|
|
if err == nil {
|
|
|
|
defer resp.Body.Close()
|
|
|
|
}
|
2015-03-11 19:03:28 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Structures for the requests/resposne are all down here. They aren't
|
|
|
|
// individually documentd because the map almost directly to the raw HTTP API
|
|
|
|
// documentation. Please refer to that documentation for more details.
|
|
|
|
|
2017-02-16 16:37:27 +00:00
|
|
|
type EnableAuthOptions struct {
|
2017-08-31 16:16:59 +00:00
|
|
|
Type string `json:"type" structs:"type"`
|
|
|
|
Description string `json:"description" structs:"description"`
|
|
|
|
Config AuthConfigInput `json:"config" structs:"config"`
|
|
|
|
Local bool `json:"local" structs:"local"`
|
|
|
|
PluginName string `json:"plugin_name,omitempty" structs:"plugin_name,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type AuthConfigInput struct {
|
|
|
|
PluginName string `json:"plugin_name,omitempty" structs:"plugin_name,omitempty" mapstructure:"plugin_name"`
|
2017-02-16 16:37:27 +00:00
|
|
|
}
|
|
|
|
|
2015-04-05 00:53:59 +00:00
|
|
|
type AuthMount struct {
|
2016-06-15 16:35:30 +00:00
|
|
|
Type string `json:"type" structs:"type" mapstructure:"type"`
|
|
|
|
Description string `json:"description" structs:"description" mapstructure:"description"`
|
2017-06-26 17:14:36 +00:00
|
|
|
Accessor string `json:"accessor" structs:"accessor" mapstructure:"accessor"`
|
2016-06-15 16:35:30 +00:00
|
|
|
Config AuthConfigOutput `json:"config" structs:"config" mapstructure:"config"`
|
2017-02-16 16:37:27 +00:00
|
|
|
Local bool `json:"local" structs:"local" mapstructure:"local"`
|
2016-06-15 16:35:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type AuthConfigOutput struct {
|
Backend plugin system (#2874)
* Add backend plugin changes
* Fix totp backend plugin tests
* Fix logical/plugin InvalidateKey test
* Fix plugin catalog CRUD test, fix NoopBackend
* Clean up commented code block
* Fix system backend mount test
* Set plugin_name to omitempty, fix handleMountTable config parsing
* Clean up comments, keep shim connections alive until cleanup
* Include pluginClient, disallow LookupPlugin call from within a plugin
* Add wrapper around backendPluginClient for proper cleanup
* Add logger shim tests
* Add logger, storage, and system shim tests
* Use pointer receivers for system view shim
* Use plugin name if no path is provided on mount
* Enable plugins for auth backends
* Add backend type attribute, move builtin/plugin/package
* Fix merge conflict
* Fix missing plugin name in mount config
* Add integration tests on enabling auth backend plugins
* Remove dependency cycle on mock-plugin
* Add passthrough backend plugin, use logical.BackendType to determine lease generation
* Remove vault package dependency on passthrough package
* Add basic impl test for passthrough plugin
* Incorporate feedback; set b.backend after shims creation on backendPluginServer
* Fix totp plugin test
* Add plugin backends docs
* Fix tests
* Fix builtin/plugin tests
* Remove flatten from PluginRunner fields
* Move mock plugin to logical/plugin, remove totp and passthrough plugins
* Move pluginMap into newPluginClient
* Do not create storage RPC connection on HandleRequest and HandleExistenceCheck
* Change shim logger's Fatal to no-op
* Change BackendType to uint32, match UX backend types
* Change framework.Backend Setup signature
* Add Setup func to logical.Backend interface
* Move OptionallyEnableMlock call into plugin.Serve, update docs and comments
* Remove commented var in plugin package
* RegisterLicense on logical.Backend interface (#3017)
* Add RegisterLicense to logical.Backend interface
* Update RegisterLicense to use callback func on framework.Backend
* Refactor framework.Backend.RegisterLicense
* plugin: Prevent plugin.SystemViewClient.ResponseWrapData from getting JWTs
* plugin: Revert BackendType to remove TypePassthrough and related references
* Fix typo in plugin backends docs
2017-07-20 17:28:40 +00:00
|
|
|
DefaultLeaseTTL int `json:"default_lease_ttl" structs:"default_lease_ttl" mapstructure:"default_lease_ttl"`
|
|
|
|
MaxLeaseTTL int `json:"max_lease_ttl" structs:"max_lease_ttl" mapstructure:"max_lease_ttl"`
|
|
|
|
PluginName string `json:"plugin_name,omitempty" structs:"plugin_name,omitempty" mapstructure:"plugin_name"`
|
2015-03-11 19:03:28 +00:00
|
|
|
}
|