mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
18df2ba6fd
Support Database(#23742) Fix db nonexists error for FlushAll (#24222) Fix check collection limits fails (#24235) backward compatibility with empty DB name (#24317) Fix GetFlushAllState with DB (#24347) Remove db from global meta cache after drop database (#24474) Fix db name is empty for describe collection response (#24603) Add RBAC for Database API (#24653) Fix miss load the same name collection during recover stage (#24941) RBAC supports Database validation (#23609) Fix to list grant with db return empty (#23922) Optimize PrivilegeAll permission check (#23972) Add the default db value for the rbac request (#24307) Signed-off-by: jaime <yun.zhang@zilliz.com> Co-authored-by: SimFG <bang.fu@zilliz.com> Co-authored-by: longjiquan <jiquan.long@zilliz.com>
132 lines
3.8 KiB
Go
132 lines
3.8 KiB
Go
package proxy
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"plugin"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/paramtable"
|
|
|
|
"go.uber.org/zap"
|
|
"google.golang.org/grpc"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/hook"
|
|
"github.com/milvus-io/milvus/pkg/log"
|
|
"github.com/milvus-io/milvus/pkg/metrics"
|
|
)
|
|
|
|
type defaultHook struct {
|
|
}
|
|
|
|
func (d defaultHook) Init(params map[string]string) error {
|
|
return nil
|
|
}
|
|
|
|
func (d defaultHook) Mock(ctx context.Context, req interface{}, fullMethod string) (bool, interface{}, error) {
|
|
return false, nil, nil
|
|
}
|
|
|
|
func (d defaultHook) Before(ctx context.Context, req interface{}, fullMethod string) (context.Context, error) {
|
|
return ctx, nil
|
|
}
|
|
|
|
func (d defaultHook) After(ctx context.Context, result interface{}, err error, fullMethod string) error {
|
|
return nil
|
|
}
|
|
|
|
func (d defaultHook) Release() {}
|
|
|
|
var hoo hook.Hook
|
|
|
|
func initHook() error {
|
|
path := Params.ProxyCfg.SoPath.GetValue()
|
|
if path == "" {
|
|
hoo = defaultHook{}
|
|
return nil
|
|
}
|
|
|
|
logger.Debug("start to load plugin", zap.String("path", path))
|
|
p, err := plugin.Open(path)
|
|
if err != nil {
|
|
return fmt.Errorf("fail to open the plugin, error: %s", err.Error())
|
|
}
|
|
logger.Debug("plugin open")
|
|
|
|
h, err := p.Lookup("MilvusHook")
|
|
if err != nil {
|
|
return fmt.Errorf("fail to the 'MilvusHook' object in the plugin, error: %s", err.Error())
|
|
}
|
|
|
|
var ok bool
|
|
hoo, ok = h.(hook.Hook)
|
|
if !ok {
|
|
return fmt.Errorf("fail to convert the `Hook` interface")
|
|
}
|
|
if err = hoo.Init(Params.HookCfg.SoConfig.GetValue()); err != nil {
|
|
return fmt.Errorf("fail to init configs for the hook, error: %s", err.Error())
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func UnaryServerHookInterceptor() grpc.UnaryServerInterceptor {
|
|
if hookError := initHook(); hookError != nil {
|
|
logger.Error("hook error", zap.String("path", Params.ProxyCfg.SoPath.GetValue()), zap.Error(hookError))
|
|
hoo = defaultHook{}
|
|
}
|
|
return func(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
|
|
var (
|
|
fullMethod = info.FullMethod
|
|
newCtx context.Context
|
|
isMock bool
|
|
mockResp interface{}
|
|
realResp interface{}
|
|
realErr error
|
|
err error
|
|
)
|
|
|
|
if isMock, mockResp, err = hoo.Mock(ctx, req, fullMethod); isMock {
|
|
log.Info("hook mock", zap.String("user", getCurrentUser(ctx)),
|
|
zap.String("full method", fullMethod), zap.Error(err))
|
|
metrics.ProxyHookFunc.WithLabelValues(metrics.HookMock, fullMethod).Inc()
|
|
updateProxyFunctionCallMetric(fullMethod)
|
|
return mockResp, err
|
|
}
|
|
|
|
if newCtx, err = hoo.Before(ctx, req, fullMethod); err != nil {
|
|
log.Warn("hook before error", zap.String("user", getCurrentUser(ctx)), zap.String("full method", fullMethod),
|
|
zap.Any("request", req), zap.Error(err))
|
|
metrics.ProxyHookFunc.WithLabelValues(metrics.HookBefore, fullMethod).Inc()
|
|
updateProxyFunctionCallMetric(fullMethod)
|
|
return nil, err
|
|
}
|
|
realResp, realErr = handler(newCtx, req)
|
|
if err = hoo.After(newCtx, realResp, realErr, fullMethod); err != nil {
|
|
log.Warn("hook after error", zap.String("user", getCurrentUser(ctx)), zap.String("full method", fullMethod),
|
|
zap.Any("request", req), zap.Error(err))
|
|
metrics.ProxyHookFunc.WithLabelValues(metrics.HookAfter, fullMethod).Inc()
|
|
updateProxyFunctionCallMetric(fullMethod)
|
|
return nil, err
|
|
}
|
|
return realResp, realErr
|
|
}
|
|
}
|
|
|
|
func updateProxyFunctionCallMetric(fullMethod string) {
|
|
if fullMethod == "" {
|
|
return
|
|
}
|
|
method := strings.Split(fullMethod, "/")[0]
|
|
metrics.ProxyFunctionCall.WithLabelValues(strconv.FormatInt(paramtable.GetNodeID(), 10), method, metrics.TotalLabel).Inc()
|
|
metrics.ProxyFunctionCall.WithLabelValues(strconv.FormatInt(paramtable.GetNodeID(), 10), method, metrics.FailLabel).Inc()
|
|
}
|
|
|
|
func getCurrentUser(ctx context.Context) string {
|
|
username, err := GetCurUserFromContext(ctx)
|
|
if err != nil {
|
|
log.Warn("fail to get current user", zap.Error(err))
|
|
}
|
|
return username
|
|
}
|