Documentation ¶
Overview ¶
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
- func FindMount(mounter Interface, target string) ([]string, error)
- func GetDeviceNameFromMount(mounter Interface, mountPath string) (string, int, error)
- func GetMountRefs(logger *zap.SugaredLogger, mounter Interface, mountPath string) ([]string, error)
- func IsFipsEnabled(mounter Interface) (string, error)
- func IsInTransitEncryptionPackageInstalled(mounter Interface) (bool, error)
- func IsNotMountPoint(mounter Interface, file string) (bool, error)
- func PathExists(path string) (bool, error)
- func UnmountPath(logger *zap.SugaredLogger, mountPath string, mounter Interface) error
- func WaitForDirectoryDeletion(logger *zap.SugaredLogger, mountPath string) error
- type Interface
- type MountPoint
- type Mounter
- func (mounter *Mounter) DeviceOpened(pathname string) (bool, error)
- func (mounter *Mounter) GetDeviceNameFromMount(mountPath, pluginDir string) (string, error)
- func (mounter *Mounter) IsLikelyNotMountPoint(file string) (bool, error)
- func (*Mounter) List() ([]MountPoint, error)
- func (mounter *Mounter) Mount(source string, target string, fstype string, options []string) error
- func (mounter *Mounter) PathIsDevice(pathname string) (bool, error)
- func (mounter *Mounter) Unmount(target string) error
- func (mounter *Mounter) UnmountWithEncrypt(target string) error
- type SafeFormatAndMount
- func (mounter *SafeFormatAndMount) FormatAndMount(source string, target string, fstype string, options []string) error
- func (mounter *SafeFormatAndMount) GetBlockSizeBytes(devicePath string) (int64, error)
- func (mounter *SafeFormatAndMount) Mount(source string, target string, fstype string, options []string) error
- func (mounter *SafeFormatAndMount) Rescan(devicePath string) error
- func (mounter *SafeFormatAndMount) Resize(devicePath string, volumePath string) (bool, error)
Constants ¶
const ( MountsInGlobalPDPath = "mounts" InTransitEncryptionPackageName = "oci-fss-utils" )
const ( FIPS_ENABLED_FILE_PATH = "/host/proc/sys/crypto/fips_enabled" ENCRYPTED_UMOUNT_COMMAND = "umount.oci-fss" UMOUNT_COMMAND = "umount" FINDMNT_COMMAND = "findmnt" CAT_COMMAND = "cat" RPM_COMMAND = "rpm" )
Variables ¶
This section is empty.
Functions ¶
func GetDeviceNameFromMount ¶
GetDeviceNameFromMount finds the device name and reference count of given a mount point from /proc/mounts
func GetMountRefs ¶
GetMountRefs finds all other references to the device referenced by mountPath; returns a list of paths.
func IsFipsEnabled ¶
func IsNotMountPoint ¶
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.
func PathExists ¶
PathExists returns true if the specified path exists.
func UnmountPath ¶
func UnmountPath(logger *zap.SugaredLogger, mountPath string, mounter Interface) error
UnmountPath is a common unmount routine that unmounts the given path and deletes the remaining directory if successful.
func WaitForDirectoryDeletion ¶
func WaitForDirectoryDeletion(logger *zap.SugaredLogger, mountPath string) error
Types ¶
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 // unmount given the target and args. It is used for in-transit encryption where unmount accepts args UnmountWithEncrypt(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) // IsLikelyNotMountPoint determines if a directory is a mountpoint. // It should return ErrNotExist when the directory does not exist. 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) }
type MountPoint ¶
MountPoint represents a single line in /proc/mounts or /etc/fstab.
type Mounter ¶
type Mounter struct {
// contains filtered or unexported fields
}
Mounter provides the default implementation of mount.Interface for the linux platform. This implementation assumes that the kubelet is running in the host's root mount namespace.
func (*Mounter) DeviceOpened ¶
DeviceOpened checks if block device in use by calling Open with O_EXCL flag. If pathname is not a device, log and return false with nil error. If open returns errno EBUSY, return true with nil error. If open returns nil, return false with nil error. Otherwise, return false with error
func (*Mounter) GetDeviceNameFromMount ¶
GetDeviceNameFromMount: given a mount point, find the device name from its global mount point
func (*Mounter) IsLikelyNotMountPoint ¶
IsLikelyNotMountPoint determines if a directory is not a mountpoint. It is fast but not necessarily ALWAYS correct. If the path is in fact a bind mount from one part of a mount to another it will not be detected. mkdir /tmp/a /tmp/b; mount --bin /tmp/a /tmp/b; IsLikelyNotMountPoint("/tmp/b") will return true. When in fact /tmp/b is a mount point. If this situation if of interest to you, don't use this function...
func (*Mounter) List ¶
func (*Mounter) List() ([]MountPoint, error)
List returns a list of all mounted filesystems.
func (*Mounter) Mount ¶
Mount mounts source to target as fstype with given options. 'source' and 'fstype' must be an emtpy string in case it's not required, e.g. for remount, or for auto filesystem type, where kernel handles fs type for you. The mount 'options' is a list of options, currently come from mount(8), e.g. "ro", "remount", "bind", etc. If no more option is required, call Mount with an empty string list or nil.
func (*Mounter) PathIsDevice ¶
PathIsDevice uses FileInfo returned from os.Stat to check if path refers to a device.
func (*Mounter) UnmountWithEncrypt ¶
Unmount unmounts the target.
type SafeFormatAndMount ¶
type SafeFormatAndMount struct { Interface Runner exec.Interface Logger *zap.SugaredLogger }
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.
func (*SafeFormatAndMount) GetBlockSizeBytes ¶
func (mounter *SafeFormatAndMount) GetBlockSizeBytes(devicePath string) (int64, error)
func (*SafeFormatAndMount) Rescan ¶
func (mounter *SafeFormatAndMount) Rescan(devicePath string) error