mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 19:49:44 +00:00
Add filtering to mount
command
This commit is contained in:
parent
3468108d4c
commit
b1c8071163
@ -35,6 +35,9 @@ type MountOptions struct {
|
|||||||
OwnerRoot bool
|
OwnerRoot bool
|
||||||
AllowRoot bool
|
AllowRoot bool
|
||||||
AllowOther bool
|
AllowOther bool
|
||||||
|
Host string
|
||||||
|
Tags []string
|
||||||
|
Paths []string
|
||||||
}
|
}
|
||||||
|
|
||||||
var mountOptions MountOptions
|
var mountOptions MountOptions
|
||||||
@ -42,9 +45,14 @@ var mountOptions MountOptions
|
|||||||
func init() {
|
func init() {
|
||||||
cmdRoot.AddCommand(cmdMount)
|
cmdRoot.AddCommand(cmdMount)
|
||||||
|
|
||||||
cmdMount.Flags().BoolVar(&mountOptions.OwnerRoot, "owner-root", false, "use 'root' as the owner of files and dirs")
|
mountFlags := cmdMount.Flags()
|
||||||
cmdMount.Flags().BoolVar(&mountOptions.AllowRoot, "allow-root", false, "allow root user to access the data in the mounted directory")
|
mountFlags.BoolVar(&mountOptions.OwnerRoot, "owner-root", false, "use 'root' as the owner of files and dirs")
|
||||||
cmdMount.Flags().BoolVar(&mountOptions.AllowOther, "allow-other", false, "allow other users to access the data in the mounted directory")
|
mountFlags.BoolVar(&mountOptions.AllowRoot, "allow-root", false, "allow root user to access the data in the mounted directory")
|
||||||
|
mountFlags.BoolVar(&mountOptions.AllowOther, "allow-other", false, "allow other users to access the data in the mounted directory")
|
||||||
|
|
||||||
|
mountFlags.StringVarP(&mountOptions.Host, "host", "H", "", `only consider snapshots for this host`)
|
||||||
|
mountFlags.StringSliceVar(&mountOptions.Tags, "tag", nil, "only consider snapshots which include this `tag`")
|
||||||
|
mountFlags.StringSliceVar(&mountOptions.Paths, "path", nil, "only consider snapshots which include this (absolute) `path`")
|
||||||
}
|
}
|
||||||
|
|
||||||
func mount(opts MountOptions, gopts GlobalOptions, mountpoint string) error {
|
func mount(opts MountOptions, gopts GlobalOptions, mountpoint string) error {
|
||||||
@ -91,7 +99,7 @@ func mount(opts MountOptions, gopts GlobalOptions, mountpoint string) error {
|
|||||||
Printf("Don't forget to umount after quitting!\n")
|
Printf("Don't forget to umount after quitting!\n")
|
||||||
|
|
||||||
root := fs.Tree{}
|
root := fs.Tree{}
|
||||||
root.Add("snapshots", fuse.NewSnapshotsDir(repo, opts.OwnerRoot))
|
root.Add("snapshots", fuse.NewSnapshotsDir(repo, opts.OwnerRoot, opts.Paths, opts.Tags, opts.Host))
|
||||||
|
|
||||||
debug.Log("serving mount at %v", mountpoint)
|
debug.Log("serving mount at %v", mountpoint)
|
||||||
err = fs.Serve(c, &root)
|
err = fs.Serve(c, &root)
|
||||||
|
@ -32,6 +32,9 @@ var _ = fs.NodeStringLookuper(&SnapshotsDir{})
|
|||||||
type SnapshotsDir struct {
|
type SnapshotsDir struct {
|
||||||
repo restic.Repository
|
repo restic.Repository
|
||||||
ownerIsRoot bool
|
ownerIsRoot bool
|
||||||
|
paths []string
|
||||||
|
tags []string
|
||||||
|
host string
|
||||||
|
|
||||||
// knownSnapshots maps snapshot timestamp to the snapshot
|
// knownSnapshots maps snapshot timestamp to the snapshot
|
||||||
sync.RWMutex
|
sync.RWMutex
|
||||||
@ -40,12 +43,15 @@ type SnapshotsDir struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NewSnapshotsDir returns a new dir object for the snapshots.
|
// NewSnapshotsDir returns a new dir object for the snapshots.
|
||||||
func NewSnapshotsDir(repo restic.Repository, ownerIsRoot bool) *SnapshotsDir {
|
func NewSnapshotsDir(repo restic.Repository, ownerIsRoot bool, paths []string, tags []string, host string) *SnapshotsDir {
|
||||||
debug.Log("fuse mount initiated")
|
debug.Log("fuse mount initiated")
|
||||||
return &SnapshotsDir{
|
return &SnapshotsDir{
|
||||||
repo: repo,
|
repo: repo,
|
||||||
knownSnapshots: make(map[string]SnapshotWithId),
|
|
||||||
ownerIsRoot: ownerIsRoot,
|
ownerIsRoot: ownerIsRoot,
|
||||||
|
paths: paths,
|
||||||
|
tags: tags,
|
||||||
|
host: host,
|
||||||
|
knownSnapshots: make(map[string]SnapshotWithId),
|
||||||
processed: restic.NewIDSet(),
|
processed: restic.NewIDSet(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -79,6 +85,13 @@ func (sn *SnapshotsDir) updateCache(ctx context.Context) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Filter snapshots we don't care for.
|
||||||
|
if (sn.host != "" && sn.host != snapshot.Hostname) ||
|
||||||
|
!snapshot.HasTags(sn.tags) ||
|
||||||
|
!snapshot.HasPaths(sn.paths) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
timestamp := snapshot.Time.Format(time.RFC3339)
|
timestamp := snapshot.Time.Format(time.RFC3339)
|
||||||
for i := 1; ; i++ {
|
for i := 1; ; i++ {
|
||||||
if _, ok := sn.knownSnapshots[timestamp]; !ok {
|
if _, ok := sn.knownSnapshots[timestamp]; !ok {
|
||||||
|
Loading…
Reference in New Issue
Block a user