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
199 lines
8.6 KiB
Go
199 lines
8.6 KiB
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"net"
|
|
"net/http"
|
|
"strings"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/Wei-Shaw/sub2api/internal/pkg/logger"
|
|
"github.com/gin-gonic/gin"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// openAITransportErrorTempUnschedDuration is how long an account is temporarily
|
|
// unscheduled after a durable transport failure (matches tokenRefreshTempUnschedDuration).
|
|
const openAITransportErrorTempUnschedDuration = 10 * time.Minute
|
|
|
|
// openAITransportFailoverBody is the OpenAI-format error body attached to the
|
|
// failover error for a transport-level failure. Kept identical to the legacy
|
|
// inline 502 body so the client-visible payload is unchanged if failover is
|
|
// ultimately exhausted.
|
|
var openAITransportFailoverBody = []byte(`{"error":{"type":"upstream_error","message":"Upstream request failed"}}`)
|
|
|
|
// openAITransportErrorClass describes how to react to a transport-level upstream
|
|
// failure — i.e. the HTTP round-trip never completed (proxy / DNS / TCP / TLS
|
|
// error, no HTTP status code received).
|
|
type openAITransportErrorClass struct {
|
|
// Persistent marks failures where retrying the same proxy/account is
|
|
// pointless: expired or rejected proxy credentials, a dead proxy endpoint,
|
|
// or DNS/routing failure. Such accounts should be temporarily unscheduled
|
|
// (and alerted on) instead of being repeatedly scheduled into hard failures.
|
|
Persistent bool
|
|
}
|
|
|
|
// openAIPersistentTransportErrorMarkers are substrings (matched case-insensitively
|
|
// against the raw transport error) that indicate a durable proxy/network fault.
|
|
// Matched signals are intentionally specific failure *reasons*, not the operation
|
|
// (e.g. we match "connection refused", not "proxyconnect") so that a transient
|
|
// failure of the same operation (a proxy timeout) is NOT misclassified as durable.
|
|
var openAIPersistentTransportErrorMarkers = []string{
|
|
"authentication failed", // SOCKS5 RFC1929 / proxy credentials rejected (expired account)
|
|
"proxy authentication required", // HTTP proxy 407
|
|
"connection refused", // proxy/upstream endpoint down
|
|
"no route to host",
|
|
"network is unreachable",
|
|
"no such host", // DNS resolution failure (bad/expired proxy hostname)
|
|
}
|
|
|
|
// classifyOpenAITransportError decides whether a transport-level upstream error
|
|
// is durable (Persistent — evict the account + alert) or a transient blip
|
|
// (fail over to a healthy account but keep this one schedulable).
|
|
//
|
|
// Motivating incident: a SOCKS5 proxy whose subscription lapsed returned
|
|
// `username/password authentication failed`; the account was nonetheless
|
|
// rescheduled on every request, hard-failing users with 502s.
|
|
//
|
|
// Classification strategy (mirrors sanitizeStreamError in gateway_service.go):
|
|
// 1. Typed-error checks first (syscall constants, *net.DNSError) — portable and
|
|
// unambiguous.
|
|
// 2. String-marker fallback for errors that have no typed form (e.g. the plain
|
|
// string returned by golang.org/x/net/proxy for SOCKS5 credential rejection).
|
|
// The network-layer string markers ("connection refused", "no route to host",
|
|
// "network is unreachable", "no such host") are kept as a cross-platform safety
|
|
// net even though the typed checks should cover them on modern Go+Linux.
|
|
func classifyOpenAITransportError(err error) openAITransportErrorClass {
|
|
if err == nil {
|
|
return openAITransportErrorClass{}
|
|
}
|
|
|
|
// — Typed checks (preferred) ——————————————————————————————————————————————
|
|
if errors.Is(err, syscall.ECONNREFUSED) ||
|
|
errors.Is(err, syscall.EHOSTUNREACH) ||
|
|
errors.Is(err, syscall.ENETUNREACH) {
|
|
return openAITransportErrorClass{Persistent: true}
|
|
}
|
|
var dnsErr *net.DNSError
|
|
if errors.As(err, &dnsErr) && dnsErr.IsNotFound {
|
|
return openAITransportErrorClass{Persistent: true}
|
|
}
|
|
|
|
// — String-marker fallback ————————————————————————————————————————————————
|
|
msg := strings.ToLower(err.Error())
|
|
for _, marker := range openAIPersistentTransportErrorMarkers {
|
|
if strings.Contains(msg, marker) {
|
|
return openAITransportErrorClass{Persistent: true}
|
|
}
|
|
}
|
|
return openAITransportErrorClass{}
|
|
}
|
|
|
|
// handleOpenAIUpstreamTransportError handles a transport-level upstream failure
|
|
// (Do/DoWithTLS returned a non-HTTP error: proxy/DNS/TCP/TLS). It:
|
|
// 1. records the failure in Ops error logs (status 0, kind=request_error);
|
|
// 2. for durable faults (expired/rejected proxy creds, dead proxy, DNS/routing)
|
|
// temporarily unschedules the account (DB + in-memory) and logs a stable
|
|
// warn event that alert rules can key on;
|
|
// 3. returns an error that is *UpstreamFailoverError (so the handler fails over
|
|
// to a healthy account) for all non-canceled errors, or a plain error for
|
|
// context.Canceled (client gone — no failover, no eviction).
|
|
//
|
|
// It deliberately does NOT write to the response: the handler owns the response
|
|
// (failover, or a protocol-correct error once failover is exhausted).
|
|
//
|
|
// passthrough tags the Ops error event for the OpenAI passthrough forward path.
|
|
func (s *OpenAIGatewayService) handleOpenAIUpstreamTransportError(ctx context.Context, c *gin.Context, account *Account, err error, passthrough bool) error {
|
|
safeErr := sanitizeUpstreamErrorMessage(err.Error())
|
|
setOpsUpstreamError(c, 0, safeErr, "")
|
|
appendOpsUpstreamError(c, OpsUpstreamErrorEvent{
|
|
Platform: account.Platform,
|
|
AccountID: account.ID,
|
|
AccountName: account.Name,
|
|
UpstreamStatusCode: 0,
|
|
Passthrough: passthrough,
|
|
Kind: "request_error",
|
|
Message: safeErr,
|
|
})
|
|
|
|
// Client disconnected: do NOT fail over to another account and do NOT evict
|
|
// this one — the upstream never had a chance to exhibit a fault.
|
|
if errors.Is(err, context.Canceled) {
|
|
return err
|
|
}
|
|
|
|
// Transport attempt reached the network path; count as Ollama Cloud activity.
|
|
if s != nil {
|
|
scheduleOllamaCloudUsageActivity(s.deferredService, account)
|
|
}
|
|
|
|
if classifyOpenAITransportError(err).Persistent {
|
|
s.tempUnscheduleOpenAITransportError(ctx, account, safeErr)
|
|
}
|
|
|
|
return &UpstreamFailoverError{
|
|
StatusCode: http.StatusBadGateway,
|
|
ResponseBody: openAITransportFailoverBody,
|
|
}
|
|
}
|
|
|
|
// tempUnscheduleOpenAITransportError marks an account temporarily unschedulable
|
|
// after a durable transport failure, both persistently (DB, survives restart)
|
|
// and in-memory (immediate scheduler effect before the DB/account cache propagates).
|
|
//
|
|
// Log semantics:
|
|
// - "openai.account_temp_unscheduled_transport" — emitted ONLY after a
|
|
// successful DB write (both in-memory + persisted).
|
|
// - "openai.account_temp_unscheduled_transport_memory_only" — emitted when
|
|
// accountRepo is nil (in-memory only; no persistence).
|
|
// - "openai.account_temp_unscheduled_transport_failed" — DB write attempted
|
|
// but returned an error.
|
|
func (s *OpenAIGatewayService) tempUnscheduleOpenAITransportError(ctx context.Context, account *Account, safeErr string) {
|
|
if s == nil || account == nil {
|
|
return
|
|
}
|
|
until := time.Now().Add(openAITransportErrorTempUnschedDuration)
|
|
reason := "upstream transport error (proxy/network): " + safeErr
|
|
|
|
// Immediate in-memory block (honoured by the scheduler at selection time),
|
|
// effective even if the DB write below fails or the account cache lags.
|
|
s.BlockAccountScheduling(account, until, "transport_error")
|
|
|
|
if s.accountRepo == nil {
|
|
// No DB configured — block is in-memory only; emit a distinct event so
|
|
// operators are not misled into thinking the block survived a restart.
|
|
logger.L().With(zap.String("component", "service.openai_gateway")).Warn(
|
|
"openai.account_temp_unscheduled_transport_memory_only",
|
|
zap.Int64("account_id", account.ID),
|
|
zap.String("account_name", account.Name),
|
|
zap.String("platform", account.Platform),
|
|
zap.Time("until", until),
|
|
zap.String("reason", reason),
|
|
)
|
|
return
|
|
}
|
|
|
|
bgCtx, cancel := context.WithTimeout(context.WithoutCancel(ctx), openAIAccountStateUpdateTimeout)
|
|
defer cancel()
|
|
if err := s.accountRepo.SetTempUnschedulable(bgCtx, account.ID, until, reason); err != nil {
|
|
logger.L().With(zap.String("component", "service.openai_gateway")).Warn(
|
|
"openai.account_temp_unscheduled_transport_failed",
|
|
zap.Int64("account_id", account.ID),
|
|
zap.Error(err),
|
|
)
|
|
return
|
|
}
|
|
|
|
// DB write succeeded: both in-memory and persisted.
|
|
logger.L().With(zap.String("component", "service.openai_gateway")).Warn(
|
|
"openai.account_temp_unscheduled_transport",
|
|
zap.Int64("account_id", account.ID),
|
|
zap.String("account_name", account.Name),
|
|
zap.String("platform", account.Platform),
|
|
zap.Time("until", until),
|
|
zap.String("reason", reason),
|
|
)
|
|
}
|