From 80ec01dd490cc794b956e7a22b1aff4e7235c90b Mon Sep 17 00:00:00 2001 From: Eugene Burkov Date: Tue, 5 Nov 2024 19:21:29 +0300 Subject: [PATCH] Pull request 2298: 7314 Fix updater Updates #7314. Squashed commit of the following: commit be214937fc391cf8c0c31e52a29b0adbdcd81f08 Author: Eugene Burkov Date: Tue Nov 5 18:42:25 2024 +0300 updater: upd doc commit bdb9df94eecb8b1845b1e65b39325f163541ee91 Author: Eugene Burkov Date: Tue Nov 5 18:41:26 2024 +0300 all: rename const commit 7fbabeb939ba37aba11852af3c4095363e4ce304 Author: Eugene Burkov Date: Tue Nov 5 18:34:37 2024 +0300 all: add binary const commit c9f1a9f747c9ec440a9ea5754eed6974eff4169d Author: Eugene Burkov Date: Tue Nov 5 18:20:44 2024 +0300 updater: fix binary perm --- internal/aghos/os.go | 3 ++- internal/updater/updater.go | 20 ++++++++++++-------- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/internal/aghos/os.go b/internal/aghos/os.go index 7d41a456..f9ab2071 100644 --- a/internal/aghos/os.go +++ b/internal/aghos/os.go @@ -20,9 +20,10 @@ import ( "github.com/AdguardTeam/golibs/log" ) -// Default file and directory permissions. +// Default file, binary, and directory permissions. const ( DefaultPermDir fs.FileMode = 0o700 + DefaultPermExe fs.FileMode = 0o700 DefaultPermFile fs.FileMode = 0o600 ) diff --git a/internal/updater/updater.go b/internal/updater/updater.go index e2a990df..85cb69b0 100644 --- a/internal/updater/updater.go +++ b/internal/updater/updater.go @@ -7,6 +7,7 @@ import ( "compress/gzip" "fmt" "io" + "io/fs" "net/http" "os" "os/exec" @@ -240,7 +241,7 @@ func (u *Updater) unpack() error { func (u *Updater) check() (err error) { log.Debug("updater: checking configuration") - err = copyFile(u.confName, filepath.Join(u.updateDir, "AdGuardHome.yaml")) + err = copyFile(u.confName, filepath.Join(u.updateDir, "AdGuardHome.yaml"), aghos.DefaultPermFile) if err != nil { return fmt.Errorf("copyFile() failed: %w", err) } @@ -266,7 +267,7 @@ func (u *Updater) backup(firstRun bool) (err error) { log.Debug("updater: backing up current configuration") _ = aghos.Mkdir(u.backupDir, aghos.DefaultPermDir) if !firstRun { - err = copyFile(u.confName, filepath.Join(u.backupDir, "AdGuardHome.yaml")) + err = copyFile(u.confName, filepath.Join(u.backupDir, "AdGuardHome.yaml"), aghos.DefaultPermFile) if err != nil { return fmt.Errorf("copyFile() failed: %w", err) } @@ -296,8 +297,8 @@ func (u *Updater) replace() error { } if u.goos == "windows" { - // rename fails with "File in use" error - err = copyFile(u.updateExeName, u.currentExeName) + // Use copy, since renaming fails with "File in use" error. + err = copyFile(u.updateExeName, u.currentExeName, aghos.DefaultPermExe) } else { err = os.Rename(u.updateExeName, u.currentExeName) } @@ -521,15 +522,15 @@ func zipFileUnpack(zipfile, outDir string) (files []string, err error) { return files, err } -// Copy file on disk -func copyFile(src, dst string) (err error) { +// copyFile copies a file from src to dst with the specified permissions. +func copyFile(src, dst string, perm fs.FileMode) (err error) { d, err := os.ReadFile(src) if err != nil { // Don't wrap the error, since it's informative enough as is. return err } - err = aghos.WriteFile(dst, d, aghos.DefaultPermFile) + err = aghos.WriteFile(dst, d, perm) if err != nil { // Don't wrap the error, since it's informative enough as is. return err @@ -538,6 +539,9 @@ func copyFile(src, dst string) (err error) { return nil } +// copySupportingFiles copies each file specified in files from srcdir to +// dstdir. If a file specified as a path, only the name of the file is used. +// It skips AdGuardHome, AdGuardHome.exe, and AdGuardHome.yaml. func copySupportingFiles(files []string, srcdir, dstdir string) error { for _, f := range files { _, name := filepath.Split(f) @@ -548,7 +552,7 @@ func copySupportingFiles(files []string, srcdir, dstdir string) error { src := filepath.Join(srcdir, name) dst := filepath.Join(dstdir, name) - err := copyFile(src, dst) + err := copyFile(src, dst, aghos.DefaultPermFile) if err != nil && !errors.Is(err, os.ErrNotExist) { return err }