Sub2API v1.0 - AI API 网关(二开初始版本,基于上游 Wei-Shaw/sub2api)
Release / update-version (push) Has been cancelled
Release / build-frontend (push) Has been cancelled
Release / release (push) Has been cancelled
Release / sync-version-file (push) Has been cancelled
CI / shell (push) Canceled after 0s
CI / test (push) Canceled after 0s
CI / frontend (push) Canceled after 0s
CI / golangci-lint (push) Canceled after 0s
Security Scan / backend-security (push) Canceled after 0s
Security Scan / frontend-security (push) Canceled after 0s
Release / update-version (push) Has been cancelled
Release / build-frontend (push) Has been cancelled
Release / release (push) Has been cancelled
Release / sync-version-file (push) Has been cancelled
CI / shell (push) Canceled after 0s
CI / test (push) Canceled after 0s
CI / frontend (push) Canceled after 0s
CI / golangci-lint (push) Canceled after 0s
Security Scan / backend-security (push) Canceled after 0s
Security Scan / frontend-security (push) Canceled after 0s
This commit is contained in:
@@ -0,0 +1,279 @@
|
||||
package securityaudit
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"sync"
|
||||
"time"
|
||||
)
|
||||
|
||||
type GuardEvaluator struct {
|
||||
scanner PromptScanner
|
||||
repo JobRepository
|
||||
metrics Metrics
|
||||
clock Clock
|
||||
|
||||
global chan struct{}
|
||||
perNodeLimit int
|
||||
nodeMu sync.Mutex
|
||||
nodes map[string]chan struct{}
|
||||
}
|
||||
|
||||
func NewGuardEvaluator(scanner PromptScanner, repo JobRepository, metrics Metrics) *GuardEvaluator {
|
||||
return newGuardEvaluator(scanner, repo, metrics, 64, 16)
|
||||
}
|
||||
|
||||
func newGuardEvaluator(scanner PromptScanner, repo JobRepository, metrics Metrics, globalLimit, perNodeLimit int) *GuardEvaluator {
|
||||
if globalLimit < 1 {
|
||||
globalLimit = 64
|
||||
}
|
||||
if perNodeLimit < 1 {
|
||||
perNodeLimit = 16
|
||||
}
|
||||
return &GuardEvaluator{scanner: scanner, repo: repo, metrics: metrics, clock: realClock{},
|
||||
global: make(chan struct{}, globalLimit), perNodeLimit: perNodeLimit, nodes: map[string]chan struct{}{}}
|
||||
}
|
||||
|
||||
func (g *GuardEvaluator) Evaluate(ctx context.Context, cfg ActiveConfig, snapshot PromptSnapshot) (*PromptDecision, error) {
|
||||
if g == nil || g.scanner == nil {
|
||||
if g != nil && g.metrics != nil {
|
||||
g.metrics.Observe(DecisionUnavailable, 0)
|
||||
}
|
||||
logGuardFailure(snapshot, cfg, DecisionUnavailable, ErrorCodeUnavailable, "", 0)
|
||||
return nil, &GuardError{Code: ErrorCodeUnavailable}
|
||||
}
|
||||
start := g.clock.Now()
|
||||
baseFields := snapshotLogFields(snapshot)
|
||||
baseFields["config_version"] = cfg.ConfigVersion
|
||||
endpoints := cfg.EnabledEndpoints()
|
||||
if len(endpoints) == 0 {
|
||||
if g.metrics != nil {
|
||||
g.metrics.Observe(DecisionUnavailable, g.clock.Now().Sub(start))
|
||||
}
|
||||
logGuardFailure(snapshot, cfg, DecisionUnavailable, ErrorCodeUnavailable, "", g.clock.Now().Sub(start))
|
||||
return nil, &GuardError{Code: ErrorCodeUnavailable}
|
||||
}
|
||||
select {
|
||||
case g.global <- struct{}{}:
|
||||
defer func() { <-g.global }()
|
||||
default:
|
||||
if g.metrics != nil {
|
||||
g.metrics.IncBulkheadFull()
|
||||
g.metrics.Observe(DecisionUnavailable, g.clock.Now().Sub(start))
|
||||
}
|
||||
logGuardFailure(snapshot, cfg, DecisionUnavailable, ErrorCodeUnavailable, "", g.clock.Now().Sub(start))
|
||||
return nil, &GuardError{Code: ErrorCodeUnavailable}
|
||||
}
|
||||
timeout := time.Duration(endpoints[0].TimeoutMS) * time.Millisecond
|
||||
if timeout <= 0 {
|
||||
timeout = DefaultTimeoutMS * time.Millisecond
|
||||
}
|
||||
evalCtx, cancel := context.WithTimeout(ctx, timeout)
|
||||
defer cancel()
|
||||
inputLimit := minimumInputLimit(endpoints)
|
||||
chunks := SplitRunes(snapshot.ScanText, inputLimit)
|
||||
if len(chunks) == 0 {
|
||||
if g.metrics != nil {
|
||||
g.metrics.Observe(DecisionAllow, g.clock.Now().Sub(start))
|
||||
}
|
||||
return &PromptDecision{Kind: DecisionAllow, AllowNextStage: true}, nil
|
||||
}
|
||||
LogInfo(EventEvaluationStarted, mergeLogFields(baseFields, map[string]any{"chunk_total": len(chunks), "status": "started"}))
|
||||
results := make([]*NormalizedResult, 0, len(chunks))
|
||||
for index, chunk := range chunks {
|
||||
chunkStarted := g.clock.Now()
|
||||
LogInfo(EventChunkStarted, mergeLogFields(baseFields, map[string]any{
|
||||
"chunk_index": index + 1, "chunk_total": len(chunks),
|
||||
"chunk_chars": len([]rune(chunk)), "input_chars": snapshot.PromptLength, "input_limit": inputLimit,
|
||||
"status": "started",
|
||||
}))
|
||||
result, err := g.scanChunk(evalCtx, cfg, endpoints, chunk)
|
||||
if err != nil {
|
||||
code := guardErrorCode(err)
|
||||
LogWarn(EventChunkFailed, mergeLogFields(baseFields, map[string]any{
|
||||
"chunk_index": index + 1, "chunk_total": len(chunks),
|
||||
"chunk_chars": len([]rune(chunk)), "input_chars": snapshot.PromptLength, "input_limit": inputLimit,
|
||||
"latency_ms": g.clock.Now().Sub(chunkStarted).Milliseconds(), "error_code": code, "status": "failed",
|
||||
}))
|
||||
kind := DecisionUnavailable
|
||||
if code == ErrorCodeInvalidResponse {
|
||||
kind = DecisionInvalid
|
||||
}
|
||||
if g.metrics != nil {
|
||||
g.metrics.Observe(kind, g.clock.Now().Sub(start))
|
||||
var guardErr *GuardError
|
||||
if errors.As(err, &guardErr) && guardErr.Timeout {
|
||||
g.metrics.IncTimeout()
|
||||
}
|
||||
}
|
||||
logGuardFailure(snapshot, cfg, kind, code, "", g.clock.Now().Sub(start))
|
||||
return nil, err
|
||||
}
|
||||
result.ChunkTotal = len(chunks)
|
||||
results = append(results, result)
|
||||
LogInfo(EventChunkCompleted, mergeLogFields(baseFields, map[string]any{
|
||||
"chunk_index": index + 1, "chunk_total": len(chunks),
|
||||
"chunk_chars": len([]rune(chunk)), "input_chars": snapshot.PromptLength, "input_limit": inputLimit,
|
||||
"guard_endpoint_id": result.GuardEndpointID, "action": result.Action,
|
||||
"latency_ms": g.clock.Now().Sub(chunkStarted).Milliseconds(), "status": "completed",
|
||||
}))
|
||||
if result.Action == ActionBlock {
|
||||
break
|
||||
}
|
||||
}
|
||||
aggregated, err := AggregateResults(results, g.clock.Now().Sub(start))
|
||||
if err != nil {
|
||||
if g.metrics != nil {
|
||||
g.metrics.Observe(DecisionInvalid, g.clock.Now().Sub(start))
|
||||
}
|
||||
logGuardFailure(snapshot, cfg, DecisionInvalid, ErrorCodeInvalidResponse, "", g.clock.Now().Sub(start))
|
||||
return nil, &GuardError{Code: ErrorCodeInvalidResponse, Cause: err}
|
||||
}
|
||||
aggregated.ChunkTotal = len(chunks)
|
||||
kind := DecisionAllow
|
||||
if aggregated.Action == ActionWarn {
|
||||
kind = DecisionFlag
|
||||
}
|
||||
if aggregated.Action == ActionBlock {
|
||||
kind = DecisionBlock
|
||||
}
|
||||
decision := &PromptDecision{Kind: kind, Result: aggregated, AllowNextStage: kind == DecisionAllow || kind == DecisionFlag}
|
||||
if kind == DecisionBlock {
|
||||
decision.ErrorCode = ErrorCodeBlocked
|
||||
}
|
||||
if g.metrics != nil {
|
||||
g.metrics.Observe(kind, g.clock.Now().Sub(start))
|
||||
}
|
||||
LogInfo(EventChunksAggregated, mergeLogFields(baseFields, map[string]any{
|
||||
"decision": kind,
|
||||
"risk_level": aggregated.RiskLevel, "action": aggregated.Action, "chunk_total": aggregated.ChunkTotal,
|
||||
"latency_ms": aggregated.LatencyMS, "guard_endpoint_id": aggregated.GuardEndpointID, "stage": snapshot.Stage,
|
||||
"status": "completed",
|
||||
}))
|
||||
if g.repo != nil {
|
||||
if _, recordErr := g.repo.RecordBlocking(ctx, snapshot.Redacted(), cfg.ConfigVersion, aggregated, cfg.StorePassEvents); recordErr != nil {
|
||||
if g.metrics != nil {
|
||||
g.metrics.IncRecordFailed()
|
||||
}
|
||||
LogWarn(EventResultRecordFailed, mergeLogFields(baseFields, map[string]any{
|
||||
"decision": kind, "error_code": "result_record_failed", "stage": snapshot.Stage,
|
||||
"status": "failed",
|
||||
}))
|
||||
}
|
||||
}
|
||||
if kind == DecisionBlock {
|
||||
LogWarn(EventGuardBlocked, mergeLogFields(baseFields, map[string]any{
|
||||
"guard_endpoint_id": aggregated.GuardEndpointID,
|
||||
"decision": kind, "risk_level": aggregated.RiskLevel, "action": aggregated.Action, "chunk_total": aggregated.ChunkTotal,
|
||||
"latency_ms": aggregated.LatencyMS, "status": "blocked", "error_code": ErrorCodeBlocked,
|
||||
"stage": snapshot.Stage, "upstream_dispatched": false, "billing_preconsumed": false,
|
||||
}))
|
||||
} else {
|
||||
LogInfo(EventGuardAllowed, mergeLogFields(baseFields, map[string]any{
|
||||
"decision": kind, "risk_level": aggregated.RiskLevel, "action": aggregated.Action,
|
||||
"guard_endpoint_id": aggregated.GuardEndpointID, "chunk_total": aggregated.ChunkTotal,
|
||||
"latency_ms": aggregated.LatencyMS, "stage": snapshot.Stage, "status": "allowed",
|
||||
}))
|
||||
}
|
||||
return decision, nil
|
||||
}
|
||||
|
||||
func logGuardFailure(snapshot PromptSnapshot, cfg ActiveConfig, kind DecisionKind, code, guardEndpointID string, latency time.Duration) {
|
||||
fields := snapshotLogFields(snapshot)
|
||||
fields["config_version"] = cfg.ConfigVersion
|
||||
LogWarn(EventGuardFailed, mergeLogFields(fields, map[string]any{
|
||||
"decision": kind, "guard_endpoint_id": guardEndpointID, "latency_ms": latency.Milliseconds(),
|
||||
"status": "failed", "error_code": code, "upstream_dispatched": false, "billing_preconsumed": false,
|
||||
}))
|
||||
}
|
||||
|
||||
func (g *GuardEvaluator) scanChunk(ctx context.Context, cfg ActiveConfig, endpoints []ActiveEndpoint, chunk string) (*NormalizedResult, error) {
|
||||
var lastErr error
|
||||
for index, endpoint := range endpoints {
|
||||
semaphore := g.nodeSemaphore(endpoint.ID)
|
||||
select {
|
||||
case semaphore <- struct{}{}:
|
||||
case <-ctx.Done():
|
||||
return nil, &GuardError{Code: ErrorCodeUnavailable, Retryable: true, Timeout: errors.Is(ctx.Err(), context.DeadlineExceeded), Cause: ctx.Err()}
|
||||
default:
|
||||
if g.metrics != nil {
|
||||
g.metrics.IncBulkheadFull()
|
||||
}
|
||||
lastErr = &GuardError{Code: ErrorCodeUnavailable, Retryable: true}
|
||||
if index < len(endpoints)-1 && g.metrics != nil {
|
||||
g.metrics.IncFailover()
|
||||
}
|
||||
continue
|
||||
}
|
||||
result, err := callPromptScanner(ctx, g.scanner, endpoint, chunk, cfg.Scanners)
|
||||
<-semaphore
|
||||
if err == nil && result != nil {
|
||||
return result, nil
|
||||
}
|
||||
if err == nil {
|
||||
err = &GuardError{Code: ErrorCodeInvalidResponse, Retryable: false}
|
||||
}
|
||||
lastErr = err
|
||||
var guardErr *GuardError
|
||||
if !errors.As(err, &guardErr) || !guardErr.Retryable {
|
||||
return nil, err
|
||||
}
|
||||
if index < len(endpoints)-1 && g.metrics != nil {
|
||||
g.metrics.IncFailover()
|
||||
}
|
||||
}
|
||||
if lastErr == nil {
|
||||
lastErr = &GuardError{Code: ErrorCodeUnavailable}
|
||||
}
|
||||
return nil, lastErr
|
||||
}
|
||||
|
||||
func callPromptScanner(ctx context.Context, scanner PromptScanner, endpoint ActiveEndpoint, chunk string, scanners []string) (result *NormalizedResult, err error) {
|
||||
defer func() {
|
||||
if recover() != nil {
|
||||
result = nil
|
||||
err = &GuardError{Code: ErrorCodeUnavailable, Retryable: false}
|
||||
}
|
||||
}()
|
||||
return scanner.Scan(ctx, endpoint, chunk, scanners)
|
||||
}
|
||||
|
||||
func (g *GuardEvaluator) nodeSemaphore(id string) chan struct{} {
|
||||
g.nodeMu.Lock()
|
||||
defer g.nodeMu.Unlock()
|
||||
semaphore := g.nodes[id]
|
||||
if semaphore == nil {
|
||||
semaphore = make(chan struct{}, g.perNodeLimit)
|
||||
g.nodes[id] = semaphore
|
||||
}
|
||||
return semaphore
|
||||
}
|
||||
|
||||
func minimumInputLimit(endpoints []ActiveEndpoint) int {
|
||||
limit := DefaultInputLimit
|
||||
for index, endpoint := range endpoints {
|
||||
value := endpoint.InputLimit
|
||||
if value <= 0 {
|
||||
value = DefaultInputLimit
|
||||
}
|
||||
if index == 0 || value < limit {
|
||||
limit = value
|
||||
}
|
||||
}
|
||||
return limit
|
||||
}
|
||||
|
||||
func guardErrorCode(err error) string {
|
||||
var guardErr *GuardError
|
||||
if errors.As(err, &guardErr) && guardErr.Code != "" {
|
||||
return guardErr.Code
|
||||
}
|
||||
return ErrorCodeUnavailable
|
||||
}
|
||||
|
||||
func pointerLogID(value *int64) int64 {
|
||||
if value == nil {
|
||||
return 0
|
||||
}
|
||||
return *value
|
||||
}
|
||||
Reference in New Issue
Block a user