zfs-import: Perform verbatim import using cache file

This change modifies the import service to use the default cache file
to perform a verbatim import of pools at boot.  This fixes code that
searches all devices and imported all visible pools.

Using the cache file is in keeping with the way ZFS has always worked,
how Solaris, Illumos, FreeBSD, and systemd performs imports, and is how
it is written in the man page (zpool(1M,8)):

    All pools  in  this  cache  are  automatically imported when the
    system boots.

Importantly, the cache contains important information for importing
multipath devices, and helps control which pools get imported in more
dynamic environments like SANs, which may have thousands of visible
and constantly changing pools, which the ZFS_POOL_EXCEPTIONS variable
is not equipped to handle.  Verbatim imports prevent rogue pools from
being automatically imported and mounted where they shouldn't be.

The change also stops the service from exporting pools at shutdown.
Exporting pools is only meant to be performed explicitly by the
administrator of the system.

The old behavior of searching and importing all visible pools is
preserved and can be switched on by heeding the warning and toggling
the ZPOOL_IMPORT_ALL_VISIBLE variable in /etc/default/zfs.

Signed-off-by: James Lee <jlee@thestaticvoid.com>
Signed-off-by: Richard Yao <ryao@gentoo.org>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #3777
Closes #3526
This commit is contained in:
James Lee 2015-09-19 22:00:36 -04:00 committed by Brian Behlendorf
parent 2986b3fd25
commit 33df62d052
2 changed files with 57 additions and 64 deletions

View File

@ -1,11 +1,10 @@
#!@SHELL@ #!@SHELL@
# #
# zfs-import This script will import/export zfs pools. # zfs-import This script will import ZFS pools
# #
# chkconfig: 2345 01 99 # chkconfig: 2345 01 99
# description: This script will import/export zfs pools during system # description: This script will perform a verbatim import of ZFS pools
# boot/shutdown. # during system boot.
# It is also responsible for all userspace zfs services.
# probe: true # probe: true
# #
### BEGIN INIT INFO ### BEGIN INIT INFO
@ -17,7 +16,7 @@
# X-Start-Before: checkfs # X-Start-Before: checkfs
# X-Stop-After: zfs-mount # X-Stop-After: zfs-mount
# Short-Description: Import ZFS pools # Short-Description: Import ZFS pools
# Description: Run the `zpool import` or `zpool export` commands. # Description: Run the `zpool import` command.
### END INIT INFO ### END INIT INFO
# #
# NOTE: Not having '$local_fs' on Required-Start but only on Required-Stop # NOTE: Not having '$local_fs' on Required-Start but only on Required-Stop
@ -43,6 +42,16 @@ do_depend()
keyword -lxc -openvz -prefix -vserver keyword -lxc -openvz -prefix -vserver
} }
# Use the zpool cache file to import pools
do_verbatim_import()
{
if [ -f "$ZPOOL_CACHE" ]
then
zfs_action "Importing ZFS pool(s)" \
"$ZPOOL" import -c "$ZPOOL_CACHE" -N -a
fi
}
# Support function to get a list of all pools, separated with ';' # Support function to get a list of all pools, separated with ';'
find_pools() find_pools()
{ {
@ -60,8 +69,8 @@ find_pools()
echo "${pools%%;}" # Return without the last ';'. echo "${pools%%;}" # Return without the last ';'.
} }
# Import all pools # Find and import all visible pools, even exported ones
do_import() do_import_all_visible()
{ {
local already_imported available_pools pool npools local already_imported available_pools pool npools
local exception dir ZPOOL_IMPORT_PATH RET=0 r=1 local exception dir ZPOOL_IMPORT_PATH RET=0 r=1
@ -249,41 +258,15 @@ do_import()
return "$RET" return "$RET"
} }
# Export all pools do_import()
do_export()
{ {
local already_imported pool root_pool RET r if check_boolean "$ZPOOL_IMPORT_ALL_VISIBLE"
RET=0
root_pool=$(get_root_pool)
[ -n "$init" ] && zfs_log_begin_msg "Exporting ZFS pool(s)"
# Find list of already imported pools.
already_imported=$(find_pools "$ZPOOL" list -H -oname)
OLD_IFS="$IFS" ; IFS=";"
for pool in $already_imported; do
[ "$pool" = "$root_pool" ] && continue
if [ -z "$init" ]
then then
# Interactive - one 'Importing ...' line per pool do_import_all_visible
zfs_log_begin_msg "Exporting ZFS pool $pool"
else else
# Not interactive - a dot for each pool. # This is the default option
zfs_log_progress_msg "." do_verbatim_import
fi fi
"$ZPOOL" export "$pool"
r="$?" ; RET=$((RET + r))
[ -z "$init" ] && zfs_log_end_msg "$r"
done
IFS="$OLD_IFS"
[ -n "$init" ] && zfs_log_end_msg "$RET"
return "$RET"
} }
# Output the status and list of pools # Output the status and list of pools
@ -323,14 +306,6 @@ do_start()
fi fi
} }
do_stop()
{
# Check to see if the module is even loaded.
check_module_loaded "zfs" || exit 0
do_export
}
# ---------------------------------------------------- # ----------------------------------------------------
if [ ! -e /etc/gentoo-release ] if [ ! -e /etc/gentoo-release ]
@ -340,7 +315,7 @@ then
do_start do_start
;; ;;
stop) stop)
do_stop # no-op
;; ;;
status) status)
do_status do_status
@ -350,7 +325,7 @@ then
;; ;;
*) *)
[ -n "$1" ] && echo "Error: Unknown command $1." [ -n "$1" ] && echo "Error: Unknown command $1."
echo "Usage: $0 {start|stop|status}" echo "Usage: $0 {start|status}"
exit 3 exit 3
;; ;;
esac esac
@ -360,6 +335,5 @@ else
# Create wrapper functions since Gentoo don't use the case part. # Create wrapper functions since Gentoo don't use the case part.
depend() { do_depend; } depend() { do_depend; }
start() { do_start; } start() { do_start; }
stop() { do_stop; }
status() { do_status; } status() { do_status; }
fi fi

View File

@ -16,6 +16,24 @@ ZFS_SHARE='yes'
# Run `zfs unshare -a` during system stop? # Run `zfs unshare -a` during system stop?
ZFS_UNSHARE='yes' ZFS_UNSHARE='yes'
# By default, a verbatim import of all pools is performed at boot based on the
# contents of the default zpool cache file. The contents of the cache are
# managed automatically by the 'zpool import' and 'zpool export' commands.
#
# By setting this to 'yes', the system will instead search all devices for
# pools and attempt to import them all at boot, even those that have been
# exported. Under this mode, the search path can be controlled by the
# ZPOOL_IMPORT_PATH variable and a list of pools that should not be imported
# can be listed in the ZFS_POOL_EXCEPTIONS variable.
#
# Note that importing all visible pools may include pools that you don't
# expect, such as those on removable devices and SANs, and those pools may
# proceed to mount themselves in places you do not want them to. The results
# can be unpredictable and possibly dangerous. Only enable this option if you
# understand this risk and have complete physical control over your system and
# SAN to prevent the insertion of malicious pools.
ZPOOL_IMPORT_ALL_VISIBLE='no'
# Specify specific path(s) to look for device nodes and/or links for the # Specify specific path(s) to look for device nodes and/or links for the
# pool import(s). See zpool(8) for more information about this variable. # pool import(s). See zpool(8) for more information about this variable.
# It supersedes the old USE_DISK_BY_ID which indicated that it would only # It supersedes the old USE_DISK_BY_ID which indicated that it would only
@ -23,6 +41,18 @@ ZFS_UNSHARE='yes'
# The old variable will still work in the code, but is deprecated. # The old variable will still work in the code, but is deprecated.
#ZPOOL_IMPORT_PATH="/dev/disk/by-vdev:/dev/disk/by-id" #ZPOOL_IMPORT_PATH="/dev/disk/by-vdev:/dev/disk/by-id"
# List of pools that should NOT be imported at boot
# when ZPOOL_IMPORT_ALL_VISIBLE is 'yes'.
# This is a space separated list.
#ZFS_POOL_EXCEPTIONS="test2"
# List of pools that SHOULD be imported at boot by the initramfs
# instead of trying to import all available pools. If this is set
# then ZFS_POOL_EXCEPTIONS is ignored.
# Only applicable for Debian GNU/Linux {dkms,initramfs}.
# This is a semi-colon separated list.
#ZFS_POOL_IMPORT="pool1;pool2"
# Should the datasets be mounted verbosely? # Should the datasets be mounted verbosely?
# A mount counter will be used when mounting if set to 'yes'. # A mount counter will be used when mounting if set to 'yes'.
VERBOSE_MOUNT='no' VERBOSE_MOUNT='no'
@ -97,17 +127,6 @@ ZFS_INITRD_POST_MODPROBE_SLEEP='0'
# Example: If root FS is 'rpool/ROOT/rootfs', this would make sense. # Example: If root FS is 'rpool/ROOT/rootfs', this would make sense.
#ZFS_INITRD_ADDITIONAL_DATASETS="rpool/ROOT/usr rpool/ROOT/var" #ZFS_INITRD_ADDITIONAL_DATASETS="rpool/ROOT/usr rpool/ROOT/var"
# List of pools that should NOT be imported at boot?
# This is a space separated list.
#ZFS_POOL_EXCEPTIONS="test2"
# List of pools to import?
# If this variable is set, there will be NO auto-import of ANY other
# pool. In essence, there will be no auto detection of availible pools.
# This is a semi-colon separated list.
# Makes the variable ZFS_POOL_EXCEPTIONS above redundant (won't be checked).
#ZFS_POOL_IMPORT="pool1;pool2"
# Optional arguments for the ZFS Event Daemon (ZED). # Optional arguments for the ZFS Event Daemon (ZED).
# See zed(8) for more information on available options. # See zed(8) for more information on available options.
#ZED_ARGS="-M" #ZED_ARGS="-M"