2019-10-16 20:53:39 +00:00
|
|
|
package nomad
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
metrics "github.com/armon/go-metrics"
|
|
|
|
log "github.com/hashicorp/go-hclog"
|
|
|
|
memdb "github.com/hashicorp/go-memdb"
|
|
|
|
multierror "github.com/hashicorp/go-multierror"
|
|
|
|
"github.com/hashicorp/nomad/acl"
|
|
|
|
"github.com/hashicorp/nomad/nomad/state"
|
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CSIVolume wraps the structs.CSIVolume with request data and server context
|
|
|
|
type CSIVolume struct {
|
|
|
|
srv *Server
|
|
|
|
logger log.Logger
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryACLObj looks up the ACL token in the request and returns the acl.ACL object
|
|
|
|
// - fallback to node secret ids
|
2020-02-11 11:41:18 +00:00
|
|
|
func (srv *Server) QueryACLObj(args *structs.QueryOptions, allowNodeAccess bool) (*acl.ACL, error) {
|
2019-10-16 20:53:39 +00:00
|
|
|
// Lookup the token
|
|
|
|
aclObj, err := srv.ResolveToken(args.AuthToken)
|
|
|
|
if err != nil {
|
|
|
|
// If ResolveToken had an unexpected error return that
|
2020-02-11 11:41:18 +00:00
|
|
|
if !structs.IsErrTokenNotFound(err) {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we don't allow access to this endpoint from Nodes, then return token
|
|
|
|
// not found.
|
|
|
|
if !allowNodeAccess {
|
|
|
|
return nil, structs.ErrTokenNotFound
|
|
|
|
}
|
2019-10-16 20:53:39 +00:00
|
|
|
|
|
|
|
ws := memdb.NewWatchSet()
|
2020-02-11 11:41:18 +00:00
|
|
|
// Attempt to lookup AuthToken as a Node.SecretID since nodes may call
|
|
|
|
// call this endpoint and don't have an ACL token.
|
2019-10-16 20:53:39 +00:00
|
|
|
node, stateErr := srv.fsm.State().NodeBySecretID(ws, args.AuthToken)
|
|
|
|
if stateErr != nil {
|
|
|
|
// Return the original ResolveToken error with this err
|
|
|
|
var merr multierror.Error
|
|
|
|
merr.Errors = append(merr.Errors, err, stateErr)
|
|
|
|
return nil, merr.ErrorOrNil()
|
|
|
|
}
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
// We did not find a Node for this ID, so return Token Not Found.
|
2019-10-16 20:53:39 +00:00
|
|
|
if node == nil {
|
|
|
|
return nil, structs.ErrTokenNotFound
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
// Return either the users aclObj, or nil if ACLs are disabled.
|
2019-10-16 20:53:39 +00:00
|
|
|
return aclObj, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteACLObj calls QueryACLObj for a WriteRequest
|
2020-02-11 11:41:18 +00:00
|
|
|
func (srv *Server) WriteACLObj(args *structs.WriteRequest, allowNodeAccess bool) (*acl.ACL, error) {
|
2019-10-16 20:53:39 +00:00
|
|
|
opts := &structs.QueryOptions{
|
|
|
|
Region: args.RequestRegion(),
|
|
|
|
Namespace: args.RequestNamespace(),
|
|
|
|
AuthToken: args.AuthToken,
|
|
|
|
}
|
2020-02-11 11:41:18 +00:00
|
|
|
return srv.QueryACLObj(opts, allowNodeAccess)
|
2019-10-16 20:53:39 +00:00
|
|
|
}
|
|
|
|
|
2020-01-28 15:28:34 +00:00
|
|
|
const (
|
|
|
|
csiVolumeTable = "csi_volumes"
|
|
|
|
csiPluginTable = "csi_plugins"
|
|
|
|
)
|
|
|
|
|
|
|
|
// replySetIndex sets the reply with the last index that modified the table
|
|
|
|
func (srv *Server) replySetIndex(table string, reply *structs.QueryMeta) error {
|
|
|
|
s := srv.fsm.State()
|
|
|
|
|
|
|
|
index, err := s.Index(table)
|
2019-10-16 20:53:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
reply.Index = index
|
|
|
|
|
|
|
|
// Set the query response
|
|
|
|
srv.setQueryMeta(reply)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// List replies with CSIVolumes, filtered by ACL access
|
|
|
|
func (v *CSIVolume) List(args *structs.CSIVolumeListRequest, reply *structs.CSIVolumeListResponse) error {
|
|
|
|
if done, err := v.srv.forward("CSIVolume.List", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
allowCSIAccess := acl.NamespaceValidator(acl.NamespaceCapabilityCSIAccess)
|
|
|
|
aclObj, err := v.srv.QueryACLObj(&args.QueryOptions, false)
|
2019-10-16 20:53:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
metricsStart := time.Now()
|
|
|
|
defer metrics.MeasureSince([]string{"nomad", "volume", "list"}, metricsStart)
|
|
|
|
|
|
|
|
ns := args.RequestNamespace()
|
|
|
|
opts := blockingOptions{
|
|
|
|
queryOpts: &args.QueryOptions,
|
|
|
|
queryMeta: &reply.QueryMeta,
|
|
|
|
run: func(ws memdb.WatchSet, state *state.StateStore) error {
|
|
|
|
// Query all volumes
|
|
|
|
var err error
|
|
|
|
var iter memdb.ResultIterator
|
|
|
|
|
2020-01-28 15:28:34 +00:00
|
|
|
if args.PluginID != "" {
|
|
|
|
iter, err = state.CSIVolumesByPluginID(ws, args.PluginID)
|
2019-10-16 20:53:39 +00:00
|
|
|
} else {
|
2020-01-09 21:28:14 +00:00
|
|
|
iter, err = state.CSIVolumes(ws)
|
2019-10-16 20:53:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collect results, filter by ACL access
|
|
|
|
var vs []*structs.CSIVolListStub
|
|
|
|
cache := map[string]bool{}
|
|
|
|
|
|
|
|
for {
|
|
|
|
raw := iter.Next()
|
|
|
|
if raw == nil {
|
|
|
|
break
|
|
|
|
}
|
2020-01-28 15:28:34 +00:00
|
|
|
|
2019-10-16 20:53:39 +00:00
|
|
|
vol := raw.(*structs.CSIVolume)
|
2020-01-28 15:28:34 +00:00
|
|
|
vol, err := state.CSIVolumeDenormalizePlugins(ws, vol)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-10-16 20:53:39 +00:00
|
|
|
|
|
|
|
// Filter on the request namespace to avoid ACL checks by volume
|
|
|
|
if ns != "" && vol.Namespace != args.RequestNamespace() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cache ACL checks QUESTION: are they expensive?
|
|
|
|
allowed, ok := cache[vol.Namespace]
|
|
|
|
if !ok {
|
2020-02-11 11:41:18 +00:00
|
|
|
allowed = allowCSIAccess(aclObj, vol.Namespace)
|
2019-10-16 20:53:39 +00:00
|
|
|
cache[vol.Namespace] = allowed
|
|
|
|
}
|
|
|
|
|
|
|
|
if allowed {
|
|
|
|
vs = append(vs, vol.Stub())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
reply.Volumes = vs
|
2020-01-28 15:28:34 +00:00
|
|
|
return v.srv.replySetIndex(csiVolumeTable, &reply.QueryMeta)
|
2019-10-16 20:53:39 +00:00
|
|
|
}}
|
|
|
|
return v.srv.blockingRPC(&opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get fetches detailed information about a specific volume
|
|
|
|
func (v *CSIVolume) Get(args *structs.CSIVolumeGetRequest, reply *structs.CSIVolumeGetResponse) error {
|
|
|
|
if done, err := v.srv.forward("CSIVolume.Get", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
allowCSIAccess := acl.NamespaceValidator(acl.NamespaceCapabilityCSIAccess)
|
|
|
|
aclObj, err := v.srv.QueryACLObj(&args.QueryOptions, true)
|
2019-10-16 20:53:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
if !allowCSIAccess(aclObj, args.RequestNamespace()) {
|
2019-10-16 20:53:39 +00:00
|
|
|
return structs.ErrPermissionDenied
|
|
|
|
}
|
|
|
|
|
|
|
|
metricsStart := time.Now()
|
|
|
|
defer metrics.MeasureSince([]string{"nomad", "volume", "get"}, metricsStart)
|
|
|
|
|
|
|
|
opts := blockingOptions{
|
|
|
|
queryOpts: &args.QueryOptions,
|
|
|
|
queryMeta: &reply.QueryMeta,
|
|
|
|
run: func(ws memdb.WatchSet, state *state.StateStore) error {
|
2020-01-09 21:28:14 +00:00
|
|
|
vol, err := state.CSIVolumeByID(ws, args.ID)
|
2019-10-16 20:53:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-01-28 15:28:34 +00:00
|
|
|
if vol != nil {
|
|
|
|
vol, err = state.CSIVolumeDenormalize(ws, vol)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2019-10-16 20:53:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
reply.Volume = vol
|
2020-01-28 15:28:34 +00:00
|
|
|
return v.srv.replySetIndex(csiVolumeTable, &reply.QueryMeta)
|
2019-10-16 20:53:39 +00:00
|
|
|
}}
|
|
|
|
return v.srv.blockingRPC(&opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register registers a new volume
|
|
|
|
func (v *CSIVolume) Register(args *structs.CSIVolumeRegisterRequest, reply *structs.CSIVolumeRegisterResponse) error {
|
|
|
|
if done, err := v.srv.forward("CSIVolume.Register", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
allowCSIVolumeManagement := acl.NamespaceValidator(acl.NamespaceCapabilityCSICreateVolume)
|
|
|
|
aclObj, err := v.srv.WriteACLObj(&args.WriteRequest, false)
|
2019-10-16 20:53:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
metricsStart := time.Now()
|
|
|
|
defer metrics.MeasureSince([]string{"nomad", "volume", "register"}, metricsStart)
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
if !allowCSIVolumeManagement(aclObj, args.RequestNamespace()) {
|
2019-10-16 20:53:39 +00:00
|
|
|
return structs.ErrPermissionDenied
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is the only namespace we ACL checked, force all the volumes to use it
|
2020-02-03 20:40:28 +00:00
|
|
|
for _, vol := range args.Volumes {
|
|
|
|
vol.Namespace = args.RequestNamespace()
|
|
|
|
if err = vol.Validate(); err != nil {
|
2019-10-16 20:53:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 13:00:00 +00:00
|
|
|
resp, index, err := v.srv.raftApply(structs.CSIVolumeRegisterRequestType, args)
|
2019-10-16 20:53:39 +00:00
|
|
|
if err != nil {
|
2020-02-03 20:40:28 +00:00
|
|
|
v.logger.Error("csi raft apply failed", "error", err, "method", "register")
|
2019-10-16 20:53:39 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-02-04 13:00:00 +00:00
|
|
|
if respErr, ok := resp.(error); ok {
|
|
|
|
return respErr
|
|
|
|
}
|
2019-10-16 20:53:39 +00:00
|
|
|
|
2020-02-03 20:40:28 +00:00
|
|
|
reply.Index = index
|
|
|
|
v.srv.setQueryMeta(&reply.QueryMeta)
|
|
|
|
return nil
|
2019-10-16 20:53:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Deregister removes a set of volumes
|
|
|
|
func (v *CSIVolume) Deregister(args *structs.CSIVolumeDeregisterRequest, reply *structs.CSIVolumeDeregisterResponse) error {
|
|
|
|
if done, err := v.srv.forward("CSIVolume.Deregister", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
allowCSIVolumeManagement := acl.NamespaceValidator(acl.NamespaceCapabilityCSICreateVolume)
|
|
|
|
aclObj, err := v.srv.WriteACLObj(&args.WriteRequest, false)
|
2019-10-16 20:53:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
metricsStart := time.Now()
|
|
|
|
defer metrics.MeasureSince([]string{"nomad", "volume", "deregister"}, metricsStart)
|
|
|
|
|
|
|
|
ns := args.RequestNamespace()
|
2020-02-11 11:41:18 +00:00
|
|
|
if !allowCSIVolumeManagement(aclObj, ns) {
|
2019-10-16 20:53:39 +00:00
|
|
|
return structs.ErrPermissionDenied
|
|
|
|
}
|
|
|
|
|
2020-02-04 13:00:00 +00:00
|
|
|
resp, index, err := v.srv.raftApply(structs.CSIVolumeDeregisterRequestType, args)
|
2019-10-16 20:53:39 +00:00
|
|
|
if err != nil {
|
2020-02-03 20:40:28 +00:00
|
|
|
v.logger.Error("csi raft apply failed", "error", err, "method", "deregister")
|
2019-10-16 20:53:39 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-02-04 13:00:00 +00:00
|
|
|
if respErr, ok := resp.(error); ok {
|
|
|
|
return respErr
|
|
|
|
}
|
|
|
|
|
|
|
|
reply.Index = index
|
|
|
|
v.srv.setQueryMeta(&reply.QueryMeta)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Claim claims a volume
|
|
|
|
func (v *CSIVolume) Claim(args *structs.CSIVolumeClaimRequest, reply *structs.CSIVolumeClaimResponse) error {
|
|
|
|
if done, err := v.srv.forward("CSIVolume.Claim", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
allowCSIAccess := acl.NamespaceValidator(acl.NamespaceCapabilityCSIAccess)
|
|
|
|
aclObj, err := v.srv.WriteACLObj(&args.WriteRequest, true)
|
2020-02-04 13:00:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
metricsStart := time.Now()
|
|
|
|
defer metrics.MeasureSince([]string{"nomad", "volume", "claim"}, metricsStart)
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
if !allowCSIAccess(aclObj, args.RequestNamespace()) {
|
2020-02-04 13:00:00 +00:00
|
|
|
return structs.ErrPermissionDenied
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, index, err := v.srv.raftApply(structs.CSIVolumeClaimRequestType, args)
|
|
|
|
if err != nil {
|
|
|
|
v.logger.Error("csi raft apply failed", "error", err, "method", "claim")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if respErr, ok := resp.(error); ok {
|
|
|
|
return respErr
|
|
|
|
}
|
2019-10-16 20:53:39 +00:00
|
|
|
|
2020-02-03 20:40:28 +00:00
|
|
|
reply.Index = index
|
|
|
|
v.srv.setQueryMeta(&reply.QueryMeta)
|
|
|
|
return nil
|
2020-01-28 15:28:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CSIPlugin wraps the structs.CSIPlugin with request data and server context
|
|
|
|
type CSIPlugin struct {
|
|
|
|
srv *Server
|
|
|
|
logger log.Logger
|
|
|
|
}
|
|
|
|
|
|
|
|
// List replies with CSIPlugins, filtered by ACL access
|
|
|
|
func (v *CSIPlugin) List(args *structs.CSIPluginListRequest, reply *structs.CSIPluginListResponse) error {
|
|
|
|
if done, err := v.srv.forward("CSIPlugin.List", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
allowCSIAccess := acl.NamespaceValidator(acl.NamespaceCapabilityCSIAccess)
|
|
|
|
aclObj, err := v.srv.QueryACLObj(&args.QueryOptions, false)
|
2020-01-28 15:28:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
if !allowCSIAccess(aclObj, args.RequestNamespace()) {
|
2020-01-28 15:28:34 +00:00
|
|
|
return structs.ErrPermissionDenied
|
|
|
|
}
|
|
|
|
|
|
|
|
metricsStart := time.Now()
|
|
|
|
defer metrics.MeasureSince([]string{"nomad", "plugin", "list"}, metricsStart)
|
|
|
|
|
|
|
|
opts := blockingOptions{
|
|
|
|
queryOpts: &args.QueryOptions,
|
|
|
|
queryMeta: &reply.QueryMeta,
|
|
|
|
run: func(ws memdb.WatchSet, state *state.StateStore) error {
|
|
|
|
// Query all plugins
|
|
|
|
iter, err := state.CSIPlugins(ws)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collect results
|
|
|
|
var ps []*structs.CSIPluginListStub
|
|
|
|
for {
|
|
|
|
raw := iter.Next()
|
|
|
|
if raw == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
plug := raw.(*structs.CSIPlugin)
|
|
|
|
|
|
|
|
// FIXME we should filter the ACL access for the plugin's
|
|
|
|
// namespace, but plugins don't currently have namespaces
|
|
|
|
ps = append(ps, plug.Stub())
|
|
|
|
}
|
|
|
|
|
|
|
|
reply.Plugins = ps
|
|
|
|
return v.srv.replySetIndex(csiPluginTable, &reply.QueryMeta)
|
|
|
|
}}
|
|
|
|
return v.srv.blockingRPC(&opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get fetches detailed information about a specific plugin
|
|
|
|
func (v *CSIPlugin) Get(args *structs.CSIPluginGetRequest, reply *structs.CSIPluginGetResponse) error {
|
|
|
|
if done, err := v.srv.forward("CSIPlugin.Get", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
allowCSIAccess := acl.NamespaceValidator(acl.NamespaceCapabilityCSIAccess)
|
|
|
|
aclObj, err := v.srv.QueryACLObj(&args.QueryOptions, false)
|
2020-01-28 15:28:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-11 11:41:18 +00:00
|
|
|
if !allowCSIAccess(aclObj, args.RequestNamespace()) {
|
2020-01-28 15:28:34 +00:00
|
|
|
return structs.ErrPermissionDenied
|
|
|
|
}
|
|
|
|
|
|
|
|
metricsStart := time.Now()
|
|
|
|
defer metrics.MeasureSince([]string{"nomad", "plugin", "get"}, metricsStart)
|
|
|
|
|
|
|
|
opts := blockingOptions{
|
|
|
|
queryOpts: &args.QueryOptions,
|
|
|
|
queryMeta: &reply.QueryMeta,
|
|
|
|
run: func(ws memdb.WatchSet, state *state.StateStore) error {
|
|
|
|
plug, err := state.CSIPluginByID(ws, args.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if plug != nil {
|
|
|
|
plug, err = state.CSIPluginDenormalize(ws, plug)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME we should re-check the ACL access for the plugin's
|
|
|
|
// namespace, but plugins don't currently have namespaces
|
|
|
|
|
|
|
|
reply.Plugin = plug
|
|
|
|
return v.srv.replySetIndex(csiPluginTable, &reply.QueryMeta)
|
|
|
|
}}
|
|
|
|
return v.srv.blockingRPC(&opts)
|
2019-10-16 20:53:39 +00:00
|
|
|
}
|
2020-02-11 15:23:55 +00:00
|
|
|
|
|
|
|
// controllerPublishVolume sends publish request to the CSI controller
|
|
|
|
// plugin associated with a volume, if any.
|
|
|
|
func (srv *Server) controllerPublishVolume(req *structs.CSIVolumeClaimRequest, resp *structs.CSIVolumeClaimResponse) error {
|
|
|
|
// TODO(tgross): implement me!
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// controllerUnpublishVolume sends an unpublish request to the CSI
|
|
|
|
// controller plugin associated with a volume, if any.
|
|
|
|
func (srv *Server) controllerUnpublishVolume(req *structs.CSIVolumeClaimRequest, nodeID string) error {
|
|
|
|
// TODO(tgross): implement me!
|
|
|
|
return nil
|
|
|
|
}
|