| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- package service
- import (
- "encoding/json"
- "strings"
- "sync"
- "time"
- "github.com/mhsanaei/3x-ui/v3/internal/database/model"
- "github.com/mhsanaei/3x-ui/v3/internal/logger"
- "github.com/mhsanaei/3x-ui/v3/internal/xray"
- "gorm.io/gorm"
- )
- // Short-lived tombstone of just-deleted client emails so that a node snapshot
- // arriving between delete and node-side processing doesn't resurrect them.
- var (
- recentlyDeletedMu sync.Mutex
- recentlyDeleted = map[string]time.Time{}
- )
- const deleteTombstoneTTL = 90 * time.Second
- var (
- inboundMutationLocksMu sync.Mutex
- inboundMutationLocks = map[int]*sync.Mutex{}
- )
- func lockInbound(inboundId int) *sync.Mutex {
- inboundMutationLocksMu.Lock()
- m, ok := inboundMutationLocks[inboundId]
- if !ok {
- m = &sync.Mutex{}
- inboundMutationLocks[inboundId] = m
- }
- inboundMutationLocksMu.Unlock()
- m.Lock()
- return m
- }
- func compactOrphans(db *gorm.DB, clients []any) []any {
- if len(clients) == 0 {
- return clients
- }
- emails := make([]string, 0, len(clients))
- for _, c := range clients {
- cm, ok := c.(map[string]any)
- if !ok {
- continue
- }
- if e, _ := cm["email"].(string); e != "" {
- emails = append(emails, e)
- }
- }
- if len(emails) == 0 {
- return clients
- }
- existing := make(map[string]struct{}, len(emails))
- const orphanChunk = 400
- for start := 0; start < len(emails); start += orphanChunk {
- end := min(start+orphanChunk, len(emails))
- var found []string
- if err := db.Model(&model.ClientRecord{}).Where("email IN ?", emails[start:end]).Pluck("email", &found).Error; err != nil {
- logger.Warning("compactOrphans pluck:", err)
- return clients
- }
- for _, e := range found {
- existing[e] = struct{}{}
- }
- }
- if len(existing) == len(emails) {
- return clients
- }
- out := make([]any, 0, len(existing))
- for _, c := range clients {
- cm, ok := c.(map[string]any)
- if !ok {
- out = append(out, c)
- continue
- }
- e, _ := cm["email"].(string)
- if e == "" {
- out = append(out, c)
- continue
- }
- if _, ok := existing[e]; ok {
- out = append(out, c)
- }
- }
- return out
- }
- func tombstoneClientEmail(email string) {
- if email == "" {
- return
- }
- recentlyDeletedMu.Lock()
- defer recentlyDeletedMu.Unlock()
- recentlyDeleted[email] = time.Now()
- cutoff := time.Now().Add(-deleteTombstoneTTL)
- for e, ts := range recentlyDeleted {
- if ts.Before(cutoff) {
- delete(recentlyDeleted, e)
- }
- }
- }
- func withdrawClientTombstones(emails ...string) {
- if len(emails) == 0 {
- return
- }
- recentlyDeletedMu.Lock()
- defer recentlyDeletedMu.Unlock()
- for _, email := range emails {
- if email != "" {
- delete(recentlyDeleted, email)
- }
- }
- }
- func tombstoneClientEmails(emails []string) {
- if len(emails) == 0 {
- return
- }
- now := time.Now()
- cutoff := now.Add(-deleteTombstoneTTL)
- recentlyDeletedMu.Lock()
- defer recentlyDeletedMu.Unlock()
- for _, email := range emails {
- if email != "" {
- recentlyDeleted[email] = now
- }
- }
- for e, ts := range recentlyDeleted {
- if ts.Before(cutoff) {
- delete(recentlyDeleted, e)
- }
- }
- }
- func isClientEmailTombstoned(email string) bool {
- if email == "" {
- return false
- }
- recentlyDeletedMu.Lock()
- defer recentlyDeletedMu.Unlock()
- ts, ok := recentlyDeleted[email]
- if !ok {
- return false
- }
- if time.Since(ts) > deleteTombstoneTTL {
- delete(recentlyDeleted, email)
- return false
- }
- return true
- }
- // dedupeSettingsClients collapses duplicate same-email client entries inside a
- // settings JSON blob, keeping the first occurrence. Node snapshots produced by
- // builds without the addInboundClient duplicate guard can carry duplicates
- // (#5770); adopting them verbatim would copy the duplication into the central
- // inbound. Returns the filtered JSON and whether anything was removed.
- func dedupeSettingsClients(settings string) (string, bool) {
- if settings == "" {
- return settings, false
- }
- var parsed map[string]any
- if err := json.Unmarshal([]byte(settings), &parsed); err != nil {
- return settings, false
- }
- clients, _ := parsed["clients"].([]any)
- if len(clients) < 2 {
- return settings, false
- }
- seen := make(map[string]struct{}, len(clients))
- kept := make([]any, 0, len(clients))
- for _, c := range clients {
- if cm, ok := c.(map[string]any); ok {
- if email, _ := cm["email"].(string); email != "" {
- key := strings.ToLower(email)
- if _, dup := seen[key]; dup {
- continue
- }
- seen[key] = struct{}{}
- }
- }
- kept = append(kept, c)
- }
- if len(kept) == len(clients) {
- return settings, false
- }
- parsed["clients"] = kept
- b, err := json.MarshalIndent(parsed, "", " ")
- if err != nil {
- return settings, false
- }
- return string(b), true
- }
- // stripTombstonedClients drops just-deleted client entries from a node
- // snapshot's settings JSON so adopting a stale snapshot can't re-add them to
- // the central inbound while the delete tombstone is live. Returns the filtered
- // JSON and whether anything was removed.
- func stripTombstonedClients(settings string) (string, bool) {
- if settings == "" {
- return settings, false
- }
- var parsed map[string]any
- if err := json.Unmarshal([]byte(settings), &parsed); err != nil {
- return settings, false
- }
- clients, _ := parsed["clients"].([]any)
- if len(clients) == 0 {
- return settings, false
- }
- kept := make([]any, 0, len(clients))
- for _, c := range clients {
- if cm, ok := c.(map[string]any); ok {
- if email, _ := cm["email"].(string); email != "" && isClientEmailTombstoned(email) {
- continue
- }
- }
- kept = append(kept, c)
- }
- if len(kept) == len(clients) {
- return settings, false
- }
- parsed["clients"] = kept
- b, err := json.MarshalIndent(parsed, "", " ")
- if err != nil {
- return settings, false
- }
- return string(b), true
- }
- // liftClientLifecycleInSettings rewrites adopted settings from master traffic
- // so a lagging node blob cannot store pre-extension expiry/enable (#6228).
- func liftClientLifecycleInSettings(settings string, trafficByEmail map[string]*xray.ClientTraffic) (string, bool) {
- if settings == "" || len(trafficByEmail) == 0 {
- return settings, false
- }
- var parsed map[string]any
- if err := json.Unmarshal([]byte(settings), &parsed); err != nil {
- return settings, false
- }
- clients, _ := parsed["clients"].([]any)
- if len(clients) == 0 {
- return settings, false
- }
- changed := false
- for i := range clients {
- cm, ok := clients[i].(map[string]any)
- if !ok {
- continue
- }
- email, _ := cm["email"].(string)
- if email == "" {
- continue
- }
- tr := trafficByEmail[email]
- if tr == nil {
- continue
- }
- nodeExpiry, hasExpiry := jsonClientInt64(cm["expiryTime"])
- if !hasExpiry {
- continue
- }
- merged := mergeActivationExpiry(tr.ExpiryTime, nodeExpiry)
- if merged != nodeExpiry {
- cm["expiryTime"] = merged
- changed = true
- }
- // tr is the already-merged master row, authoritative in both directions:
- // a lagging blob must not re-enable a disabled client either (#4917).
- if nodeEnable, _ := cm["enable"].(bool); nodeEnable != tr.Enable {
- cm["enable"] = tr.Enable
- changed = true
- }
- clients[i] = cm
- }
- if !changed {
- return settings, false
- }
- parsed["clients"] = clients
- b, err := json.MarshalIndent(parsed, "", " ")
- if err != nil {
- return settings, false
- }
- return string(b), true
- }
- // settingsClientAbsoluteExpiries indexes the absolute (>0) expiryTime of every
- // client in a settings blob. Never nil, so callers can cache it per inbound.
- func settingsClientAbsoluteExpiries(settings string) map[string]int64 {
- out := map[string]int64{}
- if settings == "" {
- return out
- }
- var parsed map[string]any
- if err := json.Unmarshal([]byte(settings), &parsed); err != nil {
- return out
- }
- clients, _ := parsed["clients"].([]any)
- for _, c := range clients {
- cm, ok := c.(map[string]any)
- if !ok {
- continue
- }
- email, _ := cm["email"].(string)
- if email == "" {
- continue
- }
- if exp, has := jsonClientInt64(cm["expiryTime"]); has && exp > 0 {
- out[email] = exp
- }
- }
- return out
- }
- func jsonClientInt64(v any) (int64, bool) {
- // json.Unmarshal into map[string]any yields float64 for numbers.
- n, ok := v.(float64)
- if !ok {
- return 0, false
- }
- return int64(n), true
- }
|