Files
3x-ui/internal/web/job/clear_logs_job.go
T
Rouzbeh† 15faec6258 fix(logs): limit Xray log growth (#5840)
* Limit Xray log growth

* Apply suggestion from @github-actions[bot]

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* Apply suggestion from @github-actions[bot]

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

---------

Co-authored-by: Mahyar Dana <dana.mahyar76@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-07-08 00:33:34 +03:00

130 lines
3.3 KiB
Go

package job
import (
"io"
"os"
"path/filepath"
"github.com/mhsanaei/3x-ui/v3/internal/logger"
"github.com/mhsanaei/3x-ui/v3/internal/xray"
)
const defaultMaxXrayLogBytes int64 = 64 << 20
var maxXrayLogBytes = defaultMaxXrayLogBytes
// ClearLogsJob clears old log files to prevent disk space issues.
type ClearLogsJob struct{}
// PruneXrayLogsJob truncates oversized Xray access and error logs.
// PruneXrayLogsJob truncates the Xray access and error logs once either exceeds maxXrayLogBytes.
type PruneXrayLogsJob struct{}
// NewClearLogsJob creates a new log cleanup job instance.
func NewClearLogsJob() *ClearLogsJob {
return new(ClearLogsJob)
}
// NewPruneXrayLogsJob creates a new Xray log pruning job instance.
func NewPruneXrayLogsJob() *PruneXrayLogsJob {
return new(PruneXrayLogsJob)
}
// ensureFileExists creates the necessary directories and file if they don't exist
func ensureFileExists(path string) error {
dir := filepath.Dir(path)
if err := os.MkdirAll(dir, 0o755); err != nil {
return err
}
file, err := os.OpenFile(path, os.O_CREATE|os.O_RDWR, 0o644)
if err != nil {
return err
}
file.Close()
return nil
}
// Here Run is an interface method of the Job interface
func (j *ClearLogsJob) Run() {
logFiles := []string{xray.GetIPLimitLogPath(), xray.GetIPLimitBannedLogPath()}
logFilesPrev := []string{xray.GetIPLimitBannedPrevLogPath()}
// Ensure all log files and their paths exist
for _, path := range append(logFiles, logFilesPrev...) {
if err := ensureFileExists(path); err != nil {
logger.Warning("Failed to ensure log file exists:", path, "-", err)
}
}
// Clear log files and copy to previous logs
for i := range len(logFiles) {
if i > 0 {
// Copy to previous logs
logFilePrev, err := os.OpenFile(logFilesPrev[i-1], os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0o644)
if err != nil {
logger.Warning("Failed to open previous log file for writing:", logFilesPrev[i-1], "-", err)
continue
}
logFile, err := os.OpenFile(logFiles[i], os.O_RDONLY, 0o644)
if err != nil {
logger.Warning("Failed to open current log file for reading:", logFiles[i], "-", err)
logFilePrev.Close()
continue
}
_, err = io.Copy(logFilePrev, logFile)
if err != nil {
logger.Warning("Failed to copy log file:", logFiles[i], "to", logFilesPrev[i-1], "-", err)
}
logFile.Close()
logFilePrev.Close()
}
err := os.Truncate(logFiles[i], 0)
if err != nil {
logger.Warning("Failed to truncate log file:", logFiles[i], "-", err)
}
}
wipeXrayLogs()
}
func (j *PruneXrayLogsJob) Run() {
truncateXrayLog(xray.GetAccessLogPath, maxXrayLogBytes)
truncateXrayLog(xray.GetErrorLogPath, maxXrayLogBytes)
}
func wipeXrayLogs() {
truncateXrayLog(xray.GetAccessLogPath, 0)
truncateXrayLog(xray.GetErrorLogPath, 0)
}
func truncateXrayLog(pathFn func() (string, error), maxBytes int64) {
logPath, err := pathFn()
if err != nil || disabledLogPath(logPath) {
return
}
if maxBytes > 0 {
info, err := os.Stat(logPath)
if err != nil {
if !os.IsNotExist(err) {
logger.Warning("Failed to stat Xray log:", logPath, "-", err)
}
return
}
if info.Size() <= maxBytes {
return
}
}
if err := os.Truncate(logPath, 0); err != nil && !os.IsNotExist(err) {
logger.Warning("Failed to truncate Xray log:", logPath, "-", err)
}
}
func disabledLogPath(path string) bool {
return path == "" || path == "none"
}