Documentation ¶
Overview ¶
Package enforcerproxy :: This is the implementation of the RPC client It implements the interface of Trireme Enforcer and forwards these requests to the actual remote enforcer instead of implementing locally
Index ¶
- Variables
- func NewDefaultProxyEnforcer(serverID string, collector collector.EventCollector, secrets secrets.Secrets, ...) policyenforcer.Enforcer
- func NewProxyEnforcer(mutualAuth bool, filterQueue *fqconfig.FilterQueue, ...) policyenforcer.Enforcer
- type ProxyInfo
- func (s *ProxyInfo) Enforce(contextID string, puInfo *policy.PUInfo) error
- func (s *ProxyInfo) GetFilterQueue() *fqconfig.FilterQueue
- func (s *ProxyInfo) GetPortSetInstance() portset.PortSet
- func (s *ProxyInfo) InitRemoteEnforcer(contextID string) error
- func (s *ProxyInfo) Start() error
- func (s *ProxyInfo) Stop() error
- func (s *ProxyInfo) Unenforce(contextID string) error
- func (s *ProxyInfo) UpdateSecrets(token secrets.Secrets) error
- type StatsServer
Constants ¶
This section is empty.
Variables ¶
var ErrEnforceFailed = errors.New("Failed to enforce rules")
ErrEnforceFailed exported
var ErrExpectedEnforcer = errors.New("Process was not launched")
ErrExpectedEnforcer exported
var ErrFailedtoLaunch = errors.New("Failed to Launch")
ErrFailedtoLaunch exported.
var ErrInitFailed = errors.New("Failed remote Init")
ErrInitFailed exported
Functions ¶
func NewDefaultProxyEnforcer ¶
func NewDefaultProxyEnforcer(serverID string, collector collector.EventCollector, secrets secrets.Secrets, rpchdl rpcwrapper.RPCClient, procMountPoint string, ) policyenforcer.Enforcer
NewDefaultProxyEnforcer This is the default datapth method. THis is implemented to keep the interface consistent whether we are local or remote enforcer.
func NewProxyEnforcer ¶
func NewProxyEnforcer(mutualAuth bool, filterQueue *fqconfig.FilterQueue, collector collector.EventCollector, service packetprocessor.PacketProcessor, secrets secrets.Secrets, serverID string, validity time.Duration, rpchdl rpcwrapper.RPCClient, cmdArg string, procMountPoint string, ExternalIPCacheTimeout time.Duration, ) policyenforcer.Enforcer
NewProxyEnforcer creates a new proxy to remote enforcers.
Types ¶
type ProxyInfo ¶
type ProxyInfo struct { MutualAuth bool Secrets secrets.Secrets ExternalIPCacheTimeout time.Duration sync.RWMutex // contains filtered or unexported fields }
ProxyInfo is the struct used to hold state about active enforcers in the system
func (*ProxyInfo) GetFilterQueue ¶
func (s *ProxyInfo) GetFilterQueue() *fqconfig.FilterQueue
GetFilterQueue returns the current FilterQueueConfig.
func (*ProxyInfo) GetPortSetInstance ¶
GetPortSetInstance returns nil for the proxy
func (*ProxyInfo) InitRemoteEnforcer ¶
InitRemoteEnforcer method makes a RPC call to the remote enforcer
type StatsServer ¶
type StatsServer struct {
// contains filtered or unexported fields
}
StatsServer This struct is a receiver for Statsserver and maintains a handle to the RPC StatsServer.
func (*StatsServer) GetStats ¶
func (r *StatsServer) GetStats(req rpcwrapper.Request, resp *rpcwrapper.Response) error
GetStats is the function called from the remoteenforcer when it has new flow events to publish.