2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 19:43:32 +00:00
|
|
|
//
|
2015-03-07 20:36:35 +00:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2014-06-01 20:50:14 +00:00
|
|
|
|
2014-05-15 03:26:55 +00:00
|
|
|
package model
|
2014-03-02 22:58:14 +00:00
|
|
|
|
2014-03-28 13:36:57 +00:00
|
|
|
import (
|
2023-08-04 17:57:30 +00:00
|
|
|
"context"
|
2022-08-16 08:01:49 +00:00
|
|
|
"errors"
|
2016-10-18 20:00:01 +00:00
|
|
|
"fmt"
|
2019-07-28 08:25:05 +00:00
|
|
|
"path/filepath"
|
2014-06-21 07:43:12 +00:00
|
|
|
"time"
|
2019-07-28 08:25:05 +00:00
|
|
|
|
2023-08-04 17:57:30 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2019-07-28 08:25:05 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
2014-03-28 13:36:57 +00:00
|
|
|
)
|
2014-03-02 22:58:14 +00:00
|
|
|
|
2019-07-28 08:25:05 +00:00
|
|
|
// inWritableDir calls fn(path), while making sure that the directory
|
|
|
|
// containing `path` is writable for the duration of the call.
|
2019-07-31 08:53:35 +00:00
|
|
|
func inWritableDir(fn func(string) error, targetFs fs.Filesystem, path string, ignorePerms bool) error {
|
2019-07-28 08:25:05 +00:00
|
|
|
dir := filepath.Dir(path)
|
|
|
|
info, err := targetFs.Stat(dir)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !info.IsDir() {
|
|
|
|
return errors.New("Not a directory: " + path)
|
|
|
|
}
|
2022-03-26 10:07:07 +00:00
|
|
|
|
|
|
|
const permBits = fs.ModePerm | fs.ModeSetuid | fs.ModeSetgid | fs.ModeSticky
|
2022-05-22 11:52:40 +00:00
|
|
|
var parentErr error
|
2023-08-04 17:57:30 +00:00
|
|
|
if mode := info.Mode() & permBits; mode&0o200 == 0 {
|
2019-07-28 08:25:05 +00:00
|
|
|
// A non-writeable directory (for this user; we assume that's the
|
|
|
|
// relevant part). Temporarily change the mode so we can delete the
|
|
|
|
// file or directory inside it.
|
2023-08-04 17:57:30 +00:00
|
|
|
parentErr = targetFs.Chmod(dir, mode|0o700)
|
2022-05-22 11:52:40 +00:00
|
|
|
if parentErr != nil {
|
|
|
|
l.Debugf("Failed to make parent directory writable: %v", parentErr)
|
|
|
|
} else {
|
|
|
|
// Chmod succeeded, we should change the permissions back on the way
|
|
|
|
// out. If we fail we log the error as we have irrevocably messed up
|
|
|
|
// at this point. :( (The operation we were called to wrap has
|
|
|
|
// succeeded or failed on its own so returning an error to the
|
|
|
|
// caller is inappropriate.)
|
|
|
|
defer func() {
|
|
|
|
if err := targetFs.Chmod(dir, mode); err != nil && !fs.IsNotExist(err) {
|
|
|
|
logFn := l.Warnln
|
|
|
|
if ignorePerms {
|
|
|
|
logFn = l.Debugln
|
|
|
|
}
|
|
|
|
logFn("Failed to restore directory permissions after gaining write access:", err)
|
2022-03-26 10:07:07 +00:00
|
|
|
}
|
2022-05-22 11:52:40 +00:00
|
|
|
}()
|
|
|
|
}
|
2019-07-28 08:25:05 +00:00
|
|
|
}
|
|
|
|
|
2022-05-22 11:52:40 +00:00
|
|
|
err = fn(path)
|
|
|
|
if fs.IsPermission(err) && parentErr != nil {
|
|
|
|
err = fmt.Errorf("error after failing to make parent directory writable: %w", err)
|
|
|
|
}
|
|
|
|
return err
|
2019-07-28 08:25:05 +00:00
|
|
|
}
|
2023-08-04 17:57:30 +00:00
|
|
|
|
|
|
|
// addTimeUntilCancelled adds time to the counter for the duration of the
|
|
|
|
// Context. We do this piecemeal so that polling the counter during a long
|
|
|
|
// operation shows a relevant value, instead of the counter just increasing
|
|
|
|
// by a large amount at the end of the operation.
|
|
|
|
func addTimeUntilCancelled(ctx context.Context, counter prometheus.Counter) {
|
|
|
|
t0 := time.Now()
|
|
|
|
defer func() {
|
2023-09-20 07:04:47 +00:00
|
|
|
if dur := time.Since(t0).Seconds(); dur > 0 {
|
|
|
|
counter.Add(dur)
|
|
|
|
}
|
2023-08-04 17:57:30 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
ticker := time.NewTicker(time.Second)
|
|
|
|
defer ticker.Stop()
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case t := <-ticker.C:
|
2023-09-20 07:04:47 +00:00
|
|
|
if dur := t.Sub(t0).Seconds(); dur > 0 {
|
|
|
|
counter.Add(dur)
|
|
|
|
}
|
2023-08-04 17:57:30 +00:00
|
|
|
t0 = t
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|