2015-03-12 00:27:39 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-08-31 18:27:49 +00:00
|
|
|
|
|
|
|
"github.com/fatih/structs"
|
2016-08-08 20:00:31 +00:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2015-03-12 00:27:39 +00:00
|
|
|
)
|
|
|
|
|
2015-09-25 13:46:20 +00:00
|
|
|
func (c *Sys) ListMounts() (map[string]*MountOutput, error) {
|
2015-03-13 17:32:22 +00:00
|
|
|
r := c.c.NewRequest("GET", "/v1/sys/mounts")
|
2015-03-12 00:27:39 +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]*MountOutput{}
|
|
|
|
for k, v := range result {
|
|
|
|
switch v.(type) {
|
|
|
|
case map[string]interface{}:
|
|
|
|
default:
|
|
|
|
continue
|
|
|
|
}
|
2016-08-08 20:00:31 +00:00
|
|
|
var res MountOutput
|
|
|
|
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-12 00:27:39 +00:00
|
|
|
}
|
|
|
|
|
2015-09-25 13:46:20 +00:00
|
|
|
func (c *Sys) Mount(path string, mountInfo *MountInput) error {
|
2015-08-31 18:27:49 +00:00
|
|
|
body := structs.Map(mountInfo)
|
2015-03-12 00:27:39 +00:00
|
|
|
|
2015-03-13 17:32:22 +00:00
|
|
|
r := c.c.NewRequest("POST", fmt.Sprintf("/v1/sys/mounts/%s", path))
|
2015-03-12 00:27:39 +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
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Sys) Unmount(path string) error {
|
2015-03-13 17:32:22 +00:00
|
|
|
r := c.c.NewRequest("DELETE", fmt.Sprintf("/v1/sys/mounts/%s", path))
|
2015-03-12 00:27:39 +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-12 00:27:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-09-02 19:56:58 +00:00
|
|
|
func (c *Sys) Remount(from, to string) error {
|
2015-08-31 18:27:49 +00:00
|
|
|
body := map[string]interface{}{
|
2015-09-02 19:56:58 +00:00
|
|
|
"from": from,
|
|
|
|
"to": to,
|
2015-08-31 18:27:49 +00:00
|
|
|
}
|
2015-03-12 00:27:39 +00:00
|
|
|
|
2015-03-13 17:32:22 +00:00
|
|
|
r := c.c.NewRequest("POST", "/v1/sys/remount")
|
2015-03-12 00:27:39 +00:00
|
|
|
if err := r.SetJSONBody(body); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := c.c.RawRequest(r)
|
2015-04-07 17:46:47 +00:00
|
|
|
if err == nil {
|
|
|
|
defer resp.Body.Close()
|
|
|
|
}
|
2015-03-12 00:27:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-09-25 13:46:20 +00:00
|
|
|
func (c *Sys) TuneMount(path string, config MountConfigInput) error {
|
2015-09-09 19:24:45 +00:00
|
|
|
body := structs.Map(config)
|
2015-09-02 19:56:58 +00:00
|
|
|
r := c.c.NewRequest("POST", fmt.Sprintf("/v1/sys/mounts/%s/tune", path))
|
|
|
|
if err := r.SetJSONBody(body); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := c.c.RawRequest(r)
|
|
|
|
if err == nil {
|
|
|
|
defer resp.Body.Close()
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-02-02 23:11:05 +00:00
|
|
|
func (c *Sys) MountConfig(path string) (*MountConfigOutput, error) {
|
2015-09-02 19:56:58 +00:00
|
|
|
r := c.c.NewRequest("GET", fmt.Sprintf("/v1/sys/mounts/%s/tune", path))
|
|
|
|
|
|
|
|
resp, err := c.c.RawRequest(r)
|
2016-02-02 23:11:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2015-09-02 19:56:58 +00:00
|
|
|
}
|
2016-02-02 23:11:05 +00:00
|
|
|
defer resp.Body.Close()
|
2016-08-08 20:00:31 +00:00
|
|
|
|
2016-02-02 23:11:05 +00:00
|
|
|
var result MountConfigOutput
|
2016-08-14 18:52:45 +00:00
|
|
|
err = resp.DecodeJSON(&result)
|
2016-08-08 20:00:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-02-02 23:11:05 +00:00
|
|
|
return &result, err
|
2015-09-02 19:56:58 +00:00
|
|
|
}
|
|
|
|
|
2015-09-25 13:46:20 +00:00
|
|
|
type MountInput struct {
|
|
|
|
Type string `json:"type" structs:"type"`
|
|
|
|
Description string `json:"description" structs:"description"`
|
|
|
|
Config MountConfigInput `json:"config" structs:"config"`
|
2017-02-16 16:37:27 +00:00
|
|
|
Local bool `json:"local" structs:"local"`
|
2015-09-09 19:24:45 +00:00
|
|
|
}
|
|
|
|
|
2015-09-25 13:46:20 +00:00
|
|
|
type MountConfigInput struct {
|
|
|
|
DefaultLeaseTTL string `json:"default_lease_ttl" structs:"default_lease_ttl" mapstructure:"default_lease_ttl"`
|
|
|
|
MaxLeaseTTL string `json:"max_lease_ttl" structs:"max_lease_ttl" mapstructure:"max_lease_ttl"`
|
2017-03-08 14:20:09 +00:00
|
|
|
ForceNoCache bool `json:"force_no_cache" structs:"force_no_cache" mapstructure:"force_no_cache"`
|
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
|
|
|
PluginName string `json:"plugin_name,omitempty" structs:"plugin_name,omitempty" mapstructure:"plugin_name"`
|
2015-09-25 13:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type MountOutput struct {
|
|
|
|
Type string `json:"type" structs:"type"`
|
|
|
|
Description string `json:"description" structs:"description"`
|
2017-06-26 17:14:36 +00:00
|
|
|
Accessor string `json:"accessor" structs:"accessor"`
|
2015-09-25 13:46:20 +00:00
|
|
|
Config MountConfigOutput `json:"config" structs:"config"`
|
2017-02-16 16:37:27 +00:00
|
|
|
Local bool `json:"local" structs:"local"`
|
2015-09-25 13:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type MountConfigOutput 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"`
|
|
|
|
ForceNoCache bool `json:"force_no_cache" structs:"force_no_cache" mapstructure:"force_no_cache"`
|
|
|
|
PluginName string `json:"plugin_name,omitempty" structs:"plugin_name,omitempty" mapstructure:"plugin_name"`
|
2015-03-12 00:27:39 +00:00
|
|
|
}
|