2017-05-24 13:34:59 +00:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
2018-06-04 14:19:26 +00:00
|
|
|
// source: vault/request_forwarding_service.proto
|
2016-08-19 15:49:25 +00:00
|
|
|
|
2018-09-22 21:58:39 +00:00
|
|
|
package vault
|
2016-08-19 15:49:25 +00:00
|
|
|
|
2018-09-22 21:58:39 +00:00
|
|
|
import (
|
2019-04-13 03:13:14 +00:00
|
|
|
context "context"
|
2018-09-22 21:58:39 +00:00
|
|
|
fmt "fmt"
|
|
|
|
proto "github.com/golang/protobuf/proto"
|
|
|
|
forwarding "github.com/hashicorp/vault/helper/forwarding"
|
2016-08-19 15:49:25 +00:00
|
|
|
grpc "google.golang.org/grpc"
|
Combined Database Backend: Static Accounts (#6834)
* Add priority queue to sdk
* fix issue of storing pointers and now copy
* update to use copy structure
* Remove file, put Item struct def. into other file
* add link
* clean up docs
* refactor internal data structure to hide heap method implementations. Other cleanup after feedback
* rename PushItem and PopItem to just Push/Pop, after encapsulating the heap methods
* updates after feedback
* refactoring/renaming
* guard against pushing a nil item
* minor updates after feedback
* Add SetCredentials, GenerateCredentials gRPC methods to combined database backend gPRC
* Initial Combined database backend implementation of static accounts and automatic rotation
* vendor updates
* initial implementation of static accounts with Combined database backend, starting with PostgreSQL implementation
* add lock and setup of rotation queue
* vendor the queue
* rebase on new method signature of queue
* remove mongo tests for now
* update default role sql
* gofmt after rebase
* cleanup after rebasing to remove checks for ErrNotFound error
* rebase cdcr-priority-queue
* vendor dependencies with 'go mod vendor'
* website database docs for Static Role support
* document the rotate-role API endpoint
* postgres specific static role docs
* use constants for paths
* updates from review
* remove dead code
* combine and clarify error message for older plugins
* Update builtin/logical/database/backend.go
Co-Authored-By: Jim Kalafut <jim@kalafut.net>
* cleanups from feedback
* code and comment cleanups
* move db.RLock higher to protect db.GenerateCredentials call
* Return output with WALID if we failed to delete the WAL
* Update builtin/logical/database/path_creds_create.go
Co-Authored-By: Jim Kalafut <jim@kalafut.net>
* updates after running 'make fmt'
* update after running 'make proto'
* Update builtin/logical/database/path_roles.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* Update builtin/logical/database/path_roles.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* update comment and remove and rearrange some dead code
* Update website/source/api/secret/databases/index.html.md
Co-Authored-By: Jim Kalafut <jim@kalafut.net>
* cleanups after review
* Update sdk/database/dbplugin/grpc_transport.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* code cleanup after feedback
* remove PasswordLastSet; it's not used
* document GenerateCredentials and SetCredentials
* Update builtin/logical/database/path_rotate_credentials.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* wrap pop and popbykey in backend methods to protect against nil cred rotation queue
* use strings.HasPrefix instead of direct equality check for path
* Forgot to commit this
* updates after feedback
* re-purpose an outdated test to now check that static and dynamic roles cannot share a name
* check for unique name across dynamic and static roles
* refactor loadStaticWALs to return a map of name/setCredentialsWAL struct to consolidate where we're calling set credentials
* remove commented out code
* refactor to have loadstaticwals filter out wals for roles that no longer exist
* return error if nil input given
* add nil check for input into setStaticAccount
* Update builtin/logical/database/path_roles.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* add constant for queue tick time in seconds, used for comparrison in updates
* Update builtin/logical/database/path_roles.go
Co-Authored-By: Jim Kalafut <jim@kalafut.net>
* code cleanup after review
* remove misplaced code comment
* remove commented out code
* create a queue in the Factory method, even if it's never used
* update path_roles to use a common set of fields, with specific overrides for dynamic/static roles by type
* document new method
* move rotation things into a specific file
* rename test file and consolidate some static account tests
* Update builtin/logical/database/path_roles.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* Update builtin/logical/database/rotation.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* Update builtin/logical/database/rotation.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* Update builtin/logical/database/rotation.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* Update builtin/logical/database/rotation.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* Update builtin/logical/database/rotation.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* update code comments, method names, and move more methods into rotation.go
* update comments to be capitalized
* remove the item from the queue before we try to destroy it
* findStaticWAL returns an error
* use lowercase keys when encoding WAL entries
* small cleanups
* remove vestigial static account check
* remove redundant DeleteWAL call in populate queue
* if we error on loading role, push back to queue with 10 second backoff
* poll in initqueue to make sure the backend is setup and can write/delete data
* add revoke_user_on_delete flag to allow users to opt-in to revoking the static database user on delete of the Vault role. Default false
* add code comments on read-only loop
* code comment updates
* re-push if error returned from find static wal
* add locksutil and acquire locks when pop'ing from the queue
* grab exclusive locks for updating static roles
* Add SetCredentials and GenerateCredentials stubs to mockPlugin
* add a switch in initQueue to listen for cancelation
* remove guard on zero time, it should have no affect
* create a new context in Factory to pass on and use for closing the backend queue
* restore master copy of vendor dir
2019-06-19 19:45:39 +00:00
|
|
|
codes "google.golang.org/grpc/codes"
|
|
|
|
status "google.golang.org/grpc/status"
|
2019-02-05 21:02:15 +00:00
|
|
|
math "math"
|
2016-08-19 15:49:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = fmt.Errorf
|
|
|
|
var _ = math.Inf
|
|
|
|
|
2017-10-23 21:45:05 +00:00
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the proto package it is being compiled against.
|
|
|
|
// A compilation error at this line likely means your copy of the
|
|
|
|
// proto package needs to be updated.
|
2019-04-13 03:13:14 +00:00
|
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
2017-10-23 21:45:05 +00:00
|
|
|
|
2017-05-24 19:06:56 +00:00
|
|
|
type EchoRequest struct {
|
2018-07-11 00:49:48 +00:00
|
|
|
Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
|
2017-10-23 18:59:37 +00:00
|
|
|
// ClusterAddr is used to send up a standby node's address to the active
|
|
|
|
// node upon heartbeat
|
2018-07-11 00:49:48 +00:00
|
|
|
ClusterAddr string `protobuf:"bytes,2,opt,name=cluster_addr,json=clusterAddr,proto3" json:"cluster_addr,omitempty"`
|
2017-10-23 18:59:37 +00:00
|
|
|
// ClusterAddrs is used to send up a list of cluster addresses to a dr
|
|
|
|
// primary from a dr secondary
|
2018-07-11 00:49:48 +00:00
|
|
|
ClusterAddrs []string `protobuf:"bytes,3,rep,name=cluster_addrs,json=clusterAddrs,proto3" json:"cluster_addrs,omitempty"`
|
2018-05-03 19:38:53 +00:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *EchoRequest) Reset() { *m = EchoRequest{} }
|
|
|
|
func (m *EchoRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*EchoRequest) ProtoMessage() {}
|
|
|
|
func (*EchoRequest) Descriptor() ([]byte, []int) {
|
2018-09-22 21:58:39 +00:00
|
|
|
return fileDescriptor_f5f7512e4ab7b58a, []int{0}
|
2018-05-03 19:38:53 +00:00
|
|
|
}
|
2018-09-22 21:58:39 +00:00
|
|
|
|
2018-05-03 19:38:53 +00:00
|
|
|
func (m *EchoRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_EchoRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *EchoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_EchoRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
2018-09-22 21:58:39 +00:00
|
|
|
func (m *EchoRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_EchoRequest.Merge(m, src)
|
2018-05-03 19:38:53 +00:00
|
|
|
}
|
|
|
|
func (m *EchoRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_EchoRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *EchoRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_EchoRequest.DiscardUnknown(m)
|
2017-05-24 19:06:56 +00:00
|
|
|
}
|
|
|
|
|
2018-05-03 19:38:53 +00:00
|
|
|
var xxx_messageInfo_EchoRequest proto.InternalMessageInfo
|
2017-05-24 19:06:56 +00:00
|
|
|
|
|
|
|
func (m *EchoRequest) GetMessage() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Message
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *EchoRequest) GetClusterAddr() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ClusterAddr
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2017-10-23 18:59:37 +00:00
|
|
|
func (m *EchoRequest) GetClusterAddrs() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ClusterAddrs
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-05-24 19:06:56 +00:00
|
|
|
type EchoReply struct {
|
2018-07-11 00:49:48 +00:00
|
|
|
Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
|
|
|
|
ClusterAddrs []string `protobuf:"bytes,2,rep,name=cluster_addrs,json=clusterAddrs,proto3" json:"cluster_addrs,omitempty"`
|
|
|
|
ReplicationState uint32 `protobuf:"varint,3,opt,name=replication_state,json=replicationState,proto3" json:"replication_state,omitempty"`
|
2018-05-03 19:38:53 +00:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
2017-05-24 19:06:56 +00:00
|
|
|
}
|
|
|
|
|
2018-05-03 19:38:53 +00:00
|
|
|
func (m *EchoReply) Reset() { *m = EchoReply{} }
|
|
|
|
func (m *EchoReply) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*EchoReply) ProtoMessage() {}
|
|
|
|
func (*EchoReply) Descriptor() ([]byte, []int) {
|
2018-09-22 21:58:39 +00:00
|
|
|
return fileDescriptor_f5f7512e4ab7b58a, []int{1}
|
2018-05-03 19:38:53 +00:00
|
|
|
}
|
2018-09-22 21:58:39 +00:00
|
|
|
|
2018-05-03 19:38:53 +00:00
|
|
|
func (m *EchoReply) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_EchoReply.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *EchoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_EchoReply.Marshal(b, m, deterministic)
|
|
|
|
}
|
2018-09-22 21:58:39 +00:00
|
|
|
func (m *EchoReply) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_EchoReply.Merge(m, src)
|
2018-05-03 19:38:53 +00:00
|
|
|
}
|
|
|
|
func (m *EchoReply) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_EchoReply.Size(m)
|
|
|
|
}
|
|
|
|
func (m *EchoReply) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_EchoReply.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_EchoReply proto.InternalMessageInfo
|
2017-05-24 19:06:56 +00:00
|
|
|
|
|
|
|
func (m *EchoReply) GetMessage() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Message
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *EchoReply) GetClusterAddrs() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ClusterAddrs
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-01-18 03:17:47 +00:00
|
|
|
func (m *EchoReply) GetReplicationState() uint32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.ReplicationState
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
type ClientKey struct {
|
|
|
|
Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
|
|
|
|
X []byte `protobuf:"bytes,2,opt,name=x,proto3" json:"x,omitempty"`
|
|
|
|
Y []byte `protobuf:"bytes,3,opt,name=y,proto3" json:"y,omitempty"`
|
|
|
|
D []byte `protobuf:"bytes,4,opt,name=d,proto3" json:"d,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ClientKey) Reset() { *m = ClientKey{} }
|
|
|
|
func (m *ClientKey) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ClientKey) ProtoMessage() {}
|
|
|
|
func (*ClientKey) Descriptor() ([]byte, []int) {
|
2018-09-22 21:58:39 +00:00
|
|
|
return fileDescriptor_f5f7512e4ab7b58a, []int{2}
|
2018-09-18 03:03:00 +00:00
|
|
|
}
|
2018-09-22 21:58:39 +00:00
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
func (m *ClientKey) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ClientKey.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ClientKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ClientKey.Marshal(b, m, deterministic)
|
|
|
|
}
|
2018-09-22 21:58:39 +00:00
|
|
|
func (m *ClientKey) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ClientKey.Merge(m, src)
|
2018-09-18 03:03:00 +00:00
|
|
|
}
|
|
|
|
func (m *ClientKey) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ClientKey.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ClientKey) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ClientKey.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ClientKey proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *ClientKey) GetType() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Type
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ClientKey) GetX() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.X
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ClientKey) GetY() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Y
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ClientKey) GetD() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.D
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type PerfStandbyElectionInput struct {
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PerfStandbyElectionInput) Reset() { *m = PerfStandbyElectionInput{} }
|
|
|
|
func (m *PerfStandbyElectionInput) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*PerfStandbyElectionInput) ProtoMessage() {}
|
|
|
|
func (*PerfStandbyElectionInput) Descriptor() ([]byte, []int) {
|
2018-09-22 21:58:39 +00:00
|
|
|
return fileDescriptor_f5f7512e4ab7b58a, []int{3}
|
2018-09-18 03:03:00 +00:00
|
|
|
}
|
2018-09-22 21:58:39 +00:00
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
func (m *PerfStandbyElectionInput) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_PerfStandbyElectionInput.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *PerfStandbyElectionInput) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_PerfStandbyElectionInput.Marshal(b, m, deterministic)
|
|
|
|
}
|
2018-09-22 21:58:39 +00:00
|
|
|
func (m *PerfStandbyElectionInput) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_PerfStandbyElectionInput.Merge(m, src)
|
2018-09-18 03:03:00 +00:00
|
|
|
}
|
|
|
|
func (m *PerfStandbyElectionInput) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_PerfStandbyElectionInput.Size(m)
|
|
|
|
}
|
|
|
|
func (m *PerfStandbyElectionInput) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_PerfStandbyElectionInput.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_PerfStandbyElectionInput proto.InternalMessageInfo
|
|
|
|
|
|
|
|
type PerfStandbyElectionResponse struct {
|
|
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
|
ClusterId string `protobuf:"bytes,2,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
|
|
|
|
PrimaryClusterAddr string `protobuf:"bytes,3,opt,name=primary_cluster_addr,json=primaryClusterAddr,proto3" json:"primary_cluster_addr,omitempty"`
|
|
|
|
CaCert []byte `protobuf:"bytes,4,opt,name=ca_cert,json=caCert,proto3" json:"ca_cert,omitempty"`
|
|
|
|
ClientCert []byte `protobuf:"bytes,5,opt,name=client_cert,json=clientCert,proto3" json:"client_cert,omitempty"`
|
|
|
|
ClientKey *ClientKey `protobuf:"bytes,6,opt,name=client_key,json=clientKey,proto3" json:"client_key,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PerfStandbyElectionResponse) Reset() { *m = PerfStandbyElectionResponse{} }
|
|
|
|
func (m *PerfStandbyElectionResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*PerfStandbyElectionResponse) ProtoMessage() {}
|
|
|
|
func (*PerfStandbyElectionResponse) Descriptor() ([]byte, []int) {
|
2018-09-22 21:58:39 +00:00
|
|
|
return fileDescriptor_f5f7512e4ab7b58a, []int{4}
|
2018-09-18 03:03:00 +00:00
|
|
|
}
|
2018-09-22 21:58:39 +00:00
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
func (m *PerfStandbyElectionResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_PerfStandbyElectionResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *PerfStandbyElectionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_PerfStandbyElectionResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
2018-09-22 21:58:39 +00:00
|
|
|
func (m *PerfStandbyElectionResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_PerfStandbyElectionResponse.Merge(m, src)
|
2018-09-18 03:03:00 +00:00
|
|
|
}
|
|
|
|
func (m *PerfStandbyElectionResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_PerfStandbyElectionResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *PerfStandbyElectionResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_PerfStandbyElectionResponse.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_PerfStandbyElectionResponse proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *PerfStandbyElectionResponse) GetId() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Id
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PerfStandbyElectionResponse) GetClusterId() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ClusterId
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PerfStandbyElectionResponse) GetPrimaryClusterAddr() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.PrimaryClusterAddr
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PerfStandbyElectionResponse) GetCaCert() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.CaCert
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PerfStandbyElectionResponse) GetClientCert() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.ClientCert
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PerfStandbyElectionResponse) GetClientKey() *ClientKey {
|
|
|
|
if m != nil {
|
|
|
|
return m.ClientKey
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-05-24 19:06:56 +00:00
|
|
|
func init() {
|
|
|
|
proto.RegisterType((*EchoRequest)(nil), "vault.EchoRequest")
|
|
|
|
proto.RegisterType((*EchoReply)(nil), "vault.EchoReply")
|
2018-09-18 03:03:00 +00:00
|
|
|
proto.RegisterType((*ClientKey)(nil), "vault.ClientKey")
|
|
|
|
proto.RegisterType((*PerfStandbyElectionInput)(nil), "vault.PerfStandbyElectionInput")
|
|
|
|
proto.RegisterType((*PerfStandbyElectionResponse)(nil), "vault.PerfStandbyElectionResponse")
|
2017-05-24 19:06:56 +00:00
|
|
|
}
|
|
|
|
|
2019-02-05 21:02:15 +00:00
|
|
|
func init() {
|
|
|
|
proto.RegisterFile("vault/request_forwarding_service.proto", fileDescriptor_f5f7512e4ab7b58a)
|
|
|
|
}
|
|
|
|
|
|
|
|
var fileDescriptor_f5f7512e4ab7b58a = []byte{
|
|
|
|
// 493 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x53, 0x41, 0x6f, 0x1a, 0x3d,
|
|
|
|
0x10, 0x8d, 0x81, 0x10, 0x31, 0x90, 0x88, 0xf8, 0x8b, 0xf4, 0xad, 0xa8, 0xa2, 0x90, 0xad, 0x54,
|
|
|
|
0x21, 0x55, 0xda, 0x8d, 0xd2, 0x73, 0x0f, 0x2d, 0x4a, 0x25, 0xd4, 0x4b, 0xb5, 0xb9, 0xf5, 0xb2,
|
|
|
|
0x32, 0xf6, 0x04, 0xac, 0x2e, 0x6b, 0xd7, 0x36, 0x49, 0xf6, 0x27, 0xf7, 0xd6, 0x9f, 0x50, 0xad,
|
|
|
|
0xd7, 0x04, 0x10, 0x4d, 0x2f, 0x68, 0xe7, 0xcd, 0x63, 0xde, 0xf8, 0xf9, 0x19, 0xde, 0x3d, 0xb2,
|
|
|
|
0x75, 0xe1, 0x52, 0x83, 0x3f, 0xd7, 0x68, 0x5d, 0xfe, 0xa0, 0xcc, 0x13, 0x33, 0x42, 0x96, 0x8b,
|
|
|
|
0xdc, 0xa2, 0x79, 0x94, 0x1c, 0x13, 0x6d, 0x94, 0x53, 0xf4, 0xd8, 0xf3, 0x46, 0x97, 0x4b, 0x2c,
|
|
|
|
0x34, 0x9a, 0x74, 0xcb, 0x4b, 0x5d, 0xa5, 0xd1, 0x36, 0xac, 0x58, 0x41, 0xff, 0x8e, 0x2f, 0x55,
|
|
|
|
0xd6, 0x4c, 0xa3, 0x11, 0x9c, 0xac, 0xd0, 0x5a, 0xb6, 0xc0, 0x88, 0x8c, 0xc9, 0xa4, 0x97, 0x6d,
|
|
|
|
0x4a, 0x7a, 0x0d, 0x03, 0x5e, 0xac, 0xad, 0x43, 0x93, 0x33, 0x21, 0x4c, 0xd4, 0xf2, 0xed, 0x7e,
|
|
|
|
0xc0, 0x3e, 0x09, 0x61, 0xe8, 0x5b, 0x38, 0xdd, 0xa5, 0xd8, 0xa8, 0x3d, 0x6e, 0x4f, 0x7a, 0xd9,
|
|
|
|
0x60, 0x87, 0x63, 0xe3, 0x27, 0xe8, 0x35, 0x82, 0xba, 0xa8, 0xfe, 0x21, 0x77, 0x30, 0xab, 0x75,
|
|
|
|
0x38, 0x8b, 0xbe, 0x87, 0x73, 0x83, 0xba, 0x90, 0x9c, 0x39, 0xa9, 0xca, 0xdc, 0x3a, 0xe6, 0x30,
|
|
|
|
0x6a, 0x8f, 0xc9, 0xe4, 0x34, 0x1b, 0xee, 0x34, 0xee, 0x6b, 0x3c, 0x9e, 0x41, 0x6f, 0x5a, 0x48,
|
|
|
|
0x2c, 0xdd, 0x57, 0xac, 0x28, 0x85, 0x4e, 0xed, 0x42, 0x50, 0xf5, 0xdf, 0x74, 0x00, 0xe4, 0xd9,
|
|
|
|
0x1f, 0x6b, 0x90, 0x91, 0xe7, 0xba, 0xaa, 0xfc, 0xac, 0x41, 0x46, 0xaa, 0xba, 0x12, 0x51, 0xa7,
|
|
|
|
0xa9, 0x44, 0x3c, 0x82, 0xe8, 0x1b, 0x9a, 0x87, 0x7b, 0xc7, 0x4a, 0x31, 0xaf, 0xee, 0x0a, 0xe4,
|
|
|
|
0xb5, 0xcc, 0xac, 0xd4, 0x6b, 0x17, 0xff, 0x22, 0xf0, 0xe6, 0x2f, 0xcd, 0x0c, 0xad, 0x56, 0xa5,
|
|
|
|
0x45, 0x7a, 0x06, 0x2d, 0x29, 0x82, 0x6e, 0x4b, 0x0a, 0x7a, 0x09, 0xb0, 0x39, 0xa8, 0x14, 0xc1,
|
|
|
|
0xd5, 0x5e, 0x40, 0x66, 0x82, 0xde, 0xc0, 0x85, 0x36, 0x72, 0xc5, 0x4c, 0x95, 0xef, 0xd9, 0xdf,
|
|
|
|
0xf6, 0x44, 0x1a, 0x7a, 0xd3, 0x9d, 0x5b, 0xf8, 0x1f, 0x4e, 0x38, 0xcb, 0x39, 0x1a, 0x17, 0x16,
|
|
|
|
0xee, 0x72, 0x36, 0x45, 0xe3, 0xe8, 0x15, 0xf4, 0xb9, 0x37, 0xa0, 0x69, 0x1e, 0xfb, 0x26, 0x34,
|
|
|
|
0x90, 0x27, 0xa4, 0x10, 0xaa, 0xfc, 0x07, 0x56, 0x51, 0x77, 0x4c, 0x26, 0xfd, 0xdb, 0x61, 0xe2,
|
|
|
|
0x63, 0x94, 0xbc, 0x58, 0x57, 0x2f, 0x17, 0x3e, 0x6f, 0x7f, 0x13, 0x38, 0x0f, 0xc9, 0xf9, 0xf2,
|
|
|
|
0x12, 0x2f, 0xfa, 0x11, 0xce, 0x42, 0xb5, 0x49, 0xd5, 0x7f, 0xc9, 0x36, 0x7d, 0x49, 0x00, 0x47,
|
|
|
|
0x17, 0xfb, 0x60, 0x63, 0x4f, 0x7c, 0x44, 0x13, 0xe8, 0xd4, 0x01, 0xa1, 0x34, 0x28, 0xef, 0xc4,
|
|
|
|
0x73, 0x34, 0xdc, 0xc3, 0x74, 0x51, 0xc5, 0x47, 0xb4, 0x80, 0xeb, 0xda, 0x6f, 0x65, 0x56, 0xac,
|
|
|
|
0xe4, 0x78, 0x60, 0x7b, 0xb3, 0xc1, 0x55, 0xf8, 0xe3, 0x6b, 0xd7, 0x36, 0x8a, 0x5f, 0x27, 0x6c,
|
|
|
|
0x77, 0xbb, 0x21, 0x9f, 0xe3, 0xef, 0xe3, 0x85, 0x74, 0xcb, 0xf5, 0x3c, 0xe1, 0x6a, 0x95, 0x2e,
|
|
|
|
0x99, 0x5d, 0x4a, 0xae, 0x8c, 0x4e, 0x9b, 0x47, 0xe9, 0x7f, 0xe7, 0x5d, 0xff, 0xb4, 0x3e, 0xfc,
|
|
|
|
0x09, 0x00, 0x00, 0xff, 0xff, 0x03, 0x94, 0x0a, 0x17, 0xaa, 0x03, 0x00, 0x00,
|
|
|
|
}
|
|
|
|
|
2016-08-19 15:49:25 +00:00
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ context.Context
|
|
|
|
var _ grpc.ClientConn
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the grpc package it is being compiled against.
|
2016-11-17 15:06:26 +00:00
|
|
|
const _ = grpc.SupportPackageIsVersion4
|
2016-08-19 15:49:25 +00:00
|
|
|
|
2018-05-29 22:23:51 +00:00
|
|
|
// RequestForwardingClient is the client API for RequestForwarding service.
|
|
|
|
//
|
|
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
2016-08-19 15:49:25 +00:00
|
|
|
type RequestForwardingClient interface {
|
2017-01-06 22:08:43 +00:00
|
|
|
ForwardRequest(ctx context.Context, in *forwarding.Request, opts ...grpc.CallOption) (*forwarding.Response, error)
|
2017-05-24 19:06:56 +00:00
|
|
|
Echo(ctx context.Context, in *EchoRequest, opts ...grpc.CallOption) (*EchoReply, error)
|
2018-09-18 03:03:00 +00:00
|
|
|
PerformanceStandbyElectionRequest(ctx context.Context, in *PerfStandbyElectionInput, opts ...grpc.CallOption) (RequestForwarding_PerformanceStandbyElectionRequestClient, error)
|
2016-08-19 15:49:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type requestForwardingClient struct {
|
|
|
|
cc *grpc.ClientConn
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRequestForwardingClient(cc *grpc.ClientConn) RequestForwardingClient {
|
|
|
|
return &requestForwardingClient{cc}
|
|
|
|
}
|
|
|
|
|
2017-01-06 22:08:43 +00:00
|
|
|
func (c *requestForwardingClient) ForwardRequest(ctx context.Context, in *forwarding.Request, opts ...grpc.CallOption) (*forwarding.Response, error) {
|
2016-08-19 15:49:25 +00:00
|
|
|
out := new(forwarding.Response)
|
2018-05-29 22:23:51 +00:00
|
|
|
err := c.cc.Invoke(ctx, "/vault.RequestForwarding/ForwardRequest", in, out, opts...)
|
2016-08-19 15:49:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2017-05-24 19:06:56 +00:00
|
|
|
func (c *requestForwardingClient) Echo(ctx context.Context, in *EchoRequest, opts ...grpc.CallOption) (*EchoReply, error) {
|
|
|
|
out := new(EchoReply)
|
2018-05-29 22:23:51 +00:00
|
|
|
err := c.cc.Invoke(ctx, "/vault.RequestForwarding/Echo", in, out, opts...)
|
2017-05-24 19:06:56 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
func (c *requestForwardingClient) PerformanceStandbyElectionRequest(ctx context.Context, in *PerfStandbyElectionInput, opts ...grpc.CallOption) (RequestForwarding_PerformanceStandbyElectionRequestClient, error) {
|
|
|
|
stream, err := c.cc.NewStream(ctx, &_RequestForwarding_serviceDesc.Streams[0], "/vault.RequestForwarding/PerformanceStandbyElectionRequest", opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
x := &requestForwardingPerformanceStandbyElectionRequestClient{stream}
|
|
|
|
if err := x.ClientStream.SendMsg(in); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := x.ClientStream.CloseSend(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type RequestForwarding_PerformanceStandbyElectionRequestClient interface {
|
|
|
|
Recv() (*PerfStandbyElectionResponse, error)
|
|
|
|
grpc.ClientStream
|
|
|
|
}
|
|
|
|
|
|
|
|
type requestForwardingPerformanceStandbyElectionRequestClient struct {
|
|
|
|
grpc.ClientStream
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *requestForwardingPerformanceStandbyElectionRequestClient) Recv() (*PerfStandbyElectionResponse, error) {
|
|
|
|
m := new(PerfStandbyElectionResponse)
|
|
|
|
if err := x.ClientStream.RecvMsg(m); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
2018-05-29 22:23:51 +00:00
|
|
|
// RequestForwardingServer is the server API for RequestForwarding service.
|
2016-08-19 15:49:25 +00:00
|
|
|
type RequestForwardingServer interface {
|
2017-01-06 22:08:43 +00:00
|
|
|
ForwardRequest(context.Context, *forwarding.Request) (*forwarding.Response, error)
|
2017-05-24 19:06:56 +00:00
|
|
|
Echo(context.Context, *EchoRequest) (*EchoReply, error)
|
2018-09-18 03:03:00 +00:00
|
|
|
PerformanceStandbyElectionRequest(*PerfStandbyElectionInput, RequestForwarding_PerformanceStandbyElectionRequestServer) error
|
2016-08-19 15:49:25 +00:00
|
|
|
}
|
|
|
|
|
Combined Database Backend: Static Accounts (#6834)
* Add priority queue to sdk
* fix issue of storing pointers and now copy
* update to use copy structure
* Remove file, put Item struct def. into other file
* add link
* clean up docs
* refactor internal data structure to hide heap method implementations. Other cleanup after feedback
* rename PushItem and PopItem to just Push/Pop, after encapsulating the heap methods
* updates after feedback
* refactoring/renaming
* guard against pushing a nil item
* minor updates after feedback
* Add SetCredentials, GenerateCredentials gRPC methods to combined database backend gPRC
* Initial Combined database backend implementation of static accounts and automatic rotation
* vendor updates
* initial implementation of static accounts with Combined database backend, starting with PostgreSQL implementation
* add lock and setup of rotation queue
* vendor the queue
* rebase on new method signature of queue
* remove mongo tests for now
* update default role sql
* gofmt after rebase
* cleanup after rebasing to remove checks for ErrNotFound error
* rebase cdcr-priority-queue
* vendor dependencies with 'go mod vendor'
* website database docs for Static Role support
* document the rotate-role API endpoint
* postgres specific static role docs
* use constants for paths
* updates from review
* remove dead code
* combine and clarify error message for older plugins
* Update builtin/logical/database/backend.go
Co-Authored-By: Jim Kalafut <jim@kalafut.net>
* cleanups from feedback
* code and comment cleanups
* move db.RLock higher to protect db.GenerateCredentials call
* Return output with WALID if we failed to delete the WAL
* Update builtin/logical/database/path_creds_create.go
Co-Authored-By: Jim Kalafut <jim@kalafut.net>
* updates after running 'make fmt'
* update after running 'make proto'
* Update builtin/logical/database/path_roles.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* Update builtin/logical/database/path_roles.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* update comment and remove and rearrange some dead code
* Update website/source/api/secret/databases/index.html.md
Co-Authored-By: Jim Kalafut <jim@kalafut.net>
* cleanups after review
* Update sdk/database/dbplugin/grpc_transport.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* code cleanup after feedback
* remove PasswordLastSet; it's not used
* document GenerateCredentials and SetCredentials
* Update builtin/logical/database/path_rotate_credentials.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* wrap pop and popbykey in backend methods to protect against nil cred rotation queue
* use strings.HasPrefix instead of direct equality check for path
* Forgot to commit this
* updates after feedback
* re-purpose an outdated test to now check that static and dynamic roles cannot share a name
* check for unique name across dynamic and static roles
* refactor loadStaticWALs to return a map of name/setCredentialsWAL struct to consolidate where we're calling set credentials
* remove commented out code
* refactor to have loadstaticwals filter out wals for roles that no longer exist
* return error if nil input given
* add nil check for input into setStaticAccount
* Update builtin/logical/database/path_roles.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* add constant for queue tick time in seconds, used for comparrison in updates
* Update builtin/logical/database/path_roles.go
Co-Authored-By: Jim Kalafut <jim@kalafut.net>
* code cleanup after review
* remove misplaced code comment
* remove commented out code
* create a queue in the Factory method, even if it's never used
* update path_roles to use a common set of fields, with specific overrides for dynamic/static roles by type
* document new method
* move rotation things into a specific file
* rename test file and consolidate some static account tests
* Update builtin/logical/database/path_roles.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* Update builtin/logical/database/rotation.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* Update builtin/logical/database/rotation.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* Update builtin/logical/database/rotation.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* Update builtin/logical/database/rotation.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* Update builtin/logical/database/rotation.go
Co-Authored-By: Brian Kassouf <briankassouf@users.noreply.github.com>
* update code comments, method names, and move more methods into rotation.go
* update comments to be capitalized
* remove the item from the queue before we try to destroy it
* findStaticWAL returns an error
* use lowercase keys when encoding WAL entries
* small cleanups
* remove vestigial static account check
* remove redundant DeleteWAL call in populate queue
* if we error on loading role, push back to queue with 10 second backoff
* poll in initqueue to make sure the backend is setup and can write/delete data
* add revoke_user_on_delete flag to allow users to opt-in to revoking the static database user on delete of the Vault role. Default false
* add code comments on read-only loop
* code comment updates
* re-push if error returned from find static wal
* add locksutil and acquire locks when pop'ing from the queue
* grab exclusive locks for updating static roles
* Add SetCredentials and GenerateCredentials stubs to mockPlugin
* add a switch in initQueue to listen for cancelation
* remove guard on zero time, it should have no affect
* create a new context in Factory to pass on and use for closing the backend queue
* restore master copy of vendor dir
2019-06-19 19:45:39 +00:00
|
|
|
// UnimplementedRequestForwardingServer can be embedded to have forward compatible implementations.
|
|
|
|
type UnimplementedRequestForwardingServer struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*UnimplementedRequestForwardingServer) ForwardRequest(ctx context.Context, req *forwarding.Request) (*forwarding.Response, error) {
|
|
|
|
return nil, status.Errorf(codes.Unimplemented, "method ForwardRequest not implemented")
|
|
|
|
}
|
|
|
|
func (*UnimplementedRequestForwardingServer) Echo(ctx context.Context, req *EchoRequest) (*EchoReply, error) {
|
|
|
|
return nil, status.Errorf(codes.Unimplemented, "method Echo not implemented")
|
|
|
|
}
|
|
|
|
func (*UnimplementedRequestForwardingServer) PerformanceStandbyElectionRequest(req *PerfStandbyElectionInput, srv RequestForwarding_PerformanceStandbyElectionRequestServer) error {
|
|
|
|
return status.Errorf(codes.Unimplemented, "method PerformanceStandbyElectionRequest not implemented")
|
|
|
|
}
|
|
|
|
|
2016-08-19 15:49:25 +00:00
|
|
|
func RegisterRequestForwardingServer(s *grpc.Server, srv RequestForwardingServer) {
|
|
|
|
s.RegisterService(&_RequestForwarding_serviceDesc, srv)
|
|
|
|
}
|
|
|
|
|
2017-01-06 22:08:43 +00:00
|
|
|
func _RequestForwarding_ForwardRequest_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
2016-08-19 15:49:25 +00:00
|
|
|
in := new(forwarding.Request)
|
|
|
|
if err := dec(in); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if interceptor == nil {
|
2017-01-06 22:08:43 +00:00
|
|
|
return srv.(RequestForwardingServer).ForwardRequest(ctx, in)
|
2016-08-19 15:49:25 +00:00
|
|
|
}
|
|
|
|
info := &grpc.UnaryServerInfo{
|
|
|
|
Server: srv,
|
2017-01-06 22:08:43 +00:00
|
|
|
FullMethod: "/vault.RequestForwarding/ForwardRequest",
|
2016-08-19 15:49:25 +00:00
|
|
|
}
|
|
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
2017-01-06 22:08:43 +00:00
|
|
|
return srv.(RequestForwardingServer).ForwardRequest(ctx, req.(*forwarding.Request))
|
2016-08-19 15:49:25 +00:00
|
|
|
}
|
|
|
|
return interceptor(ctx, in, info, handler)
|
|
|
|
}
|
|
|
|
|
2017-05-24 19:06:56 +00:00
|
|
|
func _RequestForwarding_Echo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
in := new(EchoRequest)
|
|
|
|
if err := dec(in); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if interceptor == nil {
|
|
|
|
return srv.(RequestForwardingServer).Echo(ctx, in)
|
|
|
|
}
|
|
|
|
info := &grpc.UnaryServerInfo{
|
|
|
|
Server: srv,
|
|
|
|
FullMethod: "/vault.RequestForwarding/Echo",
|
|
|
|
}
|
|
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
return srv.(RequestForwardingServer).Echo(ctx, req.(*EchoRequest))
|
|
|
|
}
|
|
|
|
return interceptor(ctx, in, info, handler)
|
|
|
|
}
|
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
func _RequestForwarding_PerformanceStandbyElectionRequest_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
|
|
m := new(PerfStandbyElectionInput)
|
|
|
|
if err := stream.RecvMsg(m); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return srv.(RequestForwardingServer).PerformanceStandbyElectionRequest(m, &requestForwardingPerformanceStandbyElectionRequestServer{stream})
|
|
|
|
}
|
|
|
|
|
|
|
|
type RequestForwarding_PerformanceStandbyElectionRequestServer interface {
|
|
|
|
Send(*PerfStandbyElectionResponse) error
|
|
|
|
grpc.ServerStream
|
|
|
|
}
|
|
|
|
|
|
|
|
type requestForwardingPerformanceStandbyElectionRequestServer struct {
|
|
|
|
grpc.ServerStream
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *requestForwardingPerformanceStandbyElectionRequestServer) Send(m *PerfStandbyElectionResponse) error {
|
|
|
|
return x.ServerStream.SendMsg(m)
|
|
|
|
}
|
|
|
|
|
2016-08-19 15:49:25 +00:00
|
|
|
var _RequestForwarding_serviceDesc = grpc.ServiceDesc{
|
|
|
|
ServiceName: "vault.RequestForwarding",
|
|
|
|
HandlerType: (*RequestForwardingServer)(nil),
|
|
|
|
Methods: []grpc.MethodDesc{
|
|
|
|
{
|
2017-01-06 22:08:43 +00:00
|
|
|
MethodName: "ForwardRequest",
|
|
|
|
Handler: _RequestForwarding_ForwardRequest_Handler,
|
2016-08-19 15:49:25 +00:00
|
|
|
},
|
2017-05-24 19:06:56 +00:00
|
|
|
{
|
|
|
|
MethodName: "Echo",
|
|
|
|
Handler: _RequestForwarding_Echo_Handler,
|
|
|
|
},
|
2016-08-19 15:49:25 +00:00
|
|
|
},
|
2018-09-18 03:03:00 +00:00
|
|
|
Streams: []grpc.StreamDesc{
|
|
|
|
{
|
|
|
|
StreamName: "PerformanceStandbyElectionRequest",
|
|
|
|
Handler: _RequestForwarding_PerformanceStandbyElectionRequest_Handler,
|
|
|
|
ServerStreams: true,
|
|
|
|
},
|
|
|
|
},
|
2018-06-04 14:19:26 +00:00
|
|
|
Metadata: "vault/request_forwarding_service.proto",
|
2016-08-19 15:49:25 +00:00
|
|
|
}
|