2018-01-09 18:57:14 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 The Kubernetes 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TODO(thockin): This whole pkg is pretty linux-centric. As soon as we have
|
|
|
|
// an alternate platform, we will need to abstract further.
|
2020-01-14 10:38:55 +00:00
|
|
|
|
2018-01-09 18:57:14 +00:00
|
|
|
package mount
|
|
|
|
|
|
|
|
import (
|
2018-07-18 14:47:22 +00:00
|
|
|
"fmt"
|
2018-03-06 22:33:18 +00:00
|
|
|
"os"
|
2018-01-09 18:57:14 +00:00
|
|
|
"path/filepath"
|
2018-03-06 22:33:18 +00:00
|
|
|
"strings"
|
2018-01-09 18:57:14 +00:00
|
|
|
|
2020-01-14 10:38:55 +00:00
|
|
|
utilexec "k8s.io/utils/exec"
|
|
|
|
)
|
2018-01-09 18:57:14 +00:00
|
|
|
|
|
|
|
const (
|
2020-01-14 10:38:55 +00:00
|
|
|
// Default mount command if mounter path is not specified.
|
|
|
|
defaultMountCommand = "mount"
|
2018-01-09 18:57:14 +00:00
|
|
|
)
|
|
|
|
|
2020-01-14 10:38:55 +00:00
|
|
|
// Interface defines the set of methods to allow for mount operations on a system.
|
2018-01-09 18:57:14 +00:00
|
|
|
type Interface interface {
|
|
|
|
// Mount mounts source to target as fstype with given options.
|
|
|
|
Mount(source string, target string, fstype string, options []string) error
|
|
|
|
// Unmount unmounts given target.
|
|
|
|
Unmount(target string) error
|
|
|
|
// List returns a list of all mounted filesystems. This can be large.
|
2020-01-14 10:38:55 +00:00
|
|
|
// On some platforms, reading mounts directly from the OS is not guaranteed
|
|
|
|
// consistent (i.e. it could change between chunked reads). This is guaranteed
|
|
|
|
// to be consistent.
|
2018-01-09 18:57:14 +00:00
|
|
|
List() ([]MountPoint, error)
|
|
|
|
// IsLikelyNotMountPoint uses heuristics to determine if a directory
|
2020-01-14 10:38:55 +00:00
|
|
|
// is not a mountpoint.
|
2018-01-09 18:57:14 +00:00
|
|
|
// It should return ErrNotExist when the directory does not exist.
|
|
|
|
// IsLikelyNotMountPoint does NOT properly detect all mountpoint types
|
2020-01-14 10:38:55 +00:00
|
|
|
// most notably linux bind mounts and symbolic link. For callers that do not
|
|
|
|
// care about such situations, this is a faster alternative to calling List()
|
|
|
|
// and scanning that output.
|
2018-01-09 18:57:14 +00:00
|
|
|
IsLikelyNotMountPoint(file string) (bool, error)
|
2020-01-14 10:38:55 +00:00
|
|
|
// GetMountRefs finds all mount references to pathname, returning a slice of
|
|
|
|
// paths. Pathname can be a mountpoint path or a normal directory
|
|
|
|
// (for bind mount). On Linux, pathname is excluded from the slice.
|
|
|
|
// For example, if /dev/sdc was mounted at /path/a and /path/b,
|
|
|
|
// GetMountRefs("/path/a") would return ["/path/b"]
|
|
|
|
// GetMountRefs("/path/b") would return ["/path/a"]
|
|
|
|
// On Windows there is no way to query all mount points; as long as pathname is
|
|
|
|
// a valid mount, it will be returned.
|
2018-07-18 14:47:22 +00:00
|
|
|
GetMountRefs(pathname string) ([]string, error)
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compile-time check to ensure all Mounter implementations satisfy
|
2020-01-14 10:38:55 +00:00
|
|
|
// the mount interface.
|
2018-01-09 18:57:14 +00:00
|
|
|
var _ Interface = &Mounter{}
|
|
|
|
|
2020-01-14 10:38:55 +00:00
|
|
|
// MountPoint represents a single line in /proc/mounts or /etc/fstab.
|
2018-01-09 18:57:14 +00:00
|
|
|
type MountPoint struct {
|
|
|
|
Device string
|
|
|
|
Path string
|
|
|
|
Type string
|
|
|
|
Opts []string
|
|
|
|
Freq int
|
|
|
|
Pass int
|
|
|
|
}
|
|
|
|
|
2020-01-14 10:38:55 +00:00
|
|
|
type MountErrorType string
|
|
|
|
|
|
|
|
const (
|
|
|
|
FilesystemMismatch MountErrorType = "FilesystemMismatch"
|
|
|
|
HasFilesystemErrors MountErrorType = "HasFilesystemErrors"
|
|
|
|
UnformattedReadOnly MountErrorType = "UnformattedReadOnly"
|
|
|
|
FormatFailed MountErrorType = "FormatFailed"
|
|
|
|
)
|
|
|
|
|
|
|
|
type MountError struct {
|
|
|
|
Type MountErrorType
|
|
|
|
Message string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mountError *MountError) String() string {
|
|
|
|
return mountError.Message
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mountError *MountError) Error() string {
|
|
|
|
return mountError.Message
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewMountError(mountErrorValue MountErrorType, format string, args ...interface{}) error {
|
|
|
|
mountError := &MountError{
|
|
|
|
Type: mountErrorValue,
|
|
|
|
Message: fmt.Sprintf(format, args...),
|
|
|
|
}
|
|
|
|
return mountError
|
|
|
|
}
|
|
|
|
|
2018-01-09 18:57:14 +00:00
|
|
|
// SafeFormatAndMount probes a device to see if it is formatted.
|
|
|
|
// Namely it checks to see if a file system is present. If so it
|
|
|
|
// mounts it otherwise the device is formatted first then mounted.
|
|
|
|
type SafeFormatAndMount struct {
|
|
|
|
Interface
|
2020-01-14 10:38:55 +00:00
|
|
|
Exec utilexec.Interface
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FormatAndMount formats the given disk, if needed, and mounts it.
|
|
|
|
// That is if the disk is not formatted and it is not being mounted as
|
|
|
|
// read-only it will format it first then mount it. Otherwise, if the
|
|
|
|
// disk is already formatted or it is being mounted as read-only, it
|
|
|
|
// will be mounted without formatting.
|
|
|
|
func (mounter *SafeFormatAndMount) FormatAndMount(source string, target string, fstype string, options []string) error {
|
|
|
|
return mounter.formatAndMount(source, target, fstype, options)
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:47:22 +00:00
|
|
|
// getMountRefsByDev finds all references to the device provided
|
2018-01-09 18:57:14 +00:00
|
|
|
// by mountPath; returns a list of paths.
|
2018-07-18 14:47:22 +00:00
|
|
|
// Note that mountPath should be path after the evaluation of any symblolic links.
|
|
|
|
func getMountRefsByDev(mounter Interface, mountPath string) ([]string, error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
mps, err := mounter.List()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-01-14 10:38:55 +00:00
|
|
|
// Finding the device mounted to mountPath.
|
2018-01-09 18:57:14 +00:00
|
|
|
diskDev := ""
|
|
|
|
for i := range mps {
|
2018-07-18 14:47:22 +00:00
|
|
|
if mountPath == mps[i].Path {
|
2018-01-09 18:57:14 +00:00
|
|
|
diskDev = mps[i].Device
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find all references to the device.
|
|
|
|
var refs []string
|
|
|
|
for i := range mps {
|
2018-07-18 14:47:22 +00:00
|
|
|
if mps[i].Device == diskDev || mps[i].Device == mountPath {
|
|
|
|
if mps[i].Path != mountPath {
|
2018-01-09 18:57:14 +00:00
|
|
|
refs = append(refs, mps[i].Path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return refs, nil
|
|
|
|
}
|
|
|
|
|
2020-01-14 10:38:55 +00:00
|
|
|
// GetDeviceNameFromMount given a mnt point, find the device from /proc/mounts
|
|
|
|
// returns the device name, reference count, and error code.
|
2018-01-09 18:57:14 +00:00
|
|
|
func GetDeviceNameFromMount(mounter Interface, mountPath string) (string, int, error) {
|
|
|
|
mps, err := mounter.List()
|
|
|
|
if err != nil {
|
|
|
|
return "", 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the device name.
|
2020-01-14 10:38:55 +00:00
|
|
|
// FIXME if multiple devices mounted on the same mount path, only the first one is returned.
|
2018-01-09 18:57:14 +00:00
|
|
|
device := ""
|
|
|
|
// If mountPath is symlink, need get its target path.
|
|
|
|
slTarget, err := filepath.EvalSymlinks(mountPath)
|
|
|
|
if err != nil {
|
|
|
|
slTarget = mountPath
|
|
|
|
}
|
|
|
|
for i := range mps {
|
|
|
|
if mps[i].Path == slTarget {
|
|
|
|
device = mps[i].Device
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find all references to the device.
|
|
|
|
refCount := 0
|
|
|
|
for i := range mps {
|
|
|
|
if mps[i].Device == device {
|
|
|
|
refCount++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return device, refCount, nil
|
|
|
|
}
|
|
|
|
|
2019-06-24 09:08:09 +00:00
|
|
|
// IsNotMountPoint determines if a directory is a mountpoint.
|
|
|
|
// It should return ErrNotExist when the directory does not exist.
|
|
|
|
// IsNotMountPoint is more expensive than IsLikelyNotMountPoint.
|
|
|
|
// IsNotMountPoint detects bind mounts in linux.
|
|
|
|
// IsNotMountPoint enumerates all the mountpoints using List() and
|
|
|
|
// the list of mountpoints may be large, then it uses
|
2020-01-14 10:38:55 +00:00
|
|
|
// isMountPointMatch to evaluate whether the directory is a mountpoint.
|
2019-06-24 09:08:09 +00:00
|
|
|
func IsNotMountPoint(mounter Interface, file string) (bool, error) {
|
2018-01-09 18:57:14 +00:00
|
|
|
// IsLikelyNotMountPoint provides a quick check
|
2020-01-14 10:38:55 +00:00
|
|
|
// to determine whether file IS A mountpoint.
|
2018-01-09 18:57:14 +00:00
|
|
|
notMnt, notMntErr := mounter.IsLikelyNotMountPoint(file)
|
2018-03-06 22:33:18 +00:00
|
|
|
if notMntErr != nil && os.IsPermission(notMntErr) {
|
|
|
|
// We were not allowed to do the simple stat() check, e.g. on NFS with
|
|
|
|
// root_squash. Fall back to /proc/mounts check below.
|
|
|
|
notMnt = true
|
|
|
|
notMntErr = nil
|
|
|
|
}
|
2018-01-09 18:57:14 +00:00
|
|
|
if notMntErr != nil {
|
|
|
|
return notMnt, notMntErr
|
|
|
|
}
|
2020-01-14 10:38:55 +00:00
|
|
|
// identified as mountpoint, so return this fact.
|
2018-01-09 18:57:14 +00:00
|
|
|
if notMnt == false {
|
|
|
|
return notMnt, nil
|
|
|
|
}
|
2018-11-26 18:23:56 +00:00
|
|
|
|
2020-01-14 10:38:55 +00:00
|
|
|
// Resolve any symlinks in file, kernel would do the same and use the resolved path in /proc/mounts.
|
|
|
|
resolvedFile, err := filepath.EvalSymlinks(file)
|
2018-11-26 18:23:56 +00:00
|
|
|
if err != nil {
|
|
|
|
return true, err
|
|
|
|
}
|
|
|
|
|
2018-01-09 18:57:14 +00:00
|
|
|
// check all mountpoints since IsLikelyNotMountPoint
|
2020-01-14 10:38:55 +00:00
|
|
|
// is not reliable for some mountpoint types.
|
2018-01-09 18:57:14 +00:00
|
|
|
mountPoints, mountPointsErr := mounter.List()
|
|
|
|
if mountPointsErr != nil {
|
|
|
|
return notMnt, mountPointsErr
|
|
|
|
}
|
|
|
|
for _, mp := range mountPoints {
|
2020-01-14 10:38:55 +00:00
|
|
|
if isMountPointMatch(mp, resolvedFile) {
|
2018-01-09 18:57:14 +00:00
|
|
|
notMnt = false
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return notMnt, nil
|
|
|
|
}
|
|
|
|
|
2020-01-14 10:38:55 +00:00
|
|
|
// MakeBindOpts detects whether a bind mount is being requested and makes the remount options to
|
2018-01-09 18:57:14 +00:00
|
|
|
// use in case of bind mount, due to the fact that bind mount doesn't respect mount options.
|
|
|
|
// The list equals:
|
|
|
|
// options - 'bind' + 'remount' (no duplicate)
|
2020-01-14 10:38:55 +00:00
|
|
|
func MakeBindOpts(options []string) (bool, []string, []string) {
|
2018-07-18 14:47:22 +00:00
|
|
|
// Because we have an FD opened on the subpath bind mount, the "bind" option
|
|
|
|
// needs to be included, otherwise the mount target will error as busy if you
|
|
|
|
// remount as readonly.
|
|
|
|
//
|
|
|
|
// As a consequence, all read only bind mounts will no longer change the underlying
|
|
|
|
// volume mount to be read only.
|
|
|
|
bindRemountOpts := []string{"bind", "remount"}
|
2018-01-09 18:57:14 +00:00
|
|
|
bind := false
|
2018-11-26 18:23:56 +00:00
|
|
|
bindOpts := []string{"bind"}
|
2018-01-09 18:57:14 +00:00
|
|
|
|
2018-11-26 18:23:56 +00:00
|
|
|
// _netdev is a userspace mount option and does not automatically get added when
|
|
|
|
// bind mount is created and hence we must carry it over.
|
|
|
|
if checkForNetDev(options) {
|
|
|
|
bindOpts = append(bindOpts, "_netdev")
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, option := range options {
|
|
|
|
switch option {
|
|
|
|
case "bind":
|
|
|
|
bind = true
|
|
|
|
break
|
|
|
|
case "remount":
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
bindRemountOpts = append(bindRemountOpts, option)
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-26 18:23:56 +00:00
|
|
|
return bind, bindOpts, bindRemountOpts
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkForNetDev(options []string) bool {
|
|
|
|
for _, option := range options {
|
|
|
|
if option == "_netdev" {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|
2018-03-06 22:33:18 +00:00
|
|
|
|
2018-11-26 18:23:56 +00:00
|
|
|
// PathWithinBase checks if give path is within given base directory.
|
|
|
|
func PathWithinBase(fullPath, basePath string) bool {
|
2018-07-18 14:47:22 +00:00
|
|
|
rel, err := filepath.Rel(basePath, fullPath)
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
2019-04-03 07:57:13 +00:00
|
|
|
if StartsWithBackstep(rel) {
|
2020-01-14 10:38:55 +00:00
|
|
|
// Needed to escape the base path.
|
2018-07-18 14:47:22 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-01-14 10:38:55 +00:00
|
|
|
// StartsWithBackstep checks if the given path starts with a backstep segment.
|
2019-04-03 07:57:13 +00:00
|
|
|
func StartsWithBackstep(rel string) bool {
|
2018-07-18 14:47:22 +00:00
|
|
|
// normalize to / and check for ../
|
|
|
|
return rel == ".." || strings.HasPrefix(filepath.ToSlash(rel), "../")
|
|
|
|
}
|