-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kustomize: introduce secure FS implementation
This implementation functions as a drop-in replacement for Kustomize's own `fsOnDisk`, and ensures any path it handles to be inside root. In essence, the whole file system is now restricted like loader.RestrictionRootOnly would, but while allowing root to differ from the top Kustomization directory. The main reason to put the constraint in the file system implementation is because the current Krusty API does not allow to configure a custom load restrictor, but does allow injecting a custom FS. Signed-off-by: Hidde Beydals <hello@hidde.co>
- Loading branch information
Showing
2 changed files
with
780 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,229 @@ | ||
/* | ||
Copyright 2022 The Flux authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package filesys | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"path/filepath" | ||
|
||
"sigs.k8s.io/kustomize/kyaml/filesys" | ||
) | ||
|
||
// MakeFsOnDiskSecure returns a secure file system which ensures any paths it | ||
// handles to be inside root. | ||
func MakeFsOnDiskSecure(root string) (filesys.FileSystem, error) { | ||
unsafeFS := filesys.MakeFsOnDisk() | ||
cleanedAbs, _, err := unsafeFS.CleanedAbs(root) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return fsSecure{root: cleanedAbs, unsafeFS: unsafeFS}, nil | ||
} | ||
|
||
// fsSecure wraps an unsafe FileSystem implementation, and secures it | ||
// by confirming paths are inside root. | ||
type fsSecure struct { | ||
root filesys.ConfirmedDir | ||
unsafeFS filesys.FileSystem | ||
} | ||
|
||
// ConstraintError records an error and the operation and file that | ||
// violated it. | ||
type ConstraintError struct { | ||
Op string | ||
Path string | ||
Err error | ||
} | ||
|
||
func (e *ConstraintError) Error() string { | ||
return "fs-security-constraint " + e.Op + " " + e.Path + ": " + e.Err.Error() | ||
} | ||
|
||
func (e *ConstraintError) Unwrap() error { return e.Err } | ||
|
||
// Create delegates to the embedded unsafe FS after having confirmed the path | ||
// to be inside root. If the provided path violates this constraint, an error | ||
// of type ConstraintError is returned. | ||
func (fs fsSecure) Create(path string) (filesys.File, error) { | ||
if err := isSecurePath(fs.unsafeFS, fs.root, path); err != nil { | ||
return nil, &ConstraintError{Op: "create", Path: path, Err: err} | ||
} | ||
return fs.unsafeFS.Create(path) | ||
} | ||
|
||
// Mkdir delegates to the embedded unsafe FS after having confirmed the path | ||
// to be inside root. If the provided path violates this constraint, an error | ||
// of type ConstraintError is returned. | ||
func (fs fsSecure) Mkdir(path string) error { | ||
if err := isSecurePath(fs.unsafeFS, fs.root, path); err != nil { | ||
return &ConstraintError{Op: "mkdir", Path: path, Err: err} | ||
} | ||
return fs.unsafeFS.Mkdir(path) | ||
} | ||
|
||
// MkdirAll delegates to the embedded unsafe FS after having confirmed the path | ||
// to be inside root. If the provided path violates this constraint, an error | ||
// type ConstraintError is returned. | ||
func (fs fsSecure) MkdirAll(path string) error { | ||
if err := isSecurePath(fs.unsafeFS, fs.root, path); err != nil { | ||
return &ConstraintError{Op: "mkdir", Path: path, Err: err} | ||
} | ||
return fs.unsafeFS.MkdirAll(path) | ||
} | ||
|
||
// RemoveAll delegates to the embedded unsafe FS after having confirmed the | ||
// path to be inside root. If the provided path violates this constraint, an | ||
// error of type ConstraintError is returned. | ||
func (fs fsSecure) RemoveAll(path string) error { | ||
if err := isSecurePath(fs.unsafeFS, fs.root, path); err != nil { | ||
return &ConstraintError{Op: "remove", Path: path, Err: err} | ||
} | ||
return fs.unsafeFS.RemoveAll(path) | ||
} | ||
|
||
// Open delegates to the embedded unsafe FS after having confirmed the path | ||
// to be inside root. If the provided path violates this constraint, an error | ||
// of type ConstraintError is returned. | ||
func (fs fsSecure) Open(path string) (filesys.File, error) { | ||
if err := isSecurePath(fs.unsafeFS, fs.root, path); err != nil { | ||
return nil, &ConstraintError{Op: "open", Path: path, Err: err} | ||
} | ||
return fs.unsafeFS.Open(path) | ||
} | ||
|
||
// IsDir delegates to the embedded unsafe FS after having confirmed the path | ||
// to be inside root. If the provided path violates this constraint, it returns | ||
// false. | ||
func (fs fsSecure) IsDir(path string) bool { | ||
if err := isSecurePath(fs.unsafeFS, fs.root, path); err != nil { | ||
return false | ||
} | ||
return fs.unsafeFS.IsDir(path) | ||
} | ||
|
||
// ReadDir delegates to the embedded unsafe FS after having confirmed the path | ||
// to be inside root. If the provided path violates this constraint, an error | ||
// of type ConstraintError is returned. | ||
func (fs fsSecure) ReadDir(path string) ([]string, error) { | ||
if err := isSecurePath(fs.unsafeFS, fs.root, path); err != nil { | ||
return nil, &ConstraintError{Op: "open", Path: path, Err: err} | ||
} | ||
return fs.unsafeFS.ReadDir(path) | ||
} | ||
|
||
// CleanedAbs delegates to the embedded unsafe FS, but confirms the returned | ||
// result to be within root. If the results violates this constraint, an error | ||
// of type ConstraintError is returned. | ||
// In essence, it functions the same as Kustomize's loader.RestrictionRootOnly, | ||
// but on FS levels, and while allowing file paths. | ||
func (fs fsSecure) CleanedAbs(path string) (filesys.ConfirmedDir, string, error) { | ||
d, f, err := fs.unsafeFS.CleanedAbs(path) | ||
if err != nil { | ||
return d, f, err | ||
} | ||
if !d.HasPrefix(fs.root) { | ||
err := fmt.Errorf("file '%s' is not in or below '%s'", path, fs.root) | ||
return "", "", &ConstraintError{Op: "abs", Path: path, Err: err} | ||
} | ||
return d, f, err | ||
} | ||
|
||
// Exists delegates to the embedded unsafe FS after having confirmed the path | ||
// to be inside root. If the provided path violates this constraint, it returns | ||
// false. | ||
func (fs fsSecure) Exists(path string) bool { | ||
if err := isSecurePath(fs.unsafeFS, fs.root, path); err != nil { | ||
return false | ||
} | ||
return fs.unsafeFS.Exists(path) | ||
} | ||
|
||
// Glob delegates to the embedded unsafe FS, but filters the returned paths to | ||
// only include items inside root. | ||
func (fs fsSecure) Glob(pattern string) ([]string, error) { | ||
paths, err := fs.unsafeFS.Glob(pattern) | ||
if err != nil { | ||
return nil, err | ||
} | ||
var securePaths []string | ||
for _, p := range paths { | ||
if err := isSecurePath(fs.unsafeFS, fs.root, p); err == nil { | ||
securePaths = append(securePaths, p) | ||
} | ||
} | ||
return securePaths, err | ||
} | ||
|
||
// ReadFile delegates to the embedded unsafe FS after having confirmed the path | ||
// to be inside root. If the provided path violates this constraint, an error | ||
// of type ConstraintError is returned. | ||
func (fs fsSecure) ReadFile(path string) ([]byte, error) { | ||
if err := isSecurePath(fs.unsafeFS, fs.root, path); err != nil { | ||
return nil, &ConstraintError{Op: "read", Path: path, Err: err} | ||
} | ||
return fs.unsafeFS.ReadFile(path) | ||
} | ||
|
||
// WriteFile delegates to the embedded unsafe FS after having confirmed the | ||
// path to be inside root. If the provided path violates this constraint, an | ||
// error of type ConstraintError is returned. | ||
func (fs fsSecure) WriteFile(path string, data []byte) error { | ||
if err := isSecurePath(fs.unsafeFS, fs.root, path); err != nil { | ||
return &ConstraintError{Op: "write", Path: path, Err: err} | ||
} | ||
return fs.unsafeFS.WriteFile(path, data) | ||
} | ||
|
||
// Walk delegates to the embedded unsafe FS, wrapping falkFn in a callback which | ||
// confirms the path to be inside root. If the path violates this constraint, | ||
// an error of type ConstraintError is returned and walkFn is not called. | ||
func (fs fsSecure) Walk(path string, walkFn filepath.WalkFunc) error { | ||
wrapWalkFn := func(path string, info os.FileInfo, err error) error { | ||
if err := isSecurePath(fs.unsafeFS, fs.root, path); err != nil { | ||
return &ConstraintError{Op: "walk", Path: path, Err: err} | ||
} | ||
return walkFn(path, info, err) | ||
} | ||
return fs.unsafeFS.Walk(path, wrapWalkFn) | ||
} | ||
|
||
// isSecurePath confirms the given path is inside root using the provided file | ||
// system. At present, it assumes the file system implementation to be on disk | ||
// and makes use of filepath.EvalSymlinks. | ||
func isSecurePath(fs filesys.FileSystem, root filesys.ConfirmedDir, path string) error { | ||
absRoot, err := filepath.Abs(path) | ||
if err != nil { | ||
return fmt.Errorf("abs path error on '%s': %v", path, err) | ||
} | ||
d := filesys.ConfirmedDir(filepath.Dir(absRoot)) | ||
if fs.Exists(absRoot) { | ||
evaluated, err := filepath.EvalSymlinks(absRoot) | ||
if err != nil { | ||
return fmt.Errorf("evalsymlink failure on '%s': %w", path, err) | ||
} | ||
evaluatedDir := evaluated | ||
if !fs.IsDir(evaluatedDir) { | ||
evaluatedDir = filepath.Dir(evaluatedDir) | ||
} | ||
d = filesys.ConfirmedDir(evaluatedDir) | ||
} | ||
if !d.HasPrefix(root) { | ||
return fmt.Errorf("'%s' is not in or below '%s'", path, root) | ||
} | ||
return nil | ||
} |
Oops, something went wrong.