mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-07-17 16:36:49 +00:00
184 lines
4.9 KiB
Go
184 lines
4.9 KiB
Go
package files
|
|
|
|
import (
|
|
"errors"
|
|
"io/fs"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/spf13/afero"
|
|
)
|
|
|
|
// ScopedFs is an afero.Fs that confines every operation to a base directory and
|
|
// refuses to follow a symbolic link whose on-disk target resolves outside that
|
|
// base. It wraps an *afero.BasePathFs — which already provides the lexical
|
|
// confinement — and adds a per-operation scope check on every call that would
|
|
// dereference a symlink at the OS layer (open, stat, lstat, chmod, …).
|
|
type ScopedFs struct {
|
|
base *afero.BasePathFs
|
|
}
|
|
|
|
var (
|
|
_ afero.Fs = (*ScopedFs)(nil)
|
|
_ afero.Lstater = (*ScopedFs)(nil)
|
|
)
|
|
|
|
func NewScopedFs(source afero.Fs, path string) *ScopedFs {
|
|
if s, ok := source.(*ScopedFs); ok {
|
|
source = s.base
|
|
}
|
|
return &ScopedFs{base: afero.NewBasePathFs(source, path).(*afero.BasePathFs)}
|
|
}
|
|
|
|
// Base returns the underlying *afero.BasePathFs.
|
|
func (s *ScopedFs) Base() *afero.BasePathFs { return s.base }
|
|
|
|
// guard returns an error if name's on-disk target resolves outside the scope.
|
|
func (s *ScopedFs) guard(name string) error {
|
|
ok, err := s.within(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if !ok {
|
|
return os.ErrPermission
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// within reports whether the on-disk target of p — after resolving any symbolic
|
|
// links — stays within the scoped root. It exists to stop a symlink that lives
|
|
// lexically inside the scope but points outside it from being followed for
|
|
// reads, writes, or shares.
|
|
//
|
|
// Paths that do not exist yet (e.g. a brand-new file being created) are
|
|
// validated against their nearest existing ancestor, so legitimate new files
|
|
// are always allowed.
|
|
//
|
|
// Note: a dangling symlink whose target does not yet exist resolves to its
|
|
// containing directory and is therefore allowed; writing through such a link
|
|
// could still create a file outside the scope. This is treated as best-effort
|
|
// and relies on rejecting existing escaping symlinks, which covers the
|
|
// disclosure and overwrite vectors.
|
|
func (s *ScopedFs) within(p string) (bool, error) {
|
|
root, err := filepath.EvalSymlinks(afero.FullBaseFsPath(s.base, "/"))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
target := afero.FullBaseFsPath(s.base, p)
|
|
resolved, err := filepath.EvalSymlinks(target)
|
|
for errors.Is(err, fs.ErrNotExist) {
|
|
parent := filepath.Dir(target)
|
|
if parent == target {
|
|
break
|
|
}
|
|
target = parent
|
|
resolved, err = filepath.EvalSymlinks(target)
|
|
}
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
// Compare against root with a trailing separator so a sibling like
|
|
// "/srvother" is not treated as being inside "/srv". When root is itself the
|
|
// filesystem boundary (e.g. "/"), it already ends in a separator, so avoid
|
|
// producing "//" — which no path would match — and accept any path under it.
|
|
prefix := root
|
|
if !strings.HasSuffix(prefix, string(filepath.Separator)) {
|
|
prefix += string(filepath.Separator)
|
|
}
|
|
|
|
return resolved == root || strings.HasPrefix(resolved, prefix), nil
|
|
}
|
|
|
|
func (s *ScopedFs) Create(name string) (afero.File, error) {
|
|
if err := s.guard(name); err != nil {
|
|
return nil, err
|
|
}
|
|
return s.base.Create(name)
|
|
}
|
|
|
|
func (s *ScopedFs) Mkdir(name string, perm os.FileMode) error {
|
|
if err := s.guard(name); err != nil {
|
|
return err
|
|
}
|
|
return s.base.Mkdir(name, perm)
|
|
}
|
|
|
|
func (s *ScopedFs) MkdirAll(path string, perm os.FileMode) error {
|
|
if err := s.guard(path); err != nil {
|
|
return err
|
|
}
|
|
return s.base.MkdirAll(path, perm)
|
|
}
|
|
|
|
func (s *ScopedFs) Open(name string) (afero.File, error) {
|
|
if err := s.guard(name); err != nil {
|
|
return nil, err
|
|
}
|
|
return s.base.Open(name)
|
|
}
|
|
|
|
func (s *ScopedFs) OpenFile(name string, flag int, perm os.FileMode) (afero.File, error) {
|
|
if err := s.guard(name); err != nil {
|
|
return nil, err
|
|
}
|
|
return s.base.OpenFile(name, flag, perm)
|
|
}
|
|
|
|
func (s *ScopedFs) Remove(name string) error {
|
|
return s.base.Remove(name)
|
|
}
|
|
|
|
func (s *ScopedFs) RemoveAll(path string) error {
|
|
return s.base.RemoveAll(path)
|
|
}
|
|
|
|
func (s *ScopedFs) Rename(oldname, newname string) error {
|
|
if err := s.guard(oldname); err != nil {
|
|
return err
|
|
}
|
|
if err := s.guard(newname); err != nil {
|
|
return err
|
|
}
|
|
return s.base.Rename(oldname, newname)
|
|
}
|
|
|
|
func (s *ScopedFs) Stat(name string) (os.FileInfo, error) {
|
|
if err := s.guard(name); err != nil {
|
|
return nil, err
|
|
}
|
|
return s.base.Stat(name)
|
|
}
|
|
|
|
func (s *ScopedFs) Name() string { return "ScopedFs" }
|
|
|
|
func (s *ScopedFs) Chmod(name string, mode os.FileMode) error {
|
|
if err := s.guard(name); err != nil {
|
|
return err
|
|
}
|
|
return s.base.Chmod(name, mode)
|
|
}
|
|
|
|
func (s *ScopedFs) Chown(name string, uid, gid int) error {
|
|
if err := s.guard(name); err != nil {
|
|
return err
|
|
}
|
|
return s.base.Chown(name, uid, gid)
|
|
}
|
|
|
|
func (s *ScopedFs) Chtimes(name string, atime, mtime time.Time) error {
|
|
if err := s.guard(name); err != nil {
|
|
return err
|
|
}
|
|
return s.base.Chtimes(name, atime, mtime)
|
|
}
|
|
|
|
func (s *ScopedFs) LstatIfPossible(name string) (os.FileInfo, bool, error) {
|
|
if err := s.guard(name); err != nil {
|
|
return nil, false, err
|
|
}
|
|
return s.base.LstatIfPossible(name)
|
|
}
|