mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
4479b32ad4
Squashed commit of the following:
commit 4b9cc9ddf52739fc5f918babedc99ac7ac0e2415
Merge: a6259ed57 39aeaf891
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Tue Oct 3 20:39:58 2023 +0300
Merge branch 'master' into AG-26236-ring-buffer
commit a6259ed5758156e4110ee3ea6a49760d2880ade3
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Tue Oct 3 20:30:20 2023 +0300
querylog: imp code
commit 40f9f7cd5a1cff22bcb858020f2cfa9be8399671
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Tue Oct 3 20:11:49 2023 +0300
querylog: fix typo
commit 1aabbadcb5fcbe6a95945c5bd1455b956b85a8d0
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Tue Oct 3 20:05:22 2023 +0300
querylog: imp err msg
commit 02913d35b43e190e42765823ccfcdd332839e984
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Tue Oct 3 19:37:47 2023 +0300
aghalg: imp tests
commit 98a7909088d2a65b78afa9fa3113545c94429e65
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Tue Oct 3 19:23:10 2023 +0300
all: imp tests
commit e147804eeafe89e5020cd917784eef3ff2b310d0
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Tue Oct 3 18:49:49 2023 +0300
all: imp code
commit 5f21f2f63b7bce89f2bc79c97c7350cd693c956b
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Tue Oct 3 14:39:43 2023 +0300
all: add tests
commit 35a45c7dc5d5961f6987da7c69249c56e54e97f5
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Mon Oct 2 17:43:09 2023 +0300
all: imp code
commit 21e51fcbe411258eaf830825df9d05b7ddcc187a
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Fri Sep 29 18:21:00 2023 +0300
all: add ring buffer
193 lines
4.2 KiB
Go
193 lines
4.2 KiB
Go
package querylog
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/golibs/errors"
|
|
"github.com/AdguardTeam/golibs/log"
|
|
)
|
|
|
|
// flushLogBuffer flushes the current buffer to file and resets the current
|
|
// buffer.
|
|
func (l *queryLog) flushLogBuffer() (err error) {
|
|
defer func() { err = errors.Annotate(err, "flushing log buffer: %w") }()
|
|
l.fileFlushLock.Lock()
|
|
defer l.fileFlushLock.Unlock()
|
|
|
|
b, err := l.encodeEntries()
|
|
if err != nil {
|
|
// Don't wrap the error since it's informative enough as is.
|
|
return err
|
|
}
|
|
|
|
return l.flushToFile(b)
|
|
}
|
|
|
|
// encodeEntries returns JSON encoded log entries, logs estimated time, clears
|
|
// the log buffer.
|
|
func (l *queryLog) encodeEntries() (b *bytes.Buffer, err error) {
|
|
l.bufferLock.Lock()
|
|
defer l.bufferLock.Unlock()
|
|
|
|
bufLen := l.buffer.Len()
|
|
if bufLen == 0 {
|
|
return nil, errors.Error("nothing to write to a file")
|
|
}
|
|
|
|
start := time.Now()
|
|
|
|
b = &bytes.Buffer{}
|
|
e := json.NewEncoder(b)
|
|
|
|
l.buffer.Range(func(entry *logEntry) (cont bool) {
|
|
err = e.Encode(entry)
|
|
|
|
return err == nil
|
|
})
|
|
|
|
if err != nil {
|
|
// Don't wrap the error since it's informative enough as is.
|
|
return nil, err
|
|
}
|
|
|
|
elapsed := time.Since(start)
|
|
log.Debug("%d elements serialized via json in %v: %d kB, %v/entry, %v/entry", bufLen, elapsed, b.Len()/1024, float64(b.Len())/float64(bufLen), elapsed/time.Duration(bufLen))
|
|
|
|
l.buffer.Clear()
|
|
l.flushPending = false
|
|
|
|
return b, nil
|
|
}
|
|
|
|
// flushToFile saves the encoded log entries to the query log file.
|
|
func (l *queryLog) flushToFile(b *bytes.Buffer) (err error) {
|
|
l.fileWriteLock.Lock()
|
|
defer l.fileWriteLock.Unlock()
|
|
|
|
filename := l.logFile
|
|
|
|
f, err := os.OpenFile(filename, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0o644)
|
|
if err != nil {
|
|
return fmt.Errorf("creating file %q: %w", filename, err)
|
|
}
|
|
|
|
defer func() { err = errors.WithDeferred(err, f.Close()) }()
|
|
|
|
n, err := f.Write(b.Bytes())
|
|
if err != nil {
|
|
return fmt.Errorf("writing to file %q: %w", filename, err)
|
|
}
|
|
|
|
log.Debug("querylog: ok %q: %v bytes written", filename, n)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (l *queryLog) rotate() error {
|
|
from := l.logFile
|
|
to := l.logFile + ".1"
|
|
|
|
err := os.Rename(from, to)
|
|
if err != nil {
|
|
if errors.Is(err, os.ErrNotExist) {
|
|
log.Debug("querylog: no log to rotate")
|
|
|
|
return nil
|
|
}
|
|
|
|
return fmt.Errorf("failed to rename old file: %w", err)
|
|
}
|
|
|
|
log.Debug("querylog: renamed %s into %s", from, to)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (l *queryLog) readFileFirstTimeValue() (first time.Time, err error) {
|
|
var f *os.File
|
|
f, err = os.Open(l.logFile)
|
|
if err != nil {
|
|
return time.Time{}, err
|
|
}
|
|
|
|
defer func() { err = errors.WithDeferred(err, f.Close()) }()
|
|
|
|
buf := make([]byte, 512)
|
|
var r int
|
|
r, err = f.Read(buf)
|
|
if err != nil {
|
|
return time.Time{}, err
|
|
}
|
|
|
|
val := readJSONValue(string(buf[:r]), `"T":"`)
|
|
t, err := time.Parse(time.RFC3339Nano, val)
|
|
if err != nil {
|
|
return time.Time{}, err
|
|
}
|
|
|
|
log.Debug("querylog: the oldest log entry: %s", val)
|
|
|
|
return t, nil
|
|
}
|
|
|
|
func (l *queryLog) periodicRotate() {
|
|
defer log.OnPanic("querylog: rotating")
|
|
|
|
l.checkAndRotate()
|
|
|
|
// rotationCheckIvl is the period of time between checking the need for
|
|
// rotating log files. It's smaller of any available rotation interval to
|
|
// increase time accuracy.
|
|
//
|
|
// See https://github.com/AdguardTeam/AdGuardHome/issues/3823.
|
|
const rotationCheckIvl = 1 * time.Hour
|
|
|
|
rotations := time.NewTicker(rotationCheckIvl)
|
|
defer rotations.Stop()
|
|
|
|
for range rotations.C {
|
|
l.checkAndRotate()
|
|
}
|
|
}
|
|
|
|
// checkAndRotate rotates log files if those are older than the specified
|
|
// rotation interval.
|
|
func (l *queryLog) checkAndRotate() {
|
|
var rotationIvl time.Duration
|
|
func() {
|
|
l.confMu.RLock()
|
|
defer l.confMu.RUnlock()
|
|
|
|
rotationIvl = l.conf.RotationIvl
|
|
}()
|
|
|
|
oldest, err := l.readFileFirstTimeValue()
|
|
if err != nil && !errors.Is(err, os.ErrNotExist) {
|
|
log.Error("querylog: reading oldest record for rotation: %s", err)
|
|
|
|
return
|
|
}
|
|
|
|
if rotTime, now := oldest.Add(rotationIvl), time.Now(); rotTime.After(now) {
|
|
log.Debug(
|
|
"querylog: %s <= %s, not rotating",
|
|
now.Format(time.RFC3339),
|
|
rotTime.Format(time.RFC3339),
|
|
)
|
|
|
|
return
|
|
}
|
|
|
|
err = l.rotate()
|
|
if err != nil {
|
|
log.Error("querylog: rotating: %s", err)
|
|
|
|
return
|
|
}
|
|
|
|
log.Debug("querylog: rotated successfully")
|
|
}
|