pmbootstrap/pmb/helpers/mount.py

109 lines
3.4 KiB
Python
Raw Normal View History

2023-01-22 18:11:10 +00:00
# Copyright 2023 Oliver Smith
# SPDX-License-Identifier: GPL-3.0-or-later
2017-05-26 20:08:45 +00:00
import os
import pmb.helpers.run
def ismount(folder):
"""
Ismount() implementation that works for mount --bind.
2017-05-26 20:08:45 +00:00
Workaround for: https://bugs.python.org/issue29707
"""
folder = os.path.realpath(os.path.realpath(folder))
2017-05-26 20:08:45 +00:00
with open("/proc/mounts", "r") as handle:
for line in handle:
words = line.split()
if len(words) >= 2 and words[1] == folder:
return True
if words[0] == folder:
return True
2017-05-26 20:08:45 +00:00
return False
def bind(args, source, destination, create_folders=True, umount=False):
2017-05-26 20:08:45 +00:00
"""
Mount --bind a folder and create necessary directory structure.
:param umount: when destination is already a mount point, umount it first.
2017-05-26 20:08:45 +00:00
"""
# Check/umount destination
2017-05-26 20:08:45 +00:00
if ismount(destination):
if umount:
umount_all(args, destination)
else:
return
2017-05-26 20:08:45 +00:00
# Check/create folders
for path in [source, destination]:
if os.path.exists(path):
continue
if create_folders:
pmb.helpers.run.root(args, ["mkdir", "-p", path])
else:
raise RuntimeError("Mount failed, folder does not exist: " +
path)
# Actually mount the folder
pmb.helpers.run.root(args, ["mount", "--bind", source, destination])
# Verify that it has worked
2017-05-26 20:08:45 +00:00
if not ismount(destination):
raise RuntimeError("Mount failed: " + source + " -> " + destination)
def bind_file(args, source, destination, create_folders=False):
"""
Mount a file with the --bind option, and create the destination file,
if necessary.
"""
2017-05-26 20:08:45 +00:00
# Skip existing mountpoint
if ismount(destination):
return
# Create empty file
if not os.path.exists(destination):
if create_folders:
dir = os.path.dirname(destination)
if not os.path.isdir(dir):
pmb.helpers.run.root(args, ["mkdir", "-p", dir])
2017-05-26 20:08:45 +00:00
pmb.helpers.run.root(args, ["touch", destination])
# Mount
pmb.helpers.run.root(args, ["mount", "--bind", source,
destination])
def umount_all_list(prefix, source="/proc/mounts"):
2017-05-26 20:08:45 +00:00
"""
Parses `/proc/mounts` for all folders beginning with a prefix.
:source: can be changed for testcases
:returns: a list of folders that need to be umounted
2017-05-26 20:08:45 +00:00
"""
ret = []
prefix = os.path.realpath(prefix)
with open(source, "r") as handle:
2017-05-26 20:08:45 +00:00
for line in handle:
words = line.split()
if len(words) < 2:
raise RuntimeError("Failed to parse line in " + source + ": " +
line)
mountpoint = words[1]
if mountpoint.startswith(prefix):
# Remove "\040(deleted)" suffix (#545)
deleted_str = r"\040(deleted)"
if mountpoint.endswith(deleted_str):
mountpoint = mountpoint[:-len(deleted_str)]
ret.append(mountpoint)
ret.sort(reverse=True)
return ret
def umount_all(args, folder):
"""
Umount all folders that are mounted inside a given folder.
"""
for mountpoint in umount_all_list(folder):
pmb.helpers.run.root(args, ["umount", mountpoint])
if ismount(mountpoint):
raise RuntimeError("Failed to umount: " + mountpoint)