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"

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 GetMountRefsByDev

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

GetMountRefsByDev finds all references to the device provided 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 Exec

type Exec interface {
	// Run executes a command and returns its stdout + stderr combined in one
	// stream.
	Run(cmd string, args ...string) ([]byte, error)
}

Exec executes command where mount utilities are. This can be either the host, container where kubelet runs or even a remote pod with mount utilities. Usual pkg/util/exec interface is not used because kubelet.RunInContainer does not provide stdin/stdout/stderr streams.

func NewOsExec

func NewOsExec() Exec

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 FakeExec

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

Fake for testing.

func NewFakeExec

func NewFakeExec(run runHook) *FakeExec

func (*FakeExec) Run

func (f *FakeExec) Run(cmd string, args ...string) ([]byte, error)

type FakeMounter

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

FakeMounter implements mount.Interface for tests.

func (*FakeMounter) DeviceOpened

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

func (*FakeMounter) ExistsPath

func (f *FakeMounter) ExistsPath(pathname string) bool

func (*FakeMounter) GetDeviceNameFromMount

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

func (*FakeMounter) GetFileType

func (f *FakeMounter) GetFileType(pathname string) (FileType, 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) MakeDir

func (f *FakeMounter) MakeDir(pathname string) error

func (*FakeMounter) MakeFile

func (f *FakeMounter) MakeFile(pathname string) error

func (*FakeMounter) MakeRShared

func (f *FakeMounter) MakeRShared(path string) 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) ResetLog

func (f *FakeMounter) ResetLog()

func (*FakeMounter) Unmount

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

type FileType

type FileType string
const (
	MountsInGlobalPDPath          = "mounts"
	FileTypeDirectory    FileType = "Directory"
	FileTypeFile         FileType = "File"
	FileTypeSocket       FileType = "Socket"
	FileTypeCharDev      FileType = "CharDevice"
	FileTypeBlockDev     FileType = "BlockDevice"
)

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)
	// MakeRShared checks that given path is on a mount with 'rshared' mount
	// propagation. If not, it bind-mounts the path as rshared.
	MakeRShared(path string) error
	// GetFileType checks for file/directory/socket/block/character devices.
	// Will operate in the host mount namespace if kubelet is running in a container
	GetFileType(pathname string) (FileType, error)
	// MakeFile creates an empty file.
	// Will operate in the host mount namespace if kubelet is running in a container
	MakeFile(pathname string) error
	// MakeDir creates a new directory.
	// Will operate in the host mount namespace if kubelet is running in a container
	MakeDir(pathname string) error
	// ExistsPath checks whether the path exists.
	// Will operate in the host mount namespace if kubelet is running in a container
	ExistsPath(pathname string) bool
}

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.

func NewExecMounter

func NewExecMounter(exec Exec, wrapped Interface) Interface

ExecMounter is a mounter that uses provided Exec interface to mount and unmount a filesystem. For all other calls it uses a wrapped mounter.

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) DeviceOpened

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

func (*Mounter) ExistsPath

func (mounter *Mounter) ExistsPath(pathname string) bool

func (*Mounter) GetDeviceNameFromMount

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

func (*Mounter) GetFileType

func (mounter *Mounter) GetFileType(pathname string) (FileType, 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) MakeDir

func (mounter *Mounter) MakeDir(pathname string) error

func (*Mounter) MakeFile

func (mounter *Mounter) MakeFile(pathname string) error

func (*Mounter) MakeRShared

func (mounter *Mounter) MakeRShared(path string) 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) Unmount

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

type NsenterMounter

type NsenterMounter struct{}

func NewNsenterMounter

func NewNsenterMounter() *NsenterMounter

func (*NsenterMounter) DeviceOpened

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

func (*NsenterMounter) ExistsPath

func (*NsenterMounter) ExistsPath(pathname string) bool

func (*NsenterMounter) GetDeviceNameFromMount

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

func (*NsenterMounter) GetFileType

func (*NsenterMounter) GetFileType(_ string) (FileType, 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) MakeDir

func (*NsenterMounter) MakeDir(pathname string) error

func (*NsenterMounter) MakeFile

func (*NsenterMounter) MakeFile(pathname string) error

func (*NsenterMounter) MakeRShared

func (*NsenterMounter) MakeRShared(path string) 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) Unmount

func (*NsenterMounter) Unmount(target string) error

type SafeFormatAndMount

type SafeFormatAndMount struct {
	Interface
	Exec
}

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.

Source Files

doc.go exec.go exec_mount_unsupported.go fake.go mount.go mount_unsupported.go nsenter_mount_unsupported.go

Version
v1.9.4-beta.0
Published
Feb 7, 2018
Platform
js/wasm
Imports
6 packages
Last checked
6 minutes ago

Tools for package owners.