mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-21 20:45:33 +03:00
355cec1d7b
Squashed commit of the following:
commit 6e0e61ec2e95a563b04a622f46c6bbe2b2e12711
Merge: e3cccc01a 5b5b39713
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Wed Oct 2 20:51:29 2024 +0300
Merge branch 'master' into AG-32257-file-permission-mitigation
commit e3cccc01a9cbd382cec0fcd7f3685e43acb48424
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Wed Oct 2 19:57:32 2024 +0300
dnsforward: imp test
commit 16ecebbc2fd2f4afe2bf475774af1786fa7a02c0
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Wed Oct 2 19:22:10 2024 +0300
configmigrate: imp tests
commit da8777c3a7c81e17c0d08cfff4e3a9c8d2bbd649
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Wed Oct 2 18:58:46 2024 +0300
all: imp types, tests
commit 58822a0ef8aa2d944a667d1ba77fe23ff52af424
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Wed Oct 2 18:28:37 2024 +0300
all: imp chlog
commit 8ce81f918cc5cf43972e2045532a48c829257a2f
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Wed Oct 2 18:09:57 2024 +0300
all: improve permissions, add safe_fs_patterns
86 lines
2.2 KiB
Go
86 lines
2.2 KiB
Go
// Package permcheck contains code for simplifying permissions checks on files
|
|
// and directories.
|
|
//
|
|
// TODO(a.garipov): Improve the approach on Windows.
|
|
package permcheck
|
|
|
|
import (
|
|
"io/fs"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
|
"github.com/AdguardTeam/golibs/errors"
|
|
"github.com/AdguardTeam/golibs/log"
|
|
)
|
|
|
|
// File type constants for logging.
|
|
const (
|
|
typeDir = "directory"
|
|
typeFile = "file"
|
|
)
|
|
|
|
// Check checks the permissions on important files. It logs the results at
|
|
// appropriate levels.
|
|
func Check(workDir, dataDir, statsDir, querylogDir, confFilePath string) {
|
|
checkDir(workDir)
|
|
|
|
checkFile(confFilePath)
|
|
|
|
// TODO(a.garipov): Put all paths in one place and remove this duplication.
|
|
checkDir(dataDir)
|
|
checkDir(filepath.Join(dataDir, "filters"))
|
|
checkFile(filepath.Join(dataDir, "sessions.db"))
|
|
checkFile(filepath.Join(dataDir, "leases.json"))
|
|
|
|
if dataDir != querylogDir {
|
|
checkDir(querylogDir)
|
|
}
|
|
checkFile(filepath.Join(querylogDir, "querylog.json"))
|
|
checkFile(filepath.Join(querylogDir, "querylog.json.1"))
|
|
|
|
if dataDir != statsDir {
|
|
checkDir(statsDir)
|
|
}
|
|
checkFile(filepath.Join(statsDir, "stats.db"))
|
|
}
|
|
|
|
// checkDir checks the permissions of a single directory. The results are
|
|
// logged at the appropriate level.
|
|
func checkDir(dirPath string) {
|
|
checkPath(dirPath, typeDir, aghos.DefaultPermDir)
|
|
}
|
|
|
|
// checkFile checks the permissions of a single file. The results are logged at
|
|
// the appropriate level.
|
|
func checkFile(filePath string) {
|
|
checkPath(filePath, typeFile, aghos.DefaultPermFile)
|
|
}
|
|
|
|
// checkPath checks the permissions of a single filesystem entity. The results
|
|
// are logged at the appropriate level.
|
|
func checkPath(entPath, fileType string, want fs.FileMode) {
|
|
s, err := os.Stat(entPath)
|
|
if err != nil {
|
|
logFunc := log.Error
|
|
if errors.Is(err, os.ErrNotExist) {
|
|
logFunc = log.Debug
|
|
}
|
|
|
|
logFunc("permcheck: checking %s %q: %s", fileType, entPath, err)
|
|
|
|
return
|
|
}
|
|
|
|
// TODO(a.garipov): Add a more fine-grained check and result reporting.
|
|
perm := s.Mode().Perm()
|
|
if perm != want {
|
|
log.Info(
|
|
"permcheck: SECURITY WARNING: %s %q has unexpected permissions %#o; want %#o",
|
|
fileType,
|
|
entPath,
|
|
perm,
|
|
want,
|
|
)
|
|
}
|
|
}
|