mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-28 00:24:19 +00:00
7605902324
* test(audit): add gremlins/rapid/coverage tooling + AUDIT.md scaffold * test(audit): hygiene sweep (race-clean except logger global; Finding #2) + smell inventory * test(audit): cover untested error/edge branches (TLS proxy+pin, migration tag cleanup=Finding #1) * test(audit): strengthen internal/sub link tests (dedup key, TLS/Reality mapping, clash well-formedness) * test(audit): property (rapid) + fuzz tests for joinHostPort/userinfo/pin/ParseLink * test(audit): tighten frontend subSortIndex rejection assertions + wire coverage * ci(audit): add shuffle gate + non-blocking race job (Finding #2) + fuzz-smoke; document mutation policy * chore(audit): gitignore frontend coverage output * test(audit): exhaustive whole-repo pass — strengthen 5 weak/fake tests (netproxy, CSP, modal per-protocol loops, schema coercions) * docs(contributing): add Testing section (conventions, race/shuffle, fuzz, mutation policy); drop AUDIT.md ledger * fix(logger,migration): guard logBuffer with mutex; execute legacy tag cleanup (tx.Exec); make CI race gate blocking * ci(mutation): add nightly scoped gremlins workflow (informational artifacts) * test(audit): strengthen runtime tests — baseURL scheme/port bounds, isNonEmptySlice, trafficReset * test(audit): strengthen clash tests — reality field mapping + tcp-header validation * test(audit): runtime — egress-proxy + content-type tests; drop redundant bp=='' branch * test(audit): strengthen link parser/helper tests (defaultPort, splitComma, base64, canonicalQuery, tls/reality/transport mapping) * test(audit): strengthen sub/xray/common/netsafe/mtproto/config/middleware tests (kill surviving mutants) * test(audit): raise timeout on protocol-iteration modal tests (heavy re-renders, slow on CI) * fix(logger): GetLogs returns at most c entries (off-by-one fix; addresses PR review) * perf(logger): snapshot logBuffer under lock so GetLogs doesn't block logging; clarify fuzz-seed docs (addresses PR review)
241 lines
7.2 KiB
Go
241 lines
7.2 KiB
Go
// Package logger provides logging functionality for the 3x-ui panel with
|
||
// dual-backend logging (console/syslog and file) and buffered log storage for web UI.
|
||
package logger
|
||
|
||
import (
|
||
"fmt"
|
||
"os"
|
||
"path/filepath"
|
||
"runtime"
|
||
"sync"
|
||
"time"
|
||
|
||
"github.com/mhsanaei/3x-ui/v3/internal/config"
|
||
"github.com/op/go-logging"
|
||
|
||
"gopkg.in/natefinch/lumberjack.v2"
|
||
)
|
||
|
||
const (
|
||
maxLogBufferSize = 10240 // Maximum log entries kept in memory
|
||
logFileName = "3xui.log" // Log file name
|
||
timeFormat = "2006/01/02 15:04:05" // Log timestamp format
|
||
|
||
// On-disk rotation limits — single file capped, old segments pruned automatically.
|
||
maxLogFileMB = 10 // rotate active log when larger than this
|
||
maxLogBackups = 5 // rotated files retained (beyond current segment)
|
||
maxLogAgeDays = 7 // remove rotated backups older than this (0 disables time-based pruning)
|
||
compressRotated = true
|
||
)
|
||
|
||
var (
|
||
logger *logging.Logger
|
||
fileRotate *lumberjack.Logger // nil when file backend disabled
|
||
|
||
// logBuffer maintains recent log entries in memory for web UI retrieval;
|
||
// logBufferMu guards it — written from many goroutines, read by the web UI.
|
||
logBufferMu sync.Mutex
|
||
logBuffer []struct {
|
||
time string
|
||
level logging.Level
|
||
log string
|
||
}
|
||
)
|
||
|
||
// InitLogger initializes dual logging backends: console/syslog and file.
|
||
// Console logging uses the specified level, file logging always uses DEBUG level.
|
||
func InitLogger(level logging.Level) {
|
||
newLogger := logging.MustGetLogger("x-ui")
|
||
backends := make([]logging.Backend, 0, 2)
|
||
|
||
// Console/syslog backend with configurable level
|
||
if consoleBackend := initDefaultBackend(); consoleBackend != nil {
|
||
leveledBackend := logging.AddModuleLevel(consoleBackend)
|
||
leveledBackend.SetLevel(level, "x-ui")
|
||
backends = append(backends, leveledBackend)
|
||
}
|
||
|
||
// File backend with DEBUG level for comprehensive logging
|
||
if fileBackend := initFileBackend(); fileBackend != nil {
|
||
leveledBackend := logging.AddModuleLevel(fileBackend)
|
||
leveledBackend.SetLevel(logging.DEBUG, "x-ui")
|
||
backends = append(backends, leveledBackend)
|
||
}
|
||
|
||
multiBackend := logging.MultiLogger(backends...)
|
||
newLogger.SetBackend(multiBackend)
|
||
logger = newLogger
|
||
}
|
||
|
||
// initDefaultBackend creates the console/syslog logging backend.
|
||
// Windows: Uses stderr directly (no syslog support)
|
||
// Unix-like: Attempts syslog, falls back to stderr
|
||
func initDefaultBackend() logging.Backend {
|
||
var backend logging.Backend
|
||
includeTime := false
|
||
|
||
if runtime.GOOS == "windows" {
|
||
// Windows: Use stderr directly (no syslog support)
|
||
backend = logging.NewLogBackend(os.Stderr, "", 0)
|
||
includeTime = true
|
||
} else {
|
||
// Unix-like: Try syslog, fallback to stderr
|
||
if syslogBackend, err := logging.NewSyslogBackend(""); err != nil {
|
||
fmt.Fprintf(os.Stderr, "syslog backend disabled: %v\n", err)
|
||
backend = logging.NewLogBackend(os.Stderr, "", 0)
|
||
includeTime = os.Getppid() > 0
|
||
} else {
|
||
backend = syslogBackend
|
||
}
|
||
}
|
||
|
||
return logging.NewBackendFormatter(backend, newFormatter(includeTime))
|
||
}
|
||
|
||
// initFileBackend creates the file logging backend with size/age‑bounded rotation
|
||
// so log volume cannot grow without limit on disk.
|
||
func initFileBackend() logging.Backend {
|
||
logDir := config.GetLogFolder()
|
||
if err := os.MkdirAll(logDir, 0o750); err != nil {
|
||
fmt.Fprintf(os.Stderr, "failed to create log folder %s: %v\n", logDir, err)
|
||
return nil
|
||
}
|
||
|
||
logPath := filepath.Join(logDir, logFileName)
|
||
fileRotate = &lumberjack.Logger{
|
||
Filename: logPath,
|
||
MaxSize: maxLogFileMB,
|
||
MaxBackups: maxLogBackups,
|
||
MaxAge: maxLogAgeDays,
|
||
LocalTime: true,
|
||
Compress: compressRotated,
|
||
}
|
||
|
||
backend := logging.NewLogBackend(fileRotate, "", 0)
|
||
return logging.NewBackendFormatter(backend, newFormatter(true))
|
||
}
|
||
|
||
// newFormatter creates a log formatter with optional timestamp.
|
||
func newFormatter(withTime bool) logging.Formatter {
|
||
format := `%{level} - %{message}`
|
||
if withTime {
|
||
format = `%{time:` + timeFormat + `} %{level} - %{message}`
|
||
}
|
||
return logging.MustStringFormatter(format)
|
||
}
|
||
|
||
// CloseLogger closes the rotating log writer and cleans up resources.
|
||
// Should be called during application shutdown.
|
||
func CloseLogger() {
|
||
if fileRotate != nil {
|
||
_ = fileRotate.Close()
|
||
fileRotate = nil
|
||
}
|
||
}
|
||
|
||
// Debug logs a debug message and adds it to the log buffer.
|
||
func Debug(args ...any) {
|
||
logger.Debug(args...)
|
||
addToBuffer("DEBUG", fmt.Sprint(args...))
|
||
}
|
||
|
||
// Debugf logs a formatted debug message and adds it to the log buffer.
|
||
func Debugf(format string, args ...any) {
|
||
logger.Debugf(format, args...)
|
||
addToBuffer("DEBUG", fmt.Sprintf(format, args...))
|
||
}
|
||
|
||
// Info logs an info message and adds it to the log buffer.
|
||
func Info(args ...any) {
|
||
logger.Info(args...)
|
||
addToBuffer("INFO", fmt.Sprint(args...))
|
||
}
|
||
|
||
// Infof logs a formatted info message and adds it to the log buffer.
|
||
func Infof(format string, args ...any) {
|
||
logger.Infof(format, args...)
|
||
addToBuffer("INFO", fmt.Sprintf(format, args...))
|
||
}
|
||
|
||
// Notice logs a notice message and adds it to the log buffer.
|
||
func Notice(args ...any) {
|
||
logger.Notice(args...)
|
||
addToBuffer("NOTICE", fmt.Sprint(args...))
|
||
}
|
||
|
||
// Noticef logs a formatted notice message and adds it to the log buffer.
|
||
func Noticef(format string, args ...any) {
|
||
logger.Noticef(format, args...)
|
||
addToBuffer("NOTICE", fmt.Sprintf(format, args...))
|
||
}
|
||
|
||
// Warning logs a warning message and adds it to the log buffer.
|
||
func Warning(args ...any) {
|
||
logger.Warning(args...)
|
||
addToBuffer("WARNING", fmt.Sprint(args...))
|
||
}
|
||
|
||
// Warningf logs a formatted warning message and adds it to the log buffer.
|
||
func Warningf(format string, args ...any) {
|
||
logger.Warningf(format, args...)
|
||
addToBuffer("WARNING", fmt.Sprintf(format, args...))
|
||
}
|
||
|
||
// Error logs an error message and adds it to the log buffer.
|
||
func Error(args ...any) {
|
||
logger.Error(args...)
|
||
addToBuffer("ERROR", fmt.Sprint(args...))
|
||
}
|
||
|
||
// Errorf logs a formatted error message and adds it to the log buffer.
|
||
func Errorf(format string, args ...any) {
|
||
logger.Errorf(format, args...)
|
||
addToBuffer("ERROR", fmt.Sprintf(format, args...))
|
||
}
|
||
|
||
// addToBuffer adds a log entry to the in-memory ring buffer for web UI retrieval.
|
||
func addToBuffer(level string, newLog string) {
|
||
t := time.Now()
|
||
logBufferMu.Lock()
|
||
defer logBufferMu.Unlock()
|
||
if len(logBuffer) >= maxLogBufferSize {
|
||
logBuffer = logBuffer[1:]
|
||
}
|
||
|
||
logLevel, _ := logging.LogLevel(level)
|
||
logBuffer = append(logBuffer, struct {
|
||
time string
|
||
level logging.Level
|
||
log string
|
||
}{
|
||
time: t.Format(timeFormat),
|
||
level: logLevel,
|
||
log: newLog,
|
||
})
|
||
}
|
||
|
||
// GetLogs retrieves up to c log entries from the buffer that are at or below the specified level.
|
||
func GetLogs(c int, level string) []string {
|
||
var output []string
|
||
logLevel, _ := logging.LogLevel(level)
|
||
|
||
// Snapshot (copy) under the lock, then filter/format unlocked: a UI log fetch
|
||
// must not block addToBuffer — and thus all logging — for the formatting loop.
|
||
// A copy (not a reslice) is required, since addToBuffer can append in place.
|
||
logBufferMu.Lock()
|
||
snapshot := make([]struct {
|
||
time string
|
||
level logging.Level
|
||
log string
|
||
}, len(logBuffer))
|
||
copy(snapshot, logBuffer)
|
||
logBufferMu.Unlock()
|
||
|
||
for i := len(snapshot) - 1; i >= 0 && len(output) < c; i-- {
|
||
if snapshot[i].level <= logLevel {
|
||
output = append(output, fmt.Sprintf("%s %s - %s", snapshot[i].time, snapshot[i].level, snapshot[i].log))
|
||
}
|
||
}
|
||
return output
|
||
}
|