kubernetesk8s.io/kubernetes/pkg/util/mount Index | Files

package mount

import "k8s.io/kubernetes/pkg/util/mount"

Package mount defines an interface to mounting filesystems.

TODO(thockin): This whole pkg is pretty linux-centric. As soon as we have an alternate platform, we will need to abstract further.

Index

Constants

const FakeActionMount = "mount"

Values for FakeAction.Action

const FakeActionUnmount = "unmount"
const (
	MountsInGlobalPDPath = "mounts"
)

Functions

func GetDeviceNameFromMount

func GetDeviceNameFromMount(mounter Interface, mountPath string) (string, int, error)

GetDeviceNameFromMount: given a mnt point, find the device from /proc/mounts returns the device name, reference count, and error code

func GetMountRefs

func GetMountRefs(mounter Interface, mountPath string) ([]string, error)

GetMountRefs finds all other references to the device referenced by mountPath; returns a list of paths.

func IsNotMountPoint

func IsNotMountPoint(mounter Interface, file string) (bool, error)

IsNotMountPoint determines if a directory is a mountpoint. It should return ErrNotExist when the directory does not exist. This method uses the List() of all mountpoints It is more extensive than IsLikelyNotMountPoint and it detects bind mounts in linux

Types

type FakeAction

type FakeAction struct {
	Action string // "mount" or "unmount"
	Target string // applies to both mount and unmount actions
	Source string // applies only to "mount" actions
	FSType string // applies only to "mount" actions
}

FakeAction objects are logged every time a fake mount or unmount is called.

type FakeMounter

type FakeMounter struct {
	MountPoints []MountPoint
	Log         []FakeAction
	// contains filtered or unexported fields
}

FakeMounter implements mount.Interface for tests.

func (*FakeMounter) CleanSubPaths

func (f *FakeMounter) CleanSubPaths(podDir string, volumeName string) error

func (*FakeMounter) DeviceOpened

func (f *FakeMounter) DeviceOpened(pathname string) (bool, error)

func (*FakeMounter) GetDeviceNameFromMount

func (f *FakeMounter) GetDeviceNameFromMount(mountPath, pluginDir string) (string, error)

func (*FakeMounter) IsLikelyNotMountPoint

func (f *FakeMounter) IsLikelyNotMountPoint(file string) (bool, error)

func (*FakeMounter) IsMountPointMatch

func (f *FakeMounter) IsMountPointMatch(mp MountPoint, dir string) bool

func (*FakeMounter) IsNotMountPoint

func (f *FakeMounter) IsNotMountPoint(dir string) (bool, error)

func (*FakeMounter) List

func (f *FakeMounter) List() ([]MountPoint, error)

func (*FakeMounter) Mount

func (f *FakeMounter) Mount(source string, target string, fstype string, options []string) error

func (*FakeMounter) PathIsDevice

func (f *FakeMounter) PathIsDevice(pathname string) (bool, error)

func (*FakeMounter) PrepareSafeSubpath

func (f *FakeMounter) PrepareSafeSubpath(subPath Subpath) (newHostPath string, cleanupAction func(), err error)

func (*FakeMounter) ResetLog

func (f *FakeMounter) ResetLog()

func (*FakeMounter) SafeMakeDir

func (mounter *FakeMounter) SafeMakeDir(pathname string, base string, perm os.FileMode) error

func (*FakeMounter) Unmount

func (f *FakeMounter) Unmount(target string) error

type Interface

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.
	// On some platforms, reading mounts is not guaranteed consistent (i.e.
	// it could change between chunked reads). This is guaranteed to be
	// consistent.
	List() ([]MountPoint, error)
	// IsMountPointMatch determines if the mountpoint matches the dir
	IsMountPointMatch(mp MountPoint, dir string) bool
	// 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
	// IsMountPointMatch to evaluate whether the directory is a mountpoint
	IsNotMountPoint(file string) (bool, error)
	// IsLikelyNotMountPoint uses heuristics to determine if a directory
	// is a mountpoint.
	// It should return ErrNotExist when the directory does not exist.
	// IsLikelyNotMountPoint does NOT properly detect all mountpoint types
	// most notably linux bind mounts.
	IsLikelyNotMountPoint(file string) (bool, error)
	// DeviceOpened determines if the device is in use elsewhere
	// on the system, i.e. still mounted.
	DeviceOpened(pathname string) (bool, error)
	// PathIsDevice determines if a path is a device.
	PathIsDevice(pathname string) (bool, error)
	// GetDeviceNameFromMount finds the device name by checking the mount path
	// to get the global mount path which matches its plugin directory
	GetDeviceNameFromMount(mountPath, pluginDir string) (string, error)
	// SafeMakeDir makes sure that the created directory does not escape given
	// base directory mis-using symlinks. The directory is created in the same
	// mount namespace as where kubelet is running. Note that the function makes
	// sure that it creates the directory somewhere under the base, nothing
	// else. E.g. if the directory already exists, it may exists outside of the
	// base due to symlinks.
	SafeMakeDir(pathname string, base string, perm os.FileMode) error
	// CleanSubPaths removes any bind-mounts created by PrepareSafeSubpath in given
	// pod volume directory.
	CleanSubPaths(podDir string, volumeName string) error
	// PrepareSafeSubpath does everything that's necessary to prepare a subPath
	// that's 1) inside given volumePath and 2) immutable after this call.
	//
	// newHostPath - location of prepared subPath. It should be used instead of
	// hostName when running the container.
	// cleanupAction - action to run when the container is running or it failed to start.
	//
	// CleanupAction must be called immediately after the container with given
	// subpath starts. On the other hand, Interface.CleanSubPaths must be called
	// when the pod finishes.
	PrepareSafeSubpath(subPath Subpath) (newHostPath string, cleanupAction func(), err error)
}

func New

func New(mounterPath string) Interface

New returns a mount.Interface for the current system. It provides options to override the default mounter behavior. mounterPath allows using an alternative to `/bin/mount` for mounting.

type MountPoint

type MountPoint struct {
	Device string
	Path   string
	Type   string
	Opts   []string
	Freq   int
	Pass   int
}

This represents a single line in /proc/mounts or /etc/fstab.

type Mounter

type Mounter struct {
	// contains filtered or unexported fields
}

func (*Mounter) CleanSubPaths

func (mounter *Mounter) CleanSubPaths(podDir string, volumeName string) error

func (*Mounter) DeviceOpened

func (mounter *Mounter) DeviceOpened(pathname string) (bool, error)

func (*Mounter) GetDeviceNameFromMount

func (mounter *Mounter) GetDeviceNameFromMount(mountPath, pluginDir string) (string, error)

func (*Mounter) IsLikelyNotMountPoint

func (mounter *Mounter) IsLikelyNotMountPoint(file string) (bool, error)

func (*Mounter) IsMountPointMatch

func (mounter *Mounter) IsMountPointMatch(mp MountPoint, dir string) bool

func (*Mounter) IsNotMountPoint

func (mounter *Mounter) IsNotMountPoint(dir string) (bool, error)

func (*Mounter) List

func (mounter *Mounter) List() ([]MountPoint, error)

func (*Mounter) Mount

func (mounter *Mounter) Mount(source string, target string, fstype string, options []string) error

func (*Mounter) PathIsDevice

func (mounter *Mounter) PathIsDevice(pathname string) (bool, error)

func (*Mounter) PrepareSafeSubpath

func (mounter *Mounter) PrepareSafeSubpath(subPath Subpath) (newHostPath string, cleanupAction func(), err error)

func (*Mounter) SafeMakeDir

func (mounter *Mounter) SafeMakeDir(pathname string, base string, perm os.FileMode) error

func (*Mounter) Unmount

func (mounter *Mounter) Unmount(target string) error

type NsenterMounter

type NsenterMounter struct{}

func NewNsenterMounter

func NewNsenterMounter() *NsenterMounter

func (*NsenterMounter) CleanSubPaths

func (*NsenterMounter) CleanSubPaths(podDir string, volumeName string) error

func (*NsenterMounter) DeviceOpened

func (*NsenterMounter) DeviceOpened(pathname string) (bool, error)

func (*NsenterMounter) GetDeviceNameFromMount

func (*NsenterMounter) GetDeviceNameFromMount(mountPath, pluginDir string) (string, error)

func (*NsenterMounter) IsLikelyNotMountPoint

func (*NsenterMounter) IsLikelyNotMountPoint(file string) (bool, error)

func (*NsenterMounter) IsMountPointMatch

func (*NsenterMounter) IsMountPointMatch(mp MountPoint, dir string) bool

func (*NsenterMounter) IsNotMountPoint

func (m *NsenterMounter) IsNotMountPoint(dir string) (bool, error)

func (*NsenterMounter) List

func (*NsenterMounter) List() ([]MountPoint, error)

func (*NsenterMounter) Mount

func (*NsenterMounter) Mount(source string, target string, fstype string, options []string) error

func (*NsenterMounter) PathIsDevice

func (*NsenterMounter) PathIsDevice(pathname string) (bool, error)

func (*NsenterMounter) PrepareSafeSubpath

func (*NsenterMounter) PrepareSafeSubpath(subPath Subpath) (newHostPath string, cleanupAction func(), err error)

func (*NsenterMounter) SafeMakeDir

func (*NsenterMounter) SafeMakeDir(pathname string, base string, perm os.FileMode) error

func (*NsenterMounter) Unmount

func (*NsenterMounter) Unmount(target string) error

type SafeFormatAndMount

type SafeFormatAndMount struct {
	Interface
	Runner exec.Interface
}

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.

func (*SafeFormatAndMount) FormatAndMount

func (mounter *SafeFormatAndMount) FormatAndMount(source string, target string, fstype string, options []string) error

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.

type Subpath

type Subpath struct {
	// index of the VolumeMount for this container
	VolumeMountIndex int
	// Full path to the subpath directory on the host
	Path string
	// name of the volume that is a valid directory name.
	VolumeName string
	// Full path to the volume path
	VolumePath string
	// Path to the pod's directory, including pod UID
	PodDir string
	// Name of the container
	ContainerName string
}

Source Files

doc.go fake.go mount.go mount_unsupported.go nsenter_mount_unsupported.go

Version
v1.7.16-beta.0
Published
Mar 19, 2018
Platform
js/wasm
Imports
9 packages
Last checked
1 minute ago

Tools for package owners.