2015-11-30 18:20:22 +01:00
|
|
|
#!/bin/bash -e
|
|
|
|
# vim: set ts=4 sw=4 sts=4 et :
|
|
|
|
#
|
|
|
|
# bind-dirs
|
|
|
|
# Binds directories which allows changes in TemplateBasedVM to persist.
|
|
|
|
#
|
|
|
|
# To umount all bind-dirs, just pass any arg in $1, like umount
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014 - 2015 Jason Mehring <nrgaway@gmail.com>
|
|
|
|
# Copyright (C) 2014 - 2015 Patrick Schleizer <adrelanos@riseup.net>
|
|
|
|
# License: GPL-2+
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
prerequisite() {
|
|
|
|
qubes_vm_persistence="$(qubesdb-read /qubes-vm-persistence)"
|
|
|
|
if [ ! "$qubes_vm_persistence" = "rw-only" ]; then
|
|
|
|
true "No TemplateBasedVM detected. Exiting."
|
|
|
|
exit 0
|
|
|
|
fi
|
2016-01-07 00:08:33 +01:00
|
|
|
if [ -f "/var/run/qubes-service/qubes-dvm" ]; then
|
|
|
|
# https://github.com/QubesOS/qubes-issues/issues/1328#issuecomment-169483029
|
|
|
|
# Do none of the following in a DispVM.
|
|
|
|
# During DispVM savefile generation, 'qubesdb-read /qubes-vm-persistence'
|
|
|
|
# outputs 'rw'.
|
|
|
|
exit 0
|
|
|
|
fi
|
2015-11-30 18:20:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
init() {
|
|
|
|
[ -n "$rw_dest_dir" ] || rw_dest_dir="/rw/bind-dirs"
|
2015-12-18 01:15:51 +01:00
|
|
|
[ -n "$symlink_level_max" ] || symlink_level_max="10"
|
2015-11-30 18:20:22 +01:00
|
|
|
mkdir --parents "$rw_dest_dir"
|
2016-04-29 23:44:18 +02:00
|
|
|
shopt -s nullglob
|
|
|
|
shopt -s dotglob
|
2015-11-30 18:20:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
legacy() {
|
2016-07-24 02:09:11 +02:00
|
|
|
true
|
2015-11-30 18:20:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bind_dirs() {
|
2015-12-18 00:11:27 +01:00
|
|
|
## legend
|
2015-11-30 18:20:22 +01:00
|
|
|
## fso: file system object
|
|
|
|
## ro: read-only
|
|
|
|
## rw: read-write
|
2015-12-18 00:11:27 +01:00
|
|
|
|
2015-11-30 18:20:22 +01:00
|
|
|
for fso_ro in ${binds[@]}; do
|
2015-12-18 01:15:51 +01:00
|
|
|
local symlink_level_counter
|
|
|
|
symlink_level_counter="0"
|
|
|
|
|
|
|
|
while true; do
|
|
|
|
if [ -h "$fso_ro" ]; then
|
2016-01-06 21:46:38 +01:00
|
|
|
## Resolving where there symlink points to, and using the result
|
|
|
|
## for bind mount instead.
|
2015-12-18 01:15:51 +01:00
|
|
|
symlink_level_counter="$(( symlink_level_counter + 1 ))"
|
|
|
|
true "$fso_ro is a symlink"
|
|
|
|
fso_real_location="$(realpath "$fso_ro")"
|
|
|
|
fso_ro="$fso_real_location"
|
|
|
|
else
|
|
|
|
true "$fso_ro is not a symlink"
|
|
|
|
break
|
|
|
|
fi
|
2016-01-06 21:46:38 +01:00
|
|
|
if [ "$symlink_level_counter" -ge "$symlink_level_max" ]; then
|
2015-12-18 01:15:51 +01:00
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
true "fso_ro: $fso_ro"
|
2015-11-30 18:20:22 +01:00
|
|
|
fso_rw="${rw_dest_dir}${fso_ro}"
|
|
|
|
|
2015-12-18 00:11:27 +01:00
|
|
|
# Make sure fso_ro is not mounted.
|
2015-11-30 18:20:22 +01:00
|
|
|
umount "$fso_ro" 2> /dev/null || true
|
|
|
|
|
|
|
|
if [ -n "$1" ]; then
|
2015-12-18 00:11:27 +01:00
|
|
|
true "Umounting $1 only..."
|
2015-11-30 18:20:22 +01:00
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
2015-12-18 00:11:27 +01:00
|
|
|
# Initially copy over data directories to /rw if rw directory does not exist.
|
2016-01-08 01:36:26 +01:00
|
|
|
if [ -d "$fso_ro" ] || [ -f "$fso_ro" ]; then
|
|
|
|
cp --verbose --no-clobber --archive --recursive --parents "$fso_ro" "$rw_dest_dir"
|
2015-12-18 00:11:27 +01:00
|
|
|
else
|
2015-12-18 01:15:51 +01:00
|
|
|
true "$fso_ro is neither a directory nor a file or does not exist, skipping."
|
2015-12-18 00:11:27 +01:00
|
|
|
continue
|
2015-11-30 18:20:22 +01:00
|
|
|
fi
|
|
|
|
|
2015-12-18 00:11:27 +01:00
|
|
|
# Bind the fso.
|
2015-11-30 18:20:22 +01:00
|
|
|
mount --bind "$fso_rw" "$fso_ro"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
main() {
|
2015-12-18 01:15:51 +01:00
|
|
|
prerequisite "$@"
|
|
|
|
init "$@"
|
|
|
|
legacy "$@"
|
|
|
|
bind_dirs "$@"
|
2015-11-30 18:20:22 +01:00
|
|
|
}
|
|
|
|
|
2015-12-18 00:11:27 +01:00
|
|
|
for source_folder in /usr/lib/qubes-bind-dirs.d /etc/qubes-bind-dirs.d /rw/config/qubes-bind-dirs.d ; do
|
|
|
|
true "source_folder: $source_folder"
|
|
|
|
if [ ! -d "$source_folder" ]; then
|
2015-11-30 18:20:22 +01:00
|
|
|
continue
|
|
|
|
fi
|
2015-12-18 00:11:27 +01:00
|
|
|
for file_name in "$source_folder/"*".conf" ; do
|
2015-11-30 18:20:22 +01:00
|
|
|
bash -n "$file_name"
|
|
|
|
source "$file_name"
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
2015-12-18 01:15:51 +01:00
|
|
|
main "$@"
|
2016-05-03 15:16:59 +02:00
|
|
|
|
|
|
|
true "OK: END."
|