| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- package service
- import (
- "context"
- "errors"
- "fmt"
- "sync"
- "time"
- "github.com/mhsanaei/3x-ui/v3/internal/database"
- "github.com/mhsanaei/3x-ui/v3/internal/logger"
- "gorm.io/gorm"
- )
- const (
- trafficWriterQueueSize = 256
- trafficWriterSubmitTimeout = 5 * time.Second
- )
- type trafficWriteRequest struct {
- apply func() error
- done chan error
- }
- var (
- twMu sync.Mutex
- twQueue chan *trafficWriteRequest
- twCtx context.Context
- twCancel context.CancelFunc
- twDone chan struct{}
- )
- // StartTrafficWriter spins up the serial writer goroutine. Safe to call again
- // after StopTrafficWriter — each Start/Stop cycle gets fresh channels. The
- // previous sync.Once-based implementation deadlocked after a SIGHUP-driven
- // panel restart: Stop killed the consumer goroutine but Once prevented Start
- // from spawning a new one, so every later submitTrafficWrite blocked forever
- // on <-req.done with no consumer (including the AddTraffic call inside
- // XrayService.GetXrayConfig that runs from startTask).
- func StartTrafficWriter() {
- twMu.Lock()
- defer twMu.Unlock()
- if twCancel != nil && twDone != nil {
- select {
- case <-twDone:
- clearTrafficWriterState()
- default:
- return
- }
- }
- queue := make(chan *trafficWriteRequest, trafficWriterQueueSize)
- ctx, cancel := context.WithCancel(context.Background())
- done := make(chan struct{})
- twQueue = queue
- twCtx = ctx
- twCancel = cancel
- twDone = done
- go runTrafficWriter(ctx, queue, done)
- }
- // StopTrafficWriter cancels the writer context and waits for the goroutine to
- // drain any pending requests before returning. Resets the package state so a
- // subsequent StartTrafficWriter can spawn a fresh consumer.
- func StopTrafficWriter() {
- twMu.Lock()
- cancel := twCancel
- done := twDone
- if cancel == nil || done == nil {
- twMu.Unlock()
- return
- }
- cancel()
- twMu.Unlock()
- <-done
- twMu.Lock()
- if twDone == done {
- clearTrafficWriterState()
- }
- twMu.Unlock()
- }
- func clearTrafficWriterState() {
- twQueue = nil
- twCtx = nil
- twCancel = nil
- twDone = nil
- }
- func runTrafficWriter(ctx context.Context, queue chan *trafficWriteRequest, done chan struct{}) {
- defer close(done)
- for {
- select {
- case req := <-queue:
- req.done <- safeApply(req.apply)
- case <-ctx.Done():
- for {
- select {
- case req := <-queue:
- req.done <- safeApply(req.apply)
- default:
- return
- }
- }
- }
- }
- }
- // runSerializedTx runs fn inside one DB transaction on the shared serial
- // traffic-writer goroutine, so it can never execute concurrently with the
- // @every 5s traffic poll (AddTraffic). Both touch the hot client_traffics and
- // inbounds rows, and they acquire them in opposite order (the poll locks
- // inbounds then client_traffics; an admin client/inbound mutation does the
- // reverse), which Postgres aborts as a deadlock (SQLSTATE 40P01). Routing every
- // such mutation through this single writer removes that contention entirely.
- //
- // Keep network I/O (node pushes) OUT of fn: holding the single writer across a
- // remote node call would stall all traffic accounting for up to the remote
- // timeout. Apply runtime changes after this returns.
- func runSerializedTx(fn func(tx *gorm.DB) error) error {
- return submitTrafficWrite(func() error {
- return database.GetDB().Transaction(fn)
- })
- }
- func safeApply(fn func() error) (err error) {
- defer func() {
- if r := recover(); r != nil {
- err = fmt.Errorf("traffic writer panic: %v", r)
- logger.Error(err.Error())
- }
- }()
- return fn()
- }
- func submitTrafficWrite(fn func() error) error {
- req := &trafficWriteRequest{apply: fn, done: make(chan error, 1)}
- twMu.Lock()
- queue := twQueue
- ctx := twCtx
- done := twDone
- if queue == nil || ctx == nil || done == nil {
- twMu.Unlock()
- return safeApply(fn)
- }
- select {
- case <-ctx.Done():
- twMu.Unlock()
- return safeApply(fn)
- default:
- }
- timer := time.NewTimer(trafficWriterSubmitTimeout)
- defer timer.Stop()
- select {
- case queue <- req:
- twMu.Unlock()
- case <-timer.C:
- twMu.Unlock()
- return errors.New("traffic writer queue full")
- }
- select {
- case err := <-req.done:
- return err
- case <-done:
- select {
- case err := <-req.done:
- return err
- default:
- return errors.New("traffic writer stopped before write completed")
- }
- }
- }
|