Disk : Reimplement the unlock function.

This commit is contained in:
Dmitry Voronin 2024-09-20 01:35:37 +03:00
parent d60c721697
commit 90f4dbf89a
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -13,19 +13,40 @@
} }
# Unlock encrypted disk file. # Unlock encrypted disk file.
# Usage: unlock <FILE> # Usage: unlock <FILE> <DIR>
function unlock() { function unlock() {
_filter() { if [[ "''${UID}" != 0 ]]; then
sed -e "s/.*\ a[st]\ //" -e "s/\.$//" _error "Must be root."
} return 2
local file="''${1}" fi
local name=$(parse_alnum ''${file} | _filter)
local loop=$(udisksctl loop-setup -f "''${file}" | _filter)
local unlock=$(udisksctl unlock -b "''${loop}" | _filter)
local mount=$(udisksctl mount -b "''${unlock}" | _filter)
[ -L "./''${name}" ] || ln -s "''${mount}" "./''${name}" local file="''${1}"
cd "''${mount}" local dir="''${2}"
if [[ "''${dir}" = "" ]]; then
help unlock
return 2
fi
local name=$(parse_alnum "''${file##*/}")
cryptsetup open "''${file}" "''${name}"
mount "/dev/mapper/''${name}" "''${dir}"
} }
# Unlock encrypted disk file.
# Usage: unlock <FILE>
# function unlock() {
# _filter() {
# sed -e "s/.*\ a[st]\ //" -e "s/\.$//"
# }
# local file="''${1}"
# local name=$(parse_alnum ''${file} | _filter)
# local loop=$(udisksctl loop-setup -f "''${file}" | _filter)
# local unlock=$(udisksctl unlock -b "''${loop}" | _filter)
# local mount=$(udisksctl mount -b "''${unlock}" | _filter)
# [ -L "./''${name}" ] || ln -s "''${mount}" "./''${name}"
# cd "''${mount}"
# }
''; '';
} }