Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CouldNotOpenFile ¶
func IsFileSystemSupported ¶
IsFileSystemSupported checks if given fs is supported by the running kernel
func SearchMountpointFromHost ¶
SearchMountpointFromHost scans the /proc/self/mountinfo file to find the oldest mountpoint of a specified filesystem type (fstype) that contains a given searchable string (search) in its path. This is useful in environments like containers where multiple mountpoints may exist, and we need to find the one that belongs to the host namespace.
Parameters: - fstype: The filesystem type to search for (e.g., "cgroup2", "ext4"). - search: The substring to search for within the mountpoint path (e.g., "/sys/fs/cgroup").
Returns: - string: The path of the oldest matching mountpoint. - int: The inode number of the matching mountpoint. - error: Any error encountered while reading the /proc/mounts file.
func UnmountedDirNotEmpty ¶
Types ¶
type MountHostOnce ¶
type MountHostOnce struct {
// contains filtered or unexported fields
}
MountHostOnce will make sure a given source and filesystem type are mounted just once: it will check if given source and fs type are already mounted, and given from the host filesystem, and if not, it will mount it (in a temporary directory) and manage it (umounting at its destruction). If already mounted, the filesystem is left untouched at object's destruction.
func NewMountHostOnce ¶
func NewMountHostOnce(source, fstype, data, where string) (*MountHostOnce, error)
func (*MountHostOnce) GetMountpoint ¶
func (m *MountHostOnce) GetMountpoint() string
func (*MountHostOnce) GetMountpointInode ¶
func (m *MountHostOnce) GetMountpointInode() int
func (*MountHostOnce) IsMounted ¶
func (m *MountHostOnce) IsMounted() bool
func (*MountHostOnce) Mount ¶
func (m *MountHostOnce) Mount() error
func (*MountHostOnce) Umount ¶
func (m *MountHostOnce) Umount() error