2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# CDDL HEADER START
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the terms of the
|
|
|
|
# Common Development and Distribution License (the "License").
|
|
|
|
# You may not use this file except in compliance with the License.
|
|
|
|
#
|
|
|
|
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
|
|
|
# or http://www.opensolaris.org/os/licensing.
|
|
|
|
# See the License for the specific language governing permissions
|
|
|
|
# and limitations under the License.
|
|
|
|
#
|
|
|
|
# When distributing Covered Code, include this CDDL HEADER in each
|
|
|
|
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
|
|
|
# If applicable, add the following below this CDDL HEADER, with the
|
|
|
|
# fields enclosed by brackets "[]" replaced with your own identifying
|
|
|
|
# information: Portions Copyright [yyyy] [name of copyright owner]
|
|
|
|
#
|
|
|
|
# CDDL HEADER END
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
2019-12-05 00:10:12 +03:00
|
|
|
# Copyright (c) 2009, Sun Microsystems Inc. All rights reserved.
|
|
|
|
# Copyright (c) 2012, 2018, Delphix. All rights reserved.
|
|
|
|
# Copyright (c) 2017, Tim Chase. All rights reserved.
|
|
|
|
# Copyright (c) 2017, Nexenta Systems Inc. All rights reserved.
|
|
|
|
# Copyright (c) 2017, Lawrence Livermore National Security LLC.
|
|
|
|
# Copyright (c) 2017, Datto Inc. All rights reserved.
|
|
|
|
# Copyright (c) 2017, Open-E Inc. All rights reserved.
|
2019-03-29 19:13:20 +03:00
|
|
|
# Use is subject to license terms.
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
. ${STF_TOOLS}/include/logapi.shlib
|
2017-04-12 00:56:54 +03:00
|
|
|
. ${STF_SUITE}/include/math.shlib
|
2017-10-26 22:26:09 +03:00
|
|
|
. ${STF_SUITE}/include/blkdev.shlib
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2020-01-15 01:57:28 +03:00
|
|
|
. ${STF_SUITE}/include/tunables.cfg
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
#
|
|
|
|
# Apply constrained path when available. This is required since the
|
|
|
|
# PATH may have been modified by sudo's secure_path behavior.
|
|
|
|
#
|
|
|
|
if [ -n "$STF_PATH" ]; then
|
|
|
|
PATH="$STF_PATH"
|
|
|
|
fi
|
|
|
|
|
2018-08-27 20:04:21 +03:00
|
|
|
#
|
|
|
|
# Generic dot version comparison function
|
|
|
|
#
|
|
|
|
# Returns success when version $1 is greater than or equal to $2.
|
|
|
|
#
|
|
|
|
function compare_version_gte
|
|
|
|
{
|
|
|
|
if [[ "$(printf "$1\n$2" | sort -V | tail -n1)" == "$1" ]]; then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-07-24 21:03:50 +03:00
|
|
|
# Linux kernel version comparison function
|
|
|
|
#
|
|
|
|
# $1 Linux version ("4.10", "2.6.32") or blank for installed Linux version
|
|
|
|
#
|
|
|
|
# Used for comparison: if [ $(linux_version) -ge $(linux_version "2.6.32") ]
|
|
|
|
#
|
|
|
|
function linux_version
|
|
|
|
{
|
|
|
|
typeset ver="$1"
|
|
|
|
|
|
|
|
[[ -z "$ver" ]] && ver=$(uname -r | grep -Eo "^[0-9]+\.[0-9]+\.[0-9]+")
|
|
|
|
|
|
|
|
typeset version=$(echo $ver | cut -d '.' -f 1)
|
|
|
|
typeset major=$(echo $ver | cut -d '.' -f 2)
|
|
|
|
typeset minor=$(echo $ver | cut -d '.' -f 3)
|
|
|
|
|
|
|
|
[[ -z "$version" ]] && version=0
|
|
|
|
[[ -z "$major" ]] && major=0
|
|
|
|
[[ -z "$minor" ]] && minor=0
|
|
|
|
|
|
|
|
echo $((version * 10000 + major * 100 + minor))
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
# Determine if this is a Linux test system
|
|
|
|
#
|
|
|
|
# Return 0 if platform Linux, 1 if otherwise
|
|
|
|
|
|
|
|
function is_linux
|
|
|
|
{
|
2017-04-06 03:18:22 +03:00
|
|
|
if [[ $(uname -o) == "GNU/Linux" ]]; then
|
2015-07-02 01:23:09 +03:00
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-01-03 20:08:23 +03:00
|
|
|
# Determine if this is an illumos test system
|
|
|
|
#
|
|
|
|
# Return 0 if platform illumos, 1 if otherwise
|
|
|
|
function is_illumos
|
|
|
|
{
|
|
|
|
if [[ $(uname -o) == "illumos" ]]; then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
# Determine if this is a FreeBSD test system
|
|
|
|
#
|
|
|
|
# Return 0 if platform FreeBSD, 1 if otherwise
|
|
|
|
|
|
|
|
function is_freebsd
|
|
|
|
{
|
|
|
|
if [[ $(uname -o) == "FreeBSD" ]]; then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-02-07 23:32:52 +03:00
|
|
|
# Determine if this is a DilOS test system
|
|
|
|
#
|
|
|
|
# Return 0 if platform DilOS, 1 if otherwise
|
|
|
|
|
|
|
|
function is_dilos
|
|
|
|
{
|
|
|
|
typeset ID=""
|
|
|
|
[[ -f /etc/os-release ]] && . /etc/os-release
|
|
|
|
if [[ $ID == "dilos" ]]; then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2016-11-01 00:16:37 +03:00
|
|
|
# Determine if this is a 32-bit system
|
|
|
|
#
|
|
|
|
# Return 0 if platform is 32-bit, 1 if otherwise
|
|
|
|
|
|
|
|
function is_32bit
|
|
|
|
{
|
|
|
|
if [[ $(getconf LONG_BIT) == "32" ]]; then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2016-12-14 20:33:07 +03:00
|
|
|
# Determine if kmemleak is enabled
|
|
|
|
#
|
|
|
|
# Return 0 if kmemleak is enabled, 1 if otherwise
|
|
|
|
|
|
|
|
function is_kmemleak
|
|
|
|
{
|
|
|
|
if is_linux && [[ -e /sys/kernel/debug/kmemleak ]]; then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
# Determine whether a dataset is mounted
|
|
|
|
#
|
|
|
|
# $1 dataset name
|
|
|
|
# $2 filesystem type; optional - defaulted to zfs
|
|
|
|
#
|
|
|
|
# Return 0 if dataset is mounted; 1 if unmounted; 2 on error
|
|
|
|
|
|
|
|
function ismounted
|
|
|
|
{
|
|
|
|
typeset fstype=$2
|
|
|
|
[[ -z $fstype ]] && fstype=zfs
|
|
|
|
typeset out dir name ret
|
|
|
|
|
|
|
|
case $fstype in
|
|
|
|
zfs)
|
|
|
|
if [[ "$1" == "/"* ]] ; then
|
2017-04-06 03:18:22 +03:00
|
|
|
for out in $(zfs mount | awk '{print $2}'); do
|
2015-07-02 01:23:09 +03:00
|
|
|
[[ $1 == $out ]] && return 0
|
|
|
|
done
|
|
|
|
else
|
2017-04-06 03:18:22 +03:00
|
|
|
for out in $(zfs mount | awk '{print $1}'); do
|
2015-07-02 01:23:09 +03:00
|
|
|
[[ $1 == $out ]] && return 0
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
ufs|nfs)
|
2019-12-18 23:29:43 +03:00
|
|
|
if is_freebsd; then
|
|
|
|
mount -pt $fstype | while read dev dir _t _flags; do
|
|
|
|
[[ "$1" == "$dev" || "$1" == "$dir" ]] && return 0
|
|
|
|
done
|
|
|
|
else
|
|
|
|
out=$(df -F $fstype $1 2>/dev/null)
|
|
|
|
ret=$?
|
|
|
|
(($ret != 0)) && return $ret
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
dir=${out%%\(*}
|
|
|
|
dir=${dir%% *}
|
|
|
|
name=${out##*\(}
|
|
|
|
name=${name%%\)*}
|
|
|
|
name=${name%% *}
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
[[ "$1" == "$dir" || "$1" == "$name" ]] && return 0
|
|
|
|
fi
|
2015-07-02 01:23:09 +03:00
|
|
|
;;
|
2017-09-09 01:07:00 +03:00
|
|
|
ext*)
|
2017-04-06 03:18:22 +03:00
|
|
|
out=$(df -t $fstype $1 2>/dev/null)
|
2015-07-02 01:23:09 +03:00
|
|
|
return $?
|
|
|
|
;;
|
|
|
|
zvol)
|
|
|
|
if [[ -L "$ZVOL_DEVDIR/$1" ]]; then
|
|
|
|
link=$(readlink -f $ZVOL_DEVDIR/$1)
|
|
|
|
[[ -n "$link" ]] && \
|
2017-04-06 03:18:22 +03:00
|
|
|
mount | grep -q "^$link" && \
|
2015-07-02 01:23:09 +03:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Return 0 if a dataset is mounted; 1 otherwise
|
|
|
|
#
|
|
|
|
# $1 dataset name
|
|
|
|
# $2 filesystem type; optional - defaulted to zfs
|
|
|
|
|
|
|
|
function mounted
|
|
|
|
{
|
|
|
|
ismounted $1 $2
|
|
|
|
(($? == 0)) && return 0
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Return 0 if a dataset is unmounted; 1 otherwise
|
|
|
|
#
|
|
|
|
# $1 dataset name
|
|
|
|
# $2 filesystem type; optional - defaulted to zfs
|
|
|
|
|
|
|
|
function unmounted
|
|
|
|
{
|
|
|
|
ismounted $1 $2
|
|
|
|
(($? == 1)) && return 0
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# split line on ","
|
|
|
|
#
|
|
|
|
# $1 - line to split
|
|
|
|
|
|
|
|
function splitline
|
|
|
|
{
|
2017-04-06 03:18:22 +03:00
|
|
|
echo $1 | sed "s/,/ /g"
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function default_setup
|
|
|
|
{
|
|
|
|
default_setup_noexit "$@"
|
|
|
|
|
|
|
|
log_pass
|
|
|
|
}
|
|
|
|
|
Fix `zfs set atime|relatime=off|on` behavior on inherited datasets
`zfs set atime|relatime=off|on` doesn't disable or enable the property
on read for datasets whose property was inherited from parent, until
a dataset is once unmounted and mounted again.
(The properties start to work properly if a dataset is once unmounted
and mounted again. The difference comes from regular mount process,
e.g. via zpool import, uses mount options based on properties read
from ondisk layout for each dataset, whereas
`zfs set atime|relatime=off|on` just remounts a specified dataset.)
--
# zpool create p1 <device>
# zfs create p1/f1
# zfs set atime=off p1
# echo test > /p1/f1/test
# sync
# zfs list
NAME USED AVAIL REFER MOUNTPOINT
p1 176K 18.9G 25.5K /p1
p1/f1 26K 18.9G 26K /p1/f1
# zfs get atime
NAME PROPERTY VALUE SOURCE
p1 atime off local
p1/f1 atime off inherited from p1
# stat /p1/f1/test | grep Access | tail -1
Access: 2019-04-26 23:32:33.741205192 +0900
# cat /p1/f1/test
test
# stat /p1/f1/test | grep Access | tail -1
Access: 2019-04-26 23:32:50.173231861 +0900
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ changed by read(2)
--
The problem is that zfsvfs::z_atime which was probably intended to keep
incore atime state just gets updated by a callback function of "atime"
property change, atime_changed_cb(), and never used for anything else.
Since now that all file read and atime update use a common function
zpl_iter_read_common() -> file_accessed(), and whether to update atime
via ->dirty_inode() is determined by atime_needs_update(),
atime_needs_update() needs to return false once atime is turned off.
It currently continues to return true on `zfs set atime=off`.
Fix atime_changed_cb() by setting or dropping SB_NOATIME in VFS super
block depending on a new atime value, so that atime_needs_update() works
as expected after property change.
The same problem applies to "relatime" except that a self contained
relatime test is needed. This is because relatime_need_update() is based
on a mount option flag MNT_RELATIME, which doesn't exist in datasets
with inherited "relatime" property via `zfs set relatime=...`, hence it
needs its own relatime test zfs_relatime_need_update().
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
Closes #8674
Closes #8675
2019-05-07 20:06:30 +03:00
|
|
|
function default_setup_no_mountpoint
|
|
|
|
{
|
|
|
|
default_setup_noexit "$1" "$2" "$3" "yes"
|
|
|
|
|
|
|
|
log_pass
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# Given a list of disks, setup storage pools and datasets.
|
|
|
|
#
|
|
|
|
function default_setup_noexit
|
|
|
|
{
|
|
|
|
typeset disklist=$1
|
|
|
|
typeset container=$2
|
|
|
|
typeset volume=$3
|
Fix `zfs set atime|relatime=off|on` behavior on inherited datasets
`zfs set atime|relatime=off|on` doesn't disable or enable the property
on read for datasets whose property was inherited from parent, until
a dataset is once unmounted and mounted again.
(The properties start to work properly if a dataset is once unmounted
and mounted again. The difference comes from regular mount process,
e.g. via zpool import, uses mount options based on properties read
from ondisk layout for each dataset, whereas
`zfs set atime|relatime=off|on` just remounts a specified dataset.)
--
# zpool create p1 <device>
# zfs create p1/f1
# zfs set atime=off p1
# echo test > /p1/f1/test
# sync
# zfs list
NAME USED AVAIL REFER MOUNTPOINT
p1 176K 18.9G 25.5K /p1
p1/f1 26K 18.9G 26K /p1/f1
# zfs get atime
NAME PROPERTY VALUE SOURCE
p1 atime off local
p1/f1 atime off inherited from p1
# stat /p1/f1/test | grep Access | tail -1
Access: 2019-04-26 23:32:33.741205192 +0900
# cat /p1/f1/test
test
# stat /p1/f1/test | grep Access | tail -1
Access: 2019-04-26 23:32:50.173231861 +0900
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ changed by read(2)
--
The problem is that zfsvfs::z_atime which was probably intended to keep
incore atime state just gets updated by a callback function of "atime"
property change, atime_changed_cb(), and never used for anything else.
Since now that all file read and atime update use a common function
zpl_iter_read_common() -> file_accessed(), and whether to update atime
via ->dirty_inode() is determined by atime_needs_update(),
atime_needs_update() needs to return false once atime is turned off.
It currently continues to return true on `zfs set atime=off`.
Fix atime_changed_cb() by setting or dropping SB_NOATIME in VFS super
block depending on a new atime value, so that atime_needs_update() works
as expected after property change.
The same problem applies to "relatime" except that a self contained
relatime test is needed. This is because relatime_need_update() is based
on a mount option flag MNT_RELATIME, which doesn't exist in datasets
with inherited "relatime" property via `zfs set relatime=...`, hence it
needs its own relatime test zfs_relatime_need_update().
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
Closes #8674
Closes #8675
2019-05-07 20:06:30 +03:00
|
|
|
typeset no_mountpoint=$4
|
2016-06-16 01:47:05 +03:00
|
|
|
log_note begin default_setup_noexit
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
if is_global_zone; then
|
|
|
|
if poolexists $TESTPOOL ; then
|
|
|
|
destroy_pool $TESTPOOL
|
|
|
|
fi
|
2017-04-06 03:18:22 +03:00
|
|
|
[[ -d /$TESTPOOL ]] && rm -rf /$TESTPOOL
|
|
|
|
log_must zpool create -f $TESTPOOL $disklist
|
2015-07-02 01:23:09 +03:00
|
|
|
else
|
|
|
|
reexport_pool
|
|
|
|
fi
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
rm -rf $TESTDIR || log_unresolved Could not remove $TESTDIR
|
|
|
|
mkdir -p $TESTDIR || log_unresolved Could not create $TESTDIR
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs create $TESTPOOL/$TESTFS
|
Fix `zfs set atime|relatime=off|on` behavior on inherited datasets
`zfs set atime|relatime=off|on` doesn't disable or enable the property
on read for datasets whose property was inherited from parent, until
a dataset is once unmounted and mounted again.
(The properties start to work properly if a dataset is once unmounted
and mounted again. The difference comes from regular mount process,
e.g. via zpool import, uses mount options based on properties read
from ondisk layout for each dataset, whereas
`zfs set atime|relatime=off|on` just remounts a specified dataset.)
--
# zpool create p1 <device>
# zfs create p1/f1
# zfs set atime=off p1
# echo test > /p1/f1/test
# sync
# zfs list
NAME USED AVAIL REFER MOUNTPOINT
p1 176K 18.9G 25.5K /p1
p1/f1 26K 18.9G 26K /p1/f1
# zfs get atime
NAME PROPERTY VALUE SOURCE
p1 atime off local
p1/f1 atime off inherited from p1
# stat /p1/f1/test | grep Access | tail -1
Access: 2019-04-26 23:32:33.741205192 +0900
# cat /p1/f1/test
test
# stat /p1/f1/test | grep Access | tail -1
Access: 2019-04-26 23:32:50.173231861 +0900
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ changed by read(2)
--
The problem is that zfsvfs::z_atime which was probably intended to keep
incore atime state just gets updated by a callback function of "atime"
property change, atime_changed_cb(), and never used for anything else.
Since now that all file read and atime update use a common function
zpl_iter_read_common() -> file_accessed(), and whether to update atime
via ->dirty_inode() is determined by atime_needs_update(),
atime_needs_update() needs to return false once atime is turned off.
It currently continues to return true on `zfs set atime=off`.
Fix atime_changed_cb() by setting or dropping SB_NOATIME in VFS super
block depending on a new atime value, so that atime_needs_update() works
as expected after property change.
The same problem applies to "relatime" except that a self contained
relatime test is needed. This is because relatime_need_update() is based
on a mount option flag MNT_RELATIME, which doesn't exist in datasets
with inherited "relatime" property via `zfs set relatime=...`, hence it
needs its own relatime test zfs_relatime_need_update().
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
Closes #8674
Closes #8675
2019-05-07 20:06:30 +03:00
|
|
|
if [[ -z $no_mountpoint ]]; then
|
|
|
|
log_must zfs set mountpoint=$TESTDIR $TESTPOOL/$TESTFS
|
|
|
|
fi
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
if [[ -n $container ]]; then
|
2017-04-06 03:18:22 +03:00
|
|
|
rm -rf $TESTDIR1 || \
|
2015-07-02 01:23:09 +03:00
|
|
|
log_unresolved Could not remove $TESTDIR1
|
2017-04-06 03:18:22 +03:00
|
|
|
mkdir -p $TESTDIR1 || \
|
2015-07-02 01:23:09 +03:00
|
|
|
log_unresolved Could not create $TESTDIR1
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs create $TESTPOOL/$TESTCTR
|
|
|
|
log_must zfs set canmount=off $TESTPOOL/$TESTCTR
|
|
|
|
log_must zfs create $TESTPOOL/$TESTCTR/$TESTFS1
|
Fix `zfs set atime|relatime=off|on` behavior on inherited datasets
`zfs set atime|relatime=off|on` doesn't disable or enable the property
on read for datasets whose property was inherited from parent, until
a dataset is once unmounted and mounted again.
(The properties start to work properly if a dataset is once unmounted
and mounted again. The difference comes from regular mount process,
e.g. via zpool import, uses mount options based on properties read
from ondisk layout for each dataset, whereas
`zfs set atime|relatime=off|on` just remounts a specified dataset.)
--
# zpool create p1 <device>
# zfs create p1/f1
# zfs set atime=off p1
# echo test > /p1/f1/test
# sync
# zfs list
NAME USED AVAIL REFER MOUNTPOINT
p1 176K 18.9G 25.5K /p1
p1/f1 26K 18.9G 26K /p1/f1
# zfs get atime
NAME PROPERTY VALUE SOURCE
p1 atime off local
p1/f1 atime off inherited from p1
# stat /p1/f1/test | grep Access | tail -1
Access: 2019-04-26 23:32:33.741205192 +0900
# cat /p1/f1/test
test
# stat /p1/f1/test | grep Access | tail -1
Access: 2019-04-26 23:32:50.173231861 +0900
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ changed by read(2)
--
The problem is that zfsvfs::z_atime which was probably intended to keep
incore atime state just gets updated by a callback function of "atime"
property change, atime_changed_cb(), and never used for anything else.
Since now that all file read and atime update use a common function
zpl_iter_read_common() -> file_accessed(), and whether to update atime
via ->dirty_inode() is determined by atime_needs_update(),
atime_needs_update() needs to return false once atime is turned off.
It currently continues to return true on `zfs set atime=off`.
Fix atime_changed_cb() by setting or dropping SB_NOATIME in VFS super
block depending on a new atime value, so that atime_needs_update() works
as expected after property change.
The same problem applies to "relatime" except that a self contained
relatime test is needed. This is because relatime_need_update() is based
on a mount option flag MNT_RELATIME, which doesn't exist in datasets
with inherited "relatime" property via `zfs set relatime=...`, hence it
needs its own relatime test zfs_relatime_need_update().
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
Closes #8674
Closes #8675
2019-05-07 20:06:30 +03:00
|
|
|
if [[ -z $no_mountpoint ]]; then
|
|
|
|
log_must zfs set mountpoint=$TESTDIR1 \
|
|
|
|
$TESTPOOL/$TESTCTR/$TESTFS1
|
|
|
|
fi
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -n $volume ]]; then
|
|
|
|
if is_global_zone ; then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs create -V $VOLSIZE $TESTPOOL/$TESTVOL
|
2015-07-02 01:23:09 +03:00
|
|
|
block_device_wait
|
|
|
|
else
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs create $TESTPOOL/$TESTVOL
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Given a list of disks, setup a storage pool, file system and
|
|
|
|
# a container.
|
|
|
|
#
|
|
|
|
function default_container_setup
|
|
|
|
{
|
|
|
|
typeset disklist=$1
|
|
|
|
|
|
|
|
default_setup "$disklist" "true"
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Given a list of disks, setup a storage pool,file system
|
|
|
|
# and a volume.
|
|
|
|
#
|
|
|
|
function default_volume_setup
|
|
|
|
{
|
|
|
|
typeset disklist=$1
|
|
|
|
|
|
|
|
default_setup "$disklist" "" "true"
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Given a list of disks, setup a storage pool,file system,
|
|
|
|
# a container and a volume.
|
|
|
|
#
|
|
|
|
function default_container_volume_setup
|
|
|
|
{
|
|
|
|
typeset disklist=$1
|
|
|
|
|
|
|
|
default_setup "$disklist" "true" "true"
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Create a snapshot on a filesystem or volume. Defaultly create a snapshot on
|
|
|
|
# filesystem
|
|
|
|
#
|
2018-02-08 19:16:23 +03:00
|
|
|
# $1 Existing filesystem or volume name. Default, $TESTPOOL/$TESTFS
|
2015-07-02 01:23:09 +03:00
|
|
|
# $2 snapshot name. Default, $TESTSNAP
|
|
|
|
#
|
|
|
|
function create_snapshot
|
|
|
|
{
|
2018-02-08 19:16:23 +03:00
|
|
|
typeset fs_vol=${1:-$TESTPOOL/$TESTFS}
|
2015-07-02 01:23:09 +03:00
|
|
|
typeset snap=${2:-$TESTSNAP}
|
|
|
|
|
|
|
|
[[ -z $fs_vol ]] && log_fail "Filesystem or volume's name is undefined."
|
|
|
|
[[ -z $snap ]] && log_fail "Snapshot's name is undefined."
|
|
|
|
|
|
|
|
if snapexists $fs_vol@$snap; then
|
|
|
|
log_fail "$fs_vol@$snap already exists."
|
|
|
|
fi
|
|
|
|
datasetexists $fs_vol || \
|
|
|
|
log_fail "$fs_vol must exist."
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs snapshot $fs_vol@$snap
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Create a clone from a snapshot, default clone name is $TESTCLONE.
|
|
|
|
#
|
|
|
|
# $1 Existing snapshot, $TESTPOOL/$TESTFS@$TESTSNAP is default.
|
|
|
|
# $2 Clone name, $TESTPOOL/$TESTCLONE is default.
|
|
|
|
#
|
|
|
|
function create_clone # snapshot clone
|
|
|
|
{
|
|
|
|
typeset snap=${1:-$TESTPOOL/$TESTFS@$TESTSNAP}
|
|
|
|
typeset clone=${2:-$TESTPOOL/$TESTCLONE}
|
|
|
|
|
|
|
|
[[ -z $snap ]] && \
|
|
|
|
log_fail "Snapshot name is undefined."
|
|
|
|
[[ -z $clone ]] && \
|
|
|
|
log_fail "Clone name is undefined."
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs clone $snap $clone
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
2017-01-27 01:42:15 +03:00
|
|
|
#
|
|
|
|
# Create a bookmark of the given snapshot. Defaultly create a bookmark on
|
|
|
|
# filesystem.
|
|
|
|
#
|
|
|
|
# $1 Existing filesystem or volume name. Default, $TESTFS
|
|
|
|
# $2 Existing snapshot name. Default, $TESTSNAP
|
|
|
|
# $3 bookmark name. Default, $TESTBKMARK
|
|
|
|
#
|
|
|
|
function create_bookmark
|
|
|
|
{
|
|
|
|
typeset fs_vol=${1:-$TESTFS}
|
|
|
|
typeset snap=${2:-$TESTSNAP}
|
|
|
|
typeset bkmark=${3:-$TESTBKMARK}
|
|
|
|
|
|
|
|
[[ -z $fs_vol ]] && log_fail "Filesystem or volume's name is undefined."
|
|
|
|
[[ -z $snap ]] && log_fail "Snapshot's name is undefined."
|
|
|
|
[[ -z $bkmark ]] && log_fail "Bookmark's name is undefined."
|
|
|
|
|
|
|
|
if bkmarkexists $fs_vol#$bkmark; then
|
|
|
|
log_fail "$fs_vol#$bkmark already exists."
|
|
|
|
fi
|
|
|
|
datasetexists $fs_vol || \
|
|
|
|
log_fail "$fs_vol must exist."
|
|
|
|
snapexists $fs_vol@$snap || \
|
|
|
|
log_fail "$fs_vol@$snap must exist."
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs bookmark $fs_vol@$snap $fs_vol#$bkmark
|
2017-01-27 01:42:15 +03:00
|
|
|
}
|
|
|
|
|
2017-07-29 00:12:34 +03:00
|
|
|
#
|
|
|
|
# Create a temporary clone result of an interrupted resumable 'zfs receive'
|
|
|
|
# $1 Destination filesystem name. Must not exist, will be created as the result
|
|
|
|
# of this function along with its %recv temporary clone
|
|
|
|
# $2 Source filesystem name. Must not exist, will be created and destroyed
|
|
|
|
#
|
|
|
|
function create_recv_clone
|
|
|
|
{
|
|
|
|
typeset recvfs="$1"
|
|
|
|
typeset sendfs="${2:-$TESTPOOL/create_recv_clone}"
|
|
|
|
typeset snap="$sendfs@snap1"
|
|
|
|
typeset incr="$sendfs@snap2"
|
|
|
|
typeset mountpoint="$TESTDIR/create_recv_clone"
|
|
|
|
typeset sendfile="$TESTDIR/create_recv_clone.zsnap"
|
|
|
|
|
|
|
|
[[ -z $recvfs ]] && log_fail "Recv filesystem's name is undefined."
|
|
|
|
|
|
|
|
datasetexists $recvfs && log_fail "Recv filesystem must not exist."
|
|
|
|
datasetexists $sendfs && log_fail "Send filesystem must not exist."
|
|
|
|
|
|
|
|
log_must zfs create -o mountpoint="$mountpoint" $sendfs
|
|
|
|
log_must zfs snapshot $snap
|
|
|
|
log_must eval "zfs send $snap | zfs recv -u $recvfs"
|
|
|
|
log_must mkfile 1m "$mountpoint/data"
|
|
|
|
log_must zfs snapshot $incr
|
Implement Redacted Send/Receive
Redacted send/receive allows users to send subsets of their data to
a target system. One possible use case for this feature is to not
transmit sensitive information to a data warehousing, test/dev, or
analytics environment. Another is to save space by not replicating
unimportant data within a given dataset, for example in backup tools
like zrepl.
Redacted send/receive is a three-stage process. First, a clone (or
clones) is made of the snapshot to be sent to the target. In this
clone (or clones), all unnecessary or unwanted data is removed or
modified. This clone is then snapshotted to create the "redaction
snapshot" (or snapshots). Second, the new zfs redact command is used
to create a redaction bookmark. The redaction bookmark stores the
list of blocks in a snapshot that were modified by the redaction
snapshot(s). Finally, the redaction bookmark is passed as a parameter
to zfs send. When sending to the snapshot that was redacted, the
redaction bookmark is used to filter out blocks that contain sensitive
or unwanted information, and those blocks are not included in the send
stream. When sending from the redaction bookmark, the blocks it
contains are considered as candidate blocks in addition to those
blocks in the destination snapshot that were modified since the
creation_txg of the redaction bookmark. This step is necessary to
allow the target to rehydrate data in the case where some blocks are
accidentally or unnecessarily modified in the redaction snapshot.
The changes to bookmarks to enable fast space estimation involve
adding deadlists to bookmarks. There is also logic to manage the
life cycles of these deadlists.
The new size estimation process operates in cases where previously
an accurate estimate could not be provided. In those cases, a send
is performed where no data blocks are read, reducing the runtime
significantly and providing a byte-accurate size estimate.
Reviewed-by: Dan Kimmel <dan.kimmel@delphix.com>
Reviewed-by: Matt Ahrens <mahrens@delphix.com>
Reviewed-by: Prashanth Sreenivasa <pks@delphix.com>
Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Reviewed-by: George Wilson <george.wilson@delphix.com>
Reviewed-by: Chris Williamson <chris.williamson@delphix.com>
Reviewed-by: Pavel Zhakarov <pavel.zakharov@delphix.com>
Reviewed-by: Sebastien Roy <sebastien.roy@delphix.com>
Reviewed-by: Prakash Surya <prakash.surya@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Paul Dagnelie <pcd@delphix.com>
Closes #7958
2019-06-19 19:48:13 +03:00
|
|
|
log_must eval "zfs send -i $snap $incr | dd bs=10K count=1 \
|
|
|
|
iflag=fullblock > $sendfile"
|
2017-07-29 00:12:34 +03:00
|
|
|
log_mustnot eval "zfs recv -su $recvfs < $sendfile"
|
2018-03-07 01:54:57 +03:00
|
|
|
destroy_dataset "$sendfs" "-r"
|
2017-07-29 00:12:34 +03:00
|
|
|
log_must rm -f "$sendfile"
|
|
|
|
|
|
|
|
if [[ $(get_prop 'inconsistent' "$recvfs/%recv") -ne 1 ]]; then
|
|
|
|
log_fail "Error creating temporary $recvfs/%recv clone"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
function default_mirror_setup
|
|
|
|
{
|
|
|
|
default_mirror_setup_noexit $1 $2 $3
|
|
|
|
|
|
|
|
log_pass
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Given a pair of disks, set up a storage pool and dataset for the mirror
|
|
|
|
# @parameters: $1 the primary side of the mirror
|
|
|
|
# $2 the secondary side of the mirror
|
|
|
|
# @uses: ZPOOL ZFS TESTPOOL TESTFS
|
|
|
|
function default_mirror_setup_noexit
|
|
|
|
{
|
|
|
|
readonly func="default_mirror_setup_noexit"
|
|
|
|
typeset primary=$1
|
|
|
|
typeset secondary=$2
|
|
|
|
|
|
|
|
[[ -z $primary ]] && \
|
|
|
|
log_fail "$func: No parameters passed"
|
|
|
|
[[ -z $secondary ]] && \
|
|
|
|
log_fail "$func: No secondary partition passed"
|
2017-04-06 03:18:22 +03:00
|
|
|
[[ -d /$TESTPOOL ]] && rm -rf /$TESTPOOL
|
|
|
|
log_must zpool create -f $TESTPOOL mirror $@
|
|
|
|
log_must zfs create $TESTPOOL/$TESTFS
|
|
|
|
log_must zfs set mountpoint=$TESTDIR $TESTPOOL/$TESTFS
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# create a number of mirrors.
|
|
|
|
# We create a number($1) of 2 way mirrors using the pairs of disks named
|
|
|
|
# on the command line. These mirrors are *not* mounted
|
|
|
|
# @parameters: $1 the number of mirrors to create
|
|
|
|
# $... the devices to use to create the mirrors on
|
|
|
|
# @uses: ZPOOL ZFS TESTPOOL
|
|
|
|
function setup_mirrors
|
|
|
|
{
|
|
|
|
typeset -i nmirrors=$1
|
|
|
|
|
|
|
|
shift
|
|
|
|
while ((nmirrors > 0)); do
|
|
|
|
log_must test -n "$1" -a -n "$2"
|
2017-04-06 03:18:22 +03:00
|
|
|
[[ -d /$TESTPOOL$nmirrors ]] && rm -rf /$TESTPOOL$nmirrors
|
|
|
|
log_must zpool create -f $TESTPOOL$nmirrors mirror $1 $2
|
2015-07-02 01:23:09 +03:00
|
|
|
shift 2
|
|
|
|
((nmirrors = nmirrors - 1))
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# create a number of raidz pools.
|
|
|
|
# We create a number($1) of 2 raidz pools using the pairs of disks named
|
|
|
|
# on the command line. These pools are *not* mounted
|
|
|
|
# @parameters: $1 the number of pools to create
|
|
|
|
# $... the devices to use to create the pools on
|
|
|
|
# @uses: ZPOOL ZFS TESTPOOL
|
|
|
|
function setup_raidzs
|
|
|
|
{
|
|
|
|
typeset -i nraidzs=$1
|
|
|
|
|
|
|
|
shift
|
|
|
|
while ((nraidzs > 0)); do
|
|
|
|
log_must test -n "$1" -a -n "$2"
|
2017-04-06 03:18:22 +03:00
|
|
|
[[ -d /$TESTPOOL$nraidzs ]] && rm -rf /$TESTPOOL$nraidzs
|
|
|
|
log_must zpool create -f $TESTPOOL$nraidzs raidz $1 $2
|
2015-07-02 01:23:09 +03:00
|
|
|
shift 2
|
|
|
|
((nraidzs = nraidzs - 1))
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Destroy the configured testpool mirrors.
|
|
|
|
# the mirrors are of the form ${TESTPOOL}{number}
|
|
|
|
# @uses: ZPOOL ZFS TESTPOOL
|
|
|
|
function destroy_mirrors
|
|
|
|
{
|
|
|
|
default_cleanup_noexit
|
|
|
|
|
|
|
|
log_pass
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Given a minimum of two disks, set up a storage pool and dataset for the raid-z
|
|
|
|
# $1 the list of disks
|
|
|
|
#
|
|
|
|
function default_raidz_setup
|
|
|
|
{
|
|
|
|
typeset disklist="$*"
|
|
|
|
disks=(${disklist[*]})
|
|
|
|
|
|
|
|
if [[ ${#disks[*]} -lt 2 ]]; then
|
|
|
|
log_fail "A raid-z requires a minimum of two disks."
|
|
|
|
fi
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
[[ -d /$TESTPOOL ]] && rm -rf /$TESTPOOL
|
2017-09-25 20:32:34 +03:00
|
|
|
log_must zpool create -f $TESTPOOL raidz $disklist
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs create $TESTPOOL/$TESTFS
|
|
|
|
log_must zfs set mountpoint=$TESTDIR $TESTPOOL/$TESTFS
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
log_pass
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Common function used to cleanup storage pools and datasets.
|
|
|
|
#
|
|
|
|
# Invoked at the start of the test suite to ensure the system
|
|
|
|
# is in a known state, and also at the end of each set of
|
|
|
|
# sub-tests to ensure errors from one set of tests doesn't
|
|
|
|
# impact the execution of the next set.
|
|
|
|
|
|
|
|
function default_cleanup
|
|
|
|
{
|
|
|
|
default_cleanup_noexit
|
|
|
|
|
|
|
|
log_pass
|
|
|
|
}
|
|
|
|
|
2017-09-25 20:32:34 +03:00
|
|
|
#
|
|
|
|
# Utility function used to list all available pool names.
|
|
|
|
#
|
|
|
|
# NOTE: $KEEP is a variable containing pool names, separated by a newline
|
|
|
|
# character, that must be excluded from the returned list.
|
|
|
|
#
|
|
|
|
function get_all_pools
|
|
|
|
{
|
|
|
|
zpool list -H -o name | grep -Fvx "$KEEP" | grep -v "$NO_POOLS"
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
function default_cleanup_noexit
|
|
|
|
{
|
|
|
|
typeset pool=""
|
|
|
|
#
|
|
|
|
# Destroying the pool will also destroy any
|
|
|
|
# filesystems it contains.
|
|
|
|
#
|
|
|
|
if is_global_zone; then
|
2017-04-06 03:18:22 +03:00
|
|
|
zfs unmount -a > /dev/null 2>&1
|
2017-09-25 20:32:34 +03:00
|
|
|
ALL_POOLS=$(get_all_pools)
|
2015-07-02 01:23:09 +03:00
|
|
|
# Here, we loop through the pools we're allowed to
|
|
|
|
# destroy, only destroying them if it's safe to do
|
|
|
|
# so.
|
|
|
|
while [ ! -z ${ALL_POOLS} ]
|
|
|
|
do
|
|
|
|
for pool in ${ALL_POOLS}
|
|
|
|
do
|
|
|
|
if safe_to_destroy_pool $pool ;
|
|
|
|
then
|
|
|
|
destroy_pool $pool
|
|
|
|
fi
|
2017-09-25 20:32:34 +03:00
|
|
|
ALL_POOLS=$(get_all_pools)
|
2015-07-02 01:23:09 +03:00
|
|
|
done
|
|
|
|
done
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
zfs mount -a
|
2015-07-02 01:23:09 +03:00
|
|
|
else
|
|
|
|
typeset fs=""
|
2017-04-06 03:18:22 +03:00
|
|
|
for fs in $(zfs list -H -o name \
|
|
|
|
| grep "^$ZONE_POOL/$ZONE_CTR[01234]/"); do
|
2018-03-07 01:54:57 +03:00
|
|
|
destroy_dataset "$fs" "-Rf"
|
2015-07-02 01:23:09 +03:00
|
|
|
done
|
|
|
|
|
|
|
|
# Need cleanup here to avoid garbage dir left.
|
2017-04-06 03:18:22 +03:00
|
|
|
for fs in $(zfs list -H -o name); do
|
2015-07-02 01:23:09 +03:00
|
|
|
[[ $fs == /$ZONE_POOL ]] && continue
|
2017-04-06 03:18:22 +03:00
|
|
|
[[ -d $fs ]] && log_must rm -rf $fs/*
|
2015-07-02 01:23:09 +03:00
|
|
|
done
|
|
|
|
|
|
|
|
#
|
|
|
|
# Reset the $ZONE_POOL/$ZONE_CTR[01234] file systems property to
|
|
|
|
# the default value
|
|
|
|
#
|
2017-04-06 03:18:22 +03:00
|
|
|
for fs in $(zfs list -H -o name); do
|
2015-07-02 01:23:09 +03:00
|
|
|
if [[ $fs == $ZONE_POOL/$ZONE_CTR[01234] ]]; then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs set reservation=none $fs
|
|
|
|
log_must zfs set recordsize=128K $fs
|
|
|
|
log_must zfs set mountpoint=/$fs $fs
|
2015-07-02 01:23:09 +03:00
|
|
|
typeset enc=""
|
|
|
|
enc=$(get_prop encryption $fs)
|
|
|
|
if [[ $? -ne 0 ]] || [[ -z "$enc" ]] || \
|
|
|
|
[[ "$enc" == "off" ]]; then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs set checksum=on $fs
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs set compression=off $fs
|
|
|
|
log_must zfs set atime=on $fs
|
|
|
|
log_must zfs set devices=off $fs
|
|
|
|
log_must zfs set exec=on $fs
|
|
|
|
log_must zfs set setuid=on $fs
|
|
|
|
log_must zfs set readonly=off $fs
|
|
|
|
log_must zfs set snapdir=hidden $fs
|
|
|
|
log_must zfs set aclmode=groupmask $fs
|
|
|
|
log_must zfs set aclinherit=secure $fs
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
[[ -d $TESTDIR ]] && \
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must rm -rf $TESTDIR
|
2016-07-22 18:07:04 +03:00
|
|
|
|
|
|
|
disk1=${DISKS%% *}
|
|
|
|
if is_mpath_device $disk1; then
|
|
|
|
delete_partitions
|
|
|
|
fi
|
2018-06-12 20:37:12 +03:00
|
|
|
|
|
|
|
rm -f $TEST_BASE_DIR/{err,out}
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Common function used to cleanup storage pools, file systems
|
|
|
|
# and containers.
|
|
|
|
#
|
|
|
|
function default_container_cleanup
|
|
|
|
{
|
|
|
|
if ! is_global_zone; then
|
|
|
|
reexport_pool
|
|
|
|
fi
|
|
|
|
|
|
|
|
ismounted $TESTPOOL/$TESTCTR/$TESTFS1
|
|
|
|
[[ $? -eq 0 ]] && \
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs unmount $TESTPOOL/$TESTCTR/$TESTFS1
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2018-03-07 01:54:57 +03:00
|
|
|
destroy_dataset "$TESTPOOL/$TESTCTR/$TESTFS1" "-R"
|
|
|
|
destroy_dataset "$TESTPOOL/$TESTCTR" "-Rf"
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
[[ -e $TESTDIR1 ]] && \
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must rm -rf $TESTDIR1 > /dev/null 2>&1
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
default_cleanup
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Common function used to cleanup snapshot of file system or volume. Default to
|
|
|
|
# delete the file system's snapshot
|
|
|
|
#
|
|
|
|
# $1 snapshot name
|
|
|
|
#
|
|
|
|
function destroy_snapshot
|
|
|
|
{
|
|
|
|
typeset snap=${1:-$TESTPOOL/$TESTFS@$TESTSNAP}
|
|
|
|
|
|
|
|
if ! snapexists $snap; then
|
2018-10-02 03:15:57 +03:00
|
|
|
log_fail "'$snap' does not exist."
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
#
|
|
|
|
# For the sake of the value which come from 'get_prop' is not equal
|
|
|
|
# to the really mountpoint when the snapshot is unmounted. So, firstly
|
|
|
|
# check and make sure this snapshot's been mounted in current system.
|
|
|
|
#
|
|
|
|
typeset mtpt=""
|
|
|
|
if ismounted $snap; then
|
|
|
|
mtpt=$(get_prop mountpoint $snap)
|
|
|
|
(($? != 0)) && \
|
|
|
|
log_fail "get_prop mountpoint $snap failed."
|
|
|
|
fi
|
|
|
|
|
2018-03-07 01:54:57 +03:00
|
|
|
destroy_dataset "$snap"
|
2015-07-02 01:23:09 +03:00
|
|
|
[[ $mtpt != "" && -d $mtpt ]] && \
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must rm -rf $mtpt
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Common function used to cleanup clone.
|
|
|
|
#
|
|
|
|
# $1 clone name
|
|
|
|
#
|
|
|
|
function destroy_clone
|
|
|
|
{
|
|
|
|
typeset clone=${1:-$TESTPOOL/$TESTCLONE}
|
|
|
|
|
|
|
|
if ! datasetexists $clone; then
|
|
|
|
log_fail "'$clone' does not existed."
|
|
|
|
fi
|
|
|
|
|
|
|
|
# With the same reason in destroy_snapshot
|
|
|
|
typeset mtpt=""
|
|
|
|
if ismounted $clone; then
|
|
|
|
mtpt=$(get_prop mountpoint $clone)
|
|
|
|
(($? != 0)) && \
|
|
|
|
log_fail "get_prop mountpoint $clone failed."
|
|
|
|
fi
|
|
|
|
|
2018-03-07 01:54:57 +03:00
|
|
|
destroy_dataset "$clone"
|
2015-07-02 01:23:09 +03:00
|
|
|
[[ $mtpt != "" && -d $mtpt ]] && \
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must rm -rf $mtpt
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
2017-01-27 01:42:15 +03:00
|
|
|
#
|
|
|
|
# Common function used to cleanup bookmark of file system or volume. Default
|
|
|
|
# to delete the file system's bookmark.
|
|
|
|
#
|
|
|
|
# $1 bookmark name
|
|
|
|
#
|
|
|
|
function destroy_bookmark
|
|
|
|
{
|
|
|
|
typeset bkmark=${1:-$TESTPOOL/$TESTFS#$TESTBKMARK}
|
|
|
|
|
|
|
|
if ! bkmarkexists $bkmark; then
|
|
|
|
log_fail "'$bkmarkp' does not existed."
|
|
|
|
fi
|
|
|
|
|
2018-03-07 01:54:57 +03:00
|
|
|
destroy_dataset "$bkmark"
|
2017-01-27 01:42:15 +03:00
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
# Return 0 if a snapshot exists; $? otherwise
|
|
|
|
#
|
|
|
|
# $1 - snapshot name
|
|
|
|
|
|
|
|
function snapexists
|
|
|
|
{
|
2017-04-06 03:18:22 +03:00
|
|
|
zfs list -H -t snapshot "$1" > /dev/null 2>&1
|
2015-07-02 01:23:09 +03:00
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
2017-01-27 01:42:15 +03:00
|
|
|
#
|
|
|
|
# Return 0 if a bookmark exists; $? otherwise
|
|
|
|
#
|
|
|
|
# $1 - bookmark name
|
|
|
|
#
|
|
|
|
function bkmarkexists
|
|
|
|
{
|
2017-04-06 03:18:22 +03:00
|
|
|
zfs list -H -t bookmark "$1" > /dev/null 2>&1
|
2017-01-27 01:42:15 +03:00
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
2019-08-12 20:02:34 +03:00
|
|
|
#
|
|
|
|
# Return 0 if a hold exists; $? otherwise
|
|
|
|
#
|
|
|
|
# $1 - hold tag
|
|
|
|
# $2 - snapshot name
|
|
|
|
#
|
|
|
|
function holdexists
|
|
|
|
{
|
|
|
|
zfs holds "$2" | awk '{ print $2 }' | grep "$1" > /dev/null 2>&1
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# Set a property to a certain value on a dataset.
|
|
|
|
# Sets a property of the dataset to the value as passed in.
|
|
|
|
# @param:
|
|
|
|
# $1 dataset who's property is being set
|
|
|
|
# $2 property to set
|
|
|
|
# $3 value to set property to
|
|
|
|
# @return:
|
|
|
|
# 0 if the property could be set.
|
|
|
|
# non-zero otherwise.
|
|
|
|
# @use: ZFS
|
|
|
|
#
|
|
|
|
function dataset_setprop
|
|
|
|
{
|
|
|
|
typeset fn=dataset_setprop
|
|
|
|
|
|
|
|
if (($# < 3)); then
|
|
|
|
log_note "$fn: Insufficient parameters (need 3, had $#)"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
typeset output=
|
2017-04-06 03:18:22 +03:00
|
|
|
output=$(zfs set $2=$3 $1 2>&1)
|
2015-07-02 01:23:09 +03:00
|
|
|
typeset rv=$?
|
|
|
|
if ((rv != 0)); then
|
|
|
|
log_note "Setting property on $1 failed."
|
|
|
|
log_note "property $2=$3"
|
|
|
|
log_note "Return Code: $rv"
|
|
|
|
log_note "Output: $output"
|
|
|
|
return $rv
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Assign suite defined dataset properties.
|
|
|
|
# This function is used to apply the suite's defined default set of
|
|
|
|
# properties to a dataset.
|
|
|
|
# @parameters: $1 dataset to use
|
|
|
|
# @uses: ZFS COMPRESSION_PROP CHECKSUM_PROP
|
|
|
|
# @returns:
|
|
|
|
# 0 if the dataset has been altered.
|
|
|
|
# 1 if no pool name was passed in.
|
|
|
|
# 2 if the dataset could not be found.
|
|
|
|
# 3 if the dataset could not have it's properties set.
|
|
|
|
#
|
|
|
|
function dataset_set_defaultproperties
|
|
|
|
{
|
|
|
|
typeset dataset="$1"
|
|
|
|
|
|
|
|
[[ -z $dataset ]] && return 1
|
|
|
|
|
|
|
|
typeset confset=
|
|
|
|
typeset -i found=0
|
2017-04-06 03:18:22 +03:00
|
|
|
for confset in $(zfs list); do
|
2015-07-02 01:23:09 +03:00
|
|
|
if [[ $dataset = $confset ]]; then
|
|
|
|
found=1
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
[[ $found -eq 0 ]] && return 2
|
|
|
|
if [[ -n $COMPRESSION_PROP ]]; then
|
|
|
|
dataset_setprop $dataset compression $COMPRESSION_PROP || \
|
|
|
|
return 3
|
|
|
|
log_note "Compression set to '$COMPRESSION_PROP' on $dataset"
|
|
|
|
fi
|
|
|
|
if [[ -n $CHECKSUM_PROP ]]; then
|
|
|
|
dataset_setprop $dataset checksum $CHECKSUM_PROP || \
|
|
|
|
return 3
|
|
|
|
log_note "Checksum set to '$CHECKSUM_PROP' on $dataset"
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Check a numeric assertion
|
|
|
|
# @parameter: $@ the assertion to check
|
|
|
|
# @output: big loud notice if assertion failed
|
|
|
|
# @use: log_fail
|
|
|
|
#
|
|
|
|
function assert
|
|
|
|
{
|
|
|
|
(($@)) || log_fail "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Function to format partition size of a disk
|
|
|
|
# Given a disk cxtxdx reduces all partitions
|
|
|
|
# to 0 size
|
|
|
|
#
|
|
|
|
function zero_partitions #<whole_disk_name>
|
|
|
|
{
|
|
|
|
typeset diskname=$1
|
|
|
|
typeset i
|
|
|
|
|
2020-01-29 22:24:18 +03:00
|
|
|
if is_freebsd; then
|
|
|
|
gpart destroy -F $diskname
|
|
|
|
elif is_linux; then
|
2018-03-08 04:03:33 +03:00
|
|
|
DSK=$DEV_DSKDIR/$diskname
|
|
|
|
DSK=$(echo $DSK | sed -e "s|//|/|g")
|
|
|
|
log_must parted $DSK -s -- mklabel gpt
|
|
|
|
blockdev --rereadpt $DSK 2>/dev/null
|
|
|
|
block_device_wait
|
2015-07-02 01:23:09 +03:00
|
|
|
else
|
|
|
|
for i in 0 1 3 4 5 6 7
|
|
|
|
do
|
2017-07-12 23:05:37 +03:00
|
|
|
log_must set_partition $i "" 0mb $diskname
|
2015-07-02 01:23:09 +03:00
|
|
|
done
|
|
|
|
fi
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
|
|
|
|
return 0
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Given a slice, size and disk, this function
|
|
|
|
# formats the slice to the specified size.
|
|
|
|
# Size should be specified with units as per
|
|
|
|
# the `format` command requirements eg. 100mb 3gb
|
|
|
|
#
|
2019-09-03 04:14:53 +03:00
|
|
|
# NOTE: This entire interface is problematic for the Linux parted utility
|
2015-07-02 01:23:09 +03:00
|
|
|
# which requires the end of the partition to be specified. It would be
|
|
|
|
# best to retire this interface and replace it with something more flexible.
|
|
|
|
# At the moment a best effort is made.
|
|
|
|
#
|
2019-06-06 02:13:57 +03:00
|
|
|
# arguments: <slice_num> <slice_start> <size_plus_units> <whole_disk_name>
|
|
|
|
function set_partition
|
2015-07-02 01:23:09 +03:00
|
|
|
{
|
|
|
|
typeset -i slicenum=$1
|
|
|
|
typeset start=$2
|
|
|
|
typeset size=$3
|
2020-01-31 19:51:23 +03:00
|
|
|
typeset disk=${4#$DEV_DSKDIR/}
|
|
|
|
disk=${disk#$DEV_RDSKDIR/}
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
case "$(uname)" in
|
|
|
|
Linux)
|
2018-03-08 04:03:33 +03:00
|
|
|
if [[ -z $size || -z $disk ]]; then
|
|
|
|
log_fail "The size or disk name is unspecified."
|
|
|
|
fi
|
2020-01-31 19:51:23 +03:00
|
|
|
disk=$DEV_DSKDIR/$disk
|
2015-07-02 01:23:09 +03:00
|
|
|
typeset size_mb=${size%%[mMgG]}
|
|
|
|
|
|
|
|
size_mb=${size_mb%%[mMgG][bB]}
|
|
|
|
if [[ ${size:1:1} == 'g' ]]; then
|
|
|
|
((size_mb = size_mb * 1024))
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Create GPT partition table when setting slice 0 or
|
|
|
|
# when the device doesn't already contain a GPT label.
|
2019-06-06 02:13:57 +03:00
|
|
|
parted $disk -s -- print 1 >/dev/null
|
2015-07-02 01:23:09 +03:00
|
|
|
typeset ret_val=$?
|
|
|
|
if [[ $slicenum -eq 0 || $ret_val -ne 0 ]]; then
|
2019-06-06 02:13:57 +03:00
|
|
|
parted $disk -s -- mklabel gpt
|
2017-07-12 23:05:37 +03:00
|
|
|
if [[ $? -ne 0 ]]; then
|
|
|
|
log_note "Failed to create GPT partition table on $disk"
|
|
|
|
return 1
|
|
|
|
fi
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
# When no start is given align on the first cylinder.
|
|
|
|
if [[ -z "$start" ]]; then
|
|
|
|
start=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Determine the cylinder size for the device and using
|
|
|
|
# that calculate the end offset in cylinders.
|
|
|
|
typeset -i cly_size_kb=0
|
2019-06-06 02:13:57 +03:00
|
|
|
cly_size_kb=$(parted -m $disk -s -- \
|
2017-04-06 03:18:22 +03:00
|
|
|
unit cyl print | head -3 | tail -1 | \
|
|
|
|
awk -F '[:k.]' '{print $4}')
|
2015-07-02 01:23:09 +03:00
|
|
|
((end = (size_mb * 1024 / cly_size_kb) + start))
|
|
|
|
|
2019-06-06 02:13:57 +03:00
|
|
|
parted $disk -s -- \
|
2015-07-02 01:23:09 +03:00
|
|
|
mkpart part$slicenum ${start}cyl ${end}cyl
|
2019-06-06 02:13:57 +03:00
|
|
|
typeset ret_val=$?
|
|
|
|
if [[ $ret_val -ne 0 ]]; then
|
2017-07-12 23:05:37 +03:00
|
|
|
log_note "Failed to create partition $slicenum on $disk"
|
|
|
|
return 1
|
|
|
|
fi
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2019-06-06 02:13:57 +03:00
|
|
|
blockdev --rereadpt $disk 2>/dev/null
|
|
|
|
block_device_wait $disk
|
2019-12-18 23:29:43 +03:00
|
|
|
;;
|
|
|
|
FreeBSD)
|
|
|
|
if [[ -z $size || -z $disk ]]; then
|
|
|
|
log_fail "The size or disk name is unspecified."
|
|
|
|
fi
|
2020-01-31 19:51:23 +03:00
|
|
|
disk=$DEV_DSKDIR/$disk
|
2019-12-18 23:29:43 +03:00
|
|
|
|
|
|
|
if [[ $slicenum -eq 0 ]] || ! gpart show $disk >/dev/null 2>&1; then
|
|
|
|
gpart destroy -F $disk >/dev/null 2>&1
|
|
|
|
gpart create -s GPT $disk
|
|
|
|
if [[ $? -ne 0 ]]; then
|
|
|
|
log_note "Failed to create GPT partition table on $disk"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
typeset index=$((slicenum + 1))
|
|
|
|
|
|
|
|
if [[ -n $start ]]; then
|
|
|
|
start="-b $start"
|
|
|
|
fi
|
|
|
|
gpart add -t freebsd-zfs $start -s $size -i $index $disk
|
|
|
|
if [[ $ret_val -ne 0 ]]; then
|
|
|
|
log_note "Failed to create partition $slicenum on $disk"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
block_device_wait $disk
|
|
|
|
;;
|
|
|
|
*)
|
2018-03-08 04:03:33 +03:00
|
|
|
if [[ -z $slicenum || -z $size || -z $disk ]]; then
|
|
|
|
log_fail "The slice, size or disk name is unspecified."
|
|
|
|
fi
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
typeset format_file=/var/tmp/format_in.$$
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "partition" >$format_file
|
|
|
|
echo "$slicenum" >> $format_file
|
|
|
|
echo "" >> $format_file
|
|
|
|
echo "" >> $format_file
|
|
|
|
echo "$start" >> $format_file
|
|
|
|
echo "$size" >> $format_file
|
|
|
|
echo "label" >> $format_file
|
|
|
|
echo "" >> $format_file
|
|
|
|
echo "q" >> $format_file
|
|
|
|
echo "q" >> $format_file
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
format -e -s -d $disk -f $format_file
|
2019-06-06 02:13:57 +03:00
|
|
|
typeset ret_val=$?
|
|
|
|
rm -f $format_file
|
2019-12-18 23:29:43 +03:00
|
|
|
;;
|
|
|
|
esac
|
2017-04-06 03:18:22 +03:00
|
|
|
|
2017-07-12 23:05:37 +03:00
|
|
|
if [[ $ret_val -ne 0 ]]; then
|
|
|
|
log_note "Unable to format $disk slice $slicenum to $size"
|
|
|
|
return 1
|
|
|
|
fi
|
2015-07-02 01:23:09 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2016-07-22 18:07:04 +03:00
|
|
|
#
|
|
|
|
# Delete all partitions on all disks - this is specifically for the use of multipath
|
|
|
|
# devices which currently can only be used in the test suite as raw/un-partitioned
|
|
|
|
# devices (ie a zpool cannot be created on a whole mpath device that has partitions)
|
|
|
|
#
|
|
|
|
function delete_partitions
|
|
|
|
{
|
2019-08-29 23:11:29 +03:00
|
|
|
typeset disk
|
2016-07-22 18:07:04 +03:00
|
|
|
|
|
|
|
if [[ -z $DISKSARRAY ]]; then
|
|
|
|
DISKSARRAY=$DISKS
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_linux; then
|
2019-08-29 23:11:29 +03:00
|
|
|
typeset -i part
|
|
|
|
for disk in $DISKSARRAY; do
|
|
|
|
for (( part = 1; part < MAX_PARTITIONS; part++ )); do
|
|
|
|
typeset partition=${disk}${SLICE_PREFIX}${part}
|
|
|
|
parted $DEV_DSKDIR/$disk -s rm $part > /dev/null 2>&1
|
|
|
|
if lsblk | grep -qF ${partition}; then
|
|
|
|
log_fail "Partition ${partition} not deleted"
|
2016-07-22 18:07:04 +03:00
|
|
|
else
|
2019-08-29 23:11:29 +03:00
|
|
|
log_note "Partition ${partition} deleted"
|
2016-07-22 18:07:04 +03:00
|
|
|
fi
|
|
|
|
done
|
2019-08-29 23:11:29 +03:00
|
|
|
done
|
2019-12-18 23:29:43 +03:00
|
|
|
elif is_freebsd; then
|
|
|
|
for disk in $DISKSARRAY; do
|
|
|
|
if gpart destroy -F $disk; then
|
|
|
|
log_note "Partitions for ${disk} deleted"
|
|
|
|
else
|
|
|
|
log_fail "Partitions for ${disk} not deleted"
|
|
|
|
fi
|
|
|
|
done
|
2016-07-22 18:07:04 +03:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# Get the end cyl of the given slice
|
|
|
|
#
|
|
|
|
function get_endslice #<disk> <slice>
|
|
|
|
{
|
|
|
|
typeset disk=$1
|
|
|
|
typeset slice=$2
|
|
|
|
if [[ -z $disk || -z $slice ]] ; then
|
|
|
|
log_fail "The disk name or slice number is unspecified."
|
|
|
|
fi
|
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
case "$(uname)" in
|
|
|
|
Linux)
|
2017-04-06 03:18:22 +03:00
|
|
|
endcyl=$(parted -s $DEV_DSKDIR/$disk -- unit cyl print | \
|
|
|
|
grep "part${slice}" | \
|
|
|
|
awk '{print $3}' | \
|
|
|
|
sed 's,cyl,,')
|
2015-07-02 01:23:09 +03:00
|
|
|
((endcyl = (endcyl + 1)))
|
2019-12-18 23:29:43 +03:00
|
|
|
;;
|
|
|
|
FreeBSD)
|
|
|
|
disk=${disk#/dev/zvol/}
|
|
|
|
disk=${disk%p*}
|
|
|
|
slice=$((slice + 1))
|
|
|
|
endcyl=$(gpart show $disk | \
|
|
|
|
awk -v slice=$slice '$3 == slice { print $1 + $2 }')
|
|
|
|
;;
|
|
|
|
*)
|
2015-07-02 01:23:09 +03:00
|
|
|
disk=${disk#/dev/dsk/}
|
|
|
|
disk=${disk#/dev/rdsk/}
|
|
|
|
disk=${disk%s*}
|
|
|
|
|
|
|
|
typeset -i ratio=0
|
2017-04-06 03:18:22 +03:00
|
|
|
ratio=$(prtvtoc /dev/rdsk/${disk}s2 | \
|
|
|
|
grep "sectors\/cylinder" | \
|
|
|
|
awk '{print $2}')
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
if ((ratio == 0)); then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
typeset -i endcyl=$(prtvtoc -h /dev/rdsk/${disk}s2 |
|
|
|
|
nawk -v token="$slice" '{if ($1==token) print $6}')
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
((endcyl = (endcyl + 1) / ratio))
|
2019-12-18 23:29:43 +03:00
|
|
|
;;
|
|
|
|
esac
|
2018-12-14 21:06:49 +03:00
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
echo $endcyl
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Given a size,disk and total slice number, this function formats the
|
|
|
|
# disk slices from 0 to the total slice number with the same specified
|
|
|
|
# size.
|
|
|
|
#
|
|
|
|
function partition_disk #<slice_size> <whole_disk_name> <total_slices>
|
|
|
|
{
|
|
|
|
typeset -i i=0
|
|
|
|
typeset slice_size=$1
|
|
|
|
typeset disk_name=$2
|
|
|
|
typeset total_slices=$3
|
|
|
|
typeset cyl
|
|
|
|
|
|
|
|
zero_partitions $disk_name
|
|
|
|
while ((i < $total_slices)); do
|
|
|
|
if ! is_linux; then
|
|
|
|
if ((i == 2)); then
|
|
|
|
((i = i + 1))
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
fi
|
2017-07-12 23:05:37 +03:00
|
|
|
log_must set_partition $i "$cyl" $slice_size $disk_name
|
2015-07-02 01:23:09 +03:00
|
|
|
cyl=$(get_endslice $disk_name $i)
|
|
|
|
((i = i+1))
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# This function continues to write to a filenum number of files into dirnum
|
2017-04-06 03:18:22 +03:00
|
|
|
# number of directories until either file_write returns an error or the
|
2015-07-02 01:23:09 +03:00
|
|
|
# maximum number of files per directory have been written.
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
# fill_fs [destdir] [dirnum] [filenum] [bytes] [num_writes] [data]
|
|
|
|
#
|
|
|
|
# Return value: 0 on success
|
|
|
|
# non 0 on error
|
|
|
|
#
|
|
|
|
# Where :
|
|
|
|
# destdir: is the directory where everything is to be created under
|
|
|
|
# dirnum: the maximum number of subdirectories to use, -1 no limit
|
|
|
|
# filenum: the maximum number of files per subdirectory
|
|
|
|
# bytes: number of bytes to write
|
2019-09-03 04:14:53 +03:00
|
|
|
# num_writes: number of types to write out bytes
|
2017-01-03 20:31:18 +03:00
|
|
|
# data: the data that will be written
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# E.g.
|
|
|
|
# file_fs /testdir 20 25 1024 256 0
|
|
|
|
#
|
|
|
|
# Note: bytes * num_writes equals the size of the testfile
|
|
|
|
#
|
|
|
|
function fill_fs # destdir dirnum filenum bytes num_writes data
|
|
|
|
{
|
|
|
|
typeset destdir=${1:-$TESTDIR}
|
|
|
|
typeset -i dirnum=${2:-50}
|
|
|
|
typeset -i filenum=${3:-50}
|
|
|
|
typeset -i bytes=${4:-8192}
|
|
|
|
typeset -i num_writes=${5:-10240}
|
2019-03-29 19:13:20 +03:00
|
|
|
typeset data=${6:-0}
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
typeset -i odirnum=1
|
|
|
|
typeset -i idirnum=0
|
|
|
|
typeset -i fn=0
|
|
|
|
typeset -i retval=0
|
|
|
|
|
2019-03-29 19:13:20 +03:00
|
|
|
mkdir -p $destdir/$idirnum
|
2015-07-02 01:23:09 +03:00
|
|
|
while (($odirnum > 0)); do
|
|
|
|
if ((dirnum >= 0 && idirnum >= dirnum)); then
|
|
|
|
odirnum=0
|
|
|
|
break
|
|
|
|
fi
|
2017-04-06 03:18:22 +03:00
|
|
|
file_write -o create -f $destdir/$idirnum/$TESTFILE.$fn \
|
2015-07-02 01:23:09 +03:00
|
|
|
-b $bytes -c $num_writes -d $data
|
|
|
|
retval=$?
|
|
|
|
if (($retval != 0)); then
|
|
|
|
odirnum=0
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
if (($fn >= $filenum)); then
|
|
|
|
fn=0
|
|
|
|
((idirnum = idirnum + 1))
|
2019-03-29 19:13:20 +03:00
|
|
|
mkdir -p $destdir/$idirnum
|
2015-07-02 01:23:09 +03:00
|
|
|
else
|
|
|
|
((fn = fn + 1))
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
return $retval
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Simple function to get the specified property. If unable to
|
|
|
|
# get the property then exits.
|
|
|
|
#
|
|
|
|
# Note property is in 'parsable' format (-p)
|
|
|
|
#
|
|
|
|
function get_prop # property dataset
|
|
|
|
{
|
|
|
|
typeset prop_val
|
|
|
|
typeset prop=$1
|
|
|
|
typeset dataset=$2
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
prop_val=$(zfs get -pH -o value $prop $dataset 2>/dev/null)
|
2015-07-02 01:23:09 +03:00
|
|
|
if [[ $? -ne 0 ]]; then
|
|
|
|
log_note "Unable to get $prop property for dataset " \
|
|
|
|
"$dataset"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "$prop_val"
|
2015-07-02 01:23:09 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Simple function to get the specified property of pool. If unable to
|
|
|
|
# get the property then exits.
|
|
|
|
#
|
2017-02-14 02:30:22 +03:00
|
|
|
# Note property is in 'parsable' format (-p)
|
|
|
|
#
|
2015-07-02 01:23:09 +03:00
|
|
|
function get_pool_prop # property pool
|
|
|
|
{
|
|
|
|
typeset prop_val
|
|
|
|
typeset prop=$1
|
|
|
|
typeset pool=$2
|
|
|
|
|
|
|
|
if poolexists $pool ; then
|
2017-04-06 03:18:22 +03:00
|
|
|
prop_val=$(zpool get -pH $prop $pool 2>/dev/null | tail -1 | \
|
|
|
|
awk '{print $3}')
|
2015-07-02 01:23:09 +03:00
|
|
|
if [[ $? -ne 0 ]]; then
|
|
|
|
log_note "Unable to get $prop property for pool " \
|
|
|
|
"$pool"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
log_note "Pool $pool not exists."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "$prop_val"
|
2015-07-02 01:23:09 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# Return 0 if a pool exists; $? otherwise
|
|
|
|
#
|
|
|
|
# $1 - pool name
|
|
|
|
|
|
|
|
function poolexists
|
|
|
|
{
|
|
|
|
typeset pool=$1
|
|
|
|
|
|
|
|
if [[ -z $pool ]]; then
|
|
|
|
log_note "No pool name given."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
zpool get name "$pool" > /dev/null 2>&1
|
2015-07-02 01:23:09 +03:00
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
# Return 0 if all the specified datasets exist; $? otherwise
|
|
|
|
#
|
|
|
|
# $1-n dataset name
|
|
|
|
function datasetexists
|
|
|
|
{
|
|
|
|
if (($# == 0)); then
|
|
|
|
log_note "No dataset name given."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
while (($# > 0)); do
|
2017-04-06 03:18:22 +03:00
|
|
|
zfs get name $1 > /dev/null 2>&1 || \
|
2015-07-02 01:23:09 +03:00
|
|
|
return $?
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# return 0 if none of the specified datasets exists, otherwise return 1.
|
|
|
|
#
|
|
|
|
# $1-n dataset name
|
|
|
|
function datasetnonexists
|
|
|
|
{
|
|
|
|
if (($# == 0)); then
|
|
|
|
log_note "No dataset name given."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
while (($# > 0)); do
|
2017-04-06 03:18:22 +03:00
|
|
|
zfs list -H -t filesystem,snapshot,volume $1 > /dev/null 2>&1 \
|
2015-07-02 01:23:09 +03:00
|
|
|
&& return 1
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2020-02-22 02:59:20 +03:00
|
|
|
function is_shared_freebsd
|
2015-07-02 01:23:09 +03:00
|
|
|
{
|
|
|
|
typeset fs=$1
|
|
|
|
|
2020-02-26 03:23:27 +03:00
|
|
|
pgrep -q mountd && showmount -E | grep -qx $fs
|
2020-02-22 02:59:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function is_shared_illumos
|
|
|
|
{
|
|
|
|
typeset fs=$1
|
|
|
|
typeset mtpt
|
2016-11-29 22:22:38 +03:00
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
for mtpt in `share | awk '{print $2}'` ; do
|
2015-07-02 01:23:09 +03:00
|
|
|
if [[ $mtpt == $fs ]] ; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
typeset stat=$(svcs -H -o STA nfs/server:default)
|
2015-07-02 01:23:09 +03:00
|
|
|
if [[ $stat != "ON" ]]; then
|
|
|
|
log_note "Current nfs/server status: $stat"
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2020-02-22 02:59:20 +03:00
|
|
|
function is_shared_linux
|
|
|
|
{
|
|
|
|
typeset fs=$1
|
|
|
|
typeset mtpt
|
|
|
|
|
|
|
|
for mtpt in `share | awk '{print $1}'` ; do
|
|
|
|
if [[ $mtpt == $fs ]] ; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2018-09-21 20:54:49 +03:00
|
|
|
#
|
|
|
|
# Given a mountpoint, or a dataset name, determine if it is shared via NFS.
|
|
|
|
#
|
|
|
|
# Returns 0 if shared, 1 otherwise.
|
|
|
|
#
|
|
|
|
function is_shared
|
|
|
|
{
|
|
|
|
typeset fs=$1
|
|
|
|
typeset mtpt
|
|
|
|
|
|
|
|
if [[ $fs != "/"* ]] ; then
|
|
|
|
if datasetnonexists "$fs" ; then
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
mtpt=$(get_prop mountpoint "$fs")
|
|
|
|
case $mtpt in
|
|
|
|
none|legacy|-) return 1
|
|
|
|
;;
|
|
|
|
*) fs=$mtpt
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2020-02-22 02:59:20 +03:00
|
|
|
case $(uname) in
|
|
|
|
FreeBSD) is_shared_freebsd "$fs" ;;
|
|
|
|
Linux) is_shared_linux "$fs" ;;
|
|
|
|
*) is_shared_illumos "$fs" ;;
|
|
|
|
esac
|
2018-09-21 20:54:49 +03:00
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
2016-11-29 22:22:38 +03:00
|
|
|
# Given a dataset name determine if it is shared via SMB.
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
2016-11-29 22:22:38 +03:00
|
|
|
# Returns 0 if shared, 1 otherwise.
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
2016-11-29 22:22:38 +03:00
|
|
|
function is_shared_smb
|
2015-07-02 01:23:09 +03:00
|
|
|
{
|
|
|
|
typeset fs=$1
|
2016-11-29 22:22:38 +03:00
|
|
|
typeset mtpt
|
|
|
|
|
|
|
|
if datasetnonexists "$fs" ; then
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
fs=$(echo $fs | sed 's@/@_@g')
|
|
|
|
fi
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
if is_linux; then
|
2017-04-06 03:18:22 +03:00
|
|
|
for mtpt in `net usershare list | awk '{print $1}'` ; do
|
2016-11-29 22:22:38 +03:00
|
|
|
if [[ $mtpt == $fs ]] ; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
return 1
|
|
|
|
else
|
2015-07-02 01:23:09 +03:00
|
|
|
log_unsupported "Currently unsupported by the test framework"
|
|
|
|
return 1
|
|
|
|
fi
|
2016-11-29 22:22:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Given a mountpoint, determine if it is not shared via NFS.
|
|
|
|
#
|
|
|
|
# Returns 0 if not shared, 1 otherwise.
|
|
|
|
#
|
|
|
|
function not_shared
|
|
|
|
{
|
|
|
|
typeset fs=$1
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
is_shared $fs
|
|
|
|
if (($? == 0)); then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
2016-11-29 22:22:38 +03:00
|
|
|
# Given a dataset determine if it is not shared via SMB.
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
2016-11-29 22:22:38 +03:00
|
|
|
# Returns 0 if not shared, 1 otherwise.
|
|
|
|
#
|
|
|
|
function not_shared_smb
|
2015-07-02 01:23:09 +03:00
|
|
|
{
|
|
|
|
typeset fs=$1
|
|
|
|
|
2016-11-29 22:22:38 +03:00
|
|
|
is_shared_smb $fs
|
|
|
|
if (($? == 0)); then
|
2015-07-02 01:23:09 +03:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2016-11-29 22:22:38 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Helper function to unshare a mountpoint.
|
|
|
|
#
|
|
|
|
function unshare_fs #fs
|
|
|
|
{
|
|
|
|
typeset fs=$1
|
|
|
|
|
|
|
|
is_shared $fs || is_shared_smb $fs
|
2015-07-02 01:23:09 +03:00
|
|
|
if (($? == 0)); then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs unshare $fs
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2016-11-29 22:22:38 +03:00
|
|
|
#
|
|
|
|
# Helper function to share a NFS mountpoint.
|
|
|
|
#
|
|
|
|
function share_nfs #fs
|
|
|
|
{
|
|
|
|
typeset fs=$1
|
|
|
|
|
|
|
|
if is_linux; then
|
|
|
|
is_shared $fs
|
|
|
|
if (($? != 0)); then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must share "*:$fs"
|
2016-11-29 22:22:38 +03:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
is_shared $fs
|
|
|
|
if (($? != 0)); then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must share -F nfs $fs
|
2016-11-29 22:22:38 +03:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Helper function to unshare a NFS mountpoint.
|
|
|
|
#
|
|
|
|
function unshare_nfs #fs
|
|
|
|
{
|
|
|
|
typeset fs=$1
|
|
|
|
|
|
|
|
if is_linux; then
|
|
|
|
is_shared $fs
|
|
|
|
if (($? == 0)); then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must unshare -u "*:$fs"
|
2016-11-29 22:22:38 +03:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
is_shared $fs
|
|
|
|
if (($? == 0)); then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must unshare -F nfs $fs
|
2016-11-29 22:22:38 +03:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Helper function to show NFS shares.
|
|
|
|
#
|
|
|
|
function showshares_nfs
|
|
|
|
{
|
|
|
|
if is_linux; then
|
2017-04-06 03:18:22 +03:00
|
|
|
share -v
|
2016-11-29 22:22:38 +03:00
|
|
|
else
|
2017-04-06 03:18:22 +03:00
|
|
|
share -F nfs
|
2016-11-29 22:22:38 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Helper function to show SMB shares.
|
|
|
|
#
|
|
|
|
function showshares_smb
|
|
|
|
{
|
|
|
|
if is_linux; then
|
2017-04-06 03:18:22 +03:00
|
|
|
net usershare list
|
2016-11-29 22:22:38 +03:00
|
|
|
else
|
2017-04-06 03:18:22 +03:00
|
|
|
share -F smb
|
2016-11-29 22:22:38 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# Check NFS server status and trigger it online.
|
|
|
|
#
|
|
|
|
function setup_nfs_server
|
|
|
|
{
|
|
|
|
# Cannot share directory in non-global zone.
|
|
|
|
#
|
|
|
|
if ! is_global_zone; then
|
|
|
|
log_note "Cannot trigger NFS server by sharing in LZ."
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
if is_linux || is_freebsd; then
|
2018-02-24 21:07:12 +03:00
|
|
|
#
|
|
|
|
# Re-synchronize /var/lib/nfs/etab with /etc/exports and
|
|
|
|
# /etc/exports.d./* to provide a clean test environment.
|
|
|
|
#
|
|
|
|
log_must share -r
|
|
|
|
|
|
|
|
log_note "NFS server must be started prior to running ZTS."
|
2015-07-02 01:23:09 +03:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
typeset nfs_fmri="svc:/network/nfs/server:default"
|
2017-04-06 03:18:22 +03:00
|
|
|
if [[ $(svcs -Ho STA $nfs_fmri) != "ON" ]]; then
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# Only really sharing operation can enable NFS server
|
|
|
|
# to online permanently.
|
|
|
|
#
|
|
|
|
typeset dummy=/tmp/dummy
|
|
|
|
|
|
|
|
if [[ -d $dummy ]]; then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must rm -rf $dummy
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must mkdir $dummy
|
|
|
|
log_must share $dummy
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Waiting for fmri's status to be the final status.
|
|
|
|
# Otherwise, in transition, an asterisk (*) is appended for
|
|
|
|
# instances, unshare will reverse status to 'DIS' again.
|
|
|
|
#
|
|
|
|
# Waiting for 1's at least.
|
|
|
|
#
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must sleep 1
|
2015-07-02 01:23:09 +03:00
|
|
|
timeout=10
|
2017-04-06 03:18:22 +03:00
|
|
|
while [[ timeout -ne 0 && $(svcs -Ho STA $nfs_fmri) == *'*' ]]
|
2015-07-02 01:23:09 +03:00
|
|
|
do
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must sleep 1
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
((timeout -= 1))
|
|
|
|
done
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must unshare $dummy
|
|
|
|
log_must rm -rf $dummy
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
log_note "Current NFS status: '$(svcs -Ho STA,FMRI $nfs_fmri)'"
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# To verify whether calling process is in global zone
|
|
|
|
#
|
|
|
|
# Return 0 if in global zone, 1 in non-global zone
|
|
|
|
#
|
|
|
|
function is_global_zone
|
|
|
|
{
|
2019-12-18 23:29:43 +03:00
|
|
|
if is_linux || is_freebsd; then
|
2017-04-06 03:18:22 +03:00
|
|
|
return 0
|
|
|
|
else
|
|
|
|
typeset cur_zone=$(zonename 2>/dev/null)
|
|
|
|
if [[ $cur_zone != "global" ]]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
return 0
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Verify whether test is permitted to run from
|
|
|
|
# global zone, local zone, or both
|
|
|
|
#
|
|
|
|
# $1 zone limit, could be "global", "local", or "both"(no limit)
|
|
|
|
#
|
|
|
|
# Return 0 if permitted, otherwise exit with log_unsupported
|
|
|
|
#
|
|
|
|
function verify_runnable # zone limit
|
|
|
|
{
|
|
|
|
typeset limit=$1
|
|
|
|
|
|
|
|
[[ -z $limit ]] && return 0
|
|
|
|
|
|
|
|
if is_global_zone ; then
|
|
|
|
case $limit in
|
|
|
|
global|both)
|
|
|
|
;;
|
|
|
|
local) log_unsupported "Test is unable to run from "\
|
|
|
|
"global zone."
|
|
|
|
;;
|
|
|
|
*) log_note "Warning: unknown limit $limit - " \
|
|
|
|
"use both."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
case $limit in
|
|
|
|
local|both)
|
|
|
|
;;
|
|
|
|
global) log_unsupported "Test is unable to run from "\
|
|
|
|
"local zone."
|
|
|
|
;;
|
|
|
|
*) log_note "Warning: unknown limit $limit - " \
|
|
|
|
"use both."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
reexport_pool
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# Return 0 if create successfully or the pool exists; $? otherwise
|
|
|
|
# Note: In local zones, this function should return 0 silently.
|
|
|
|
#
|
|
|
|
# $1 - pool name
|
|
|
|
# $2-n - [keyword] devs_list
|
|
|
|
|
|
|
|
function create_pool #pool devs_list
|
|
|
|
{
|
|
|
|
typeset pool=${1%%/*}
|
|
|
|
|
|
|
|
shift
|
|
|
|
|
|
|
|
if [[ -z $pool ]]; then
|
|
|
|
log_note "Missing pool name."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if poolexists $pool ; then
|
|
|
|
destroy_pool $pool
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_global_zone ; then
|
2017-04-06 03:18:22 +03:00
|
|
|
[[ -d /$pool ]] && rm -rf /$pool
|
|
|
|
log_must zpool create -f $pool $@
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# Return 0 if destroy successfully or the pool exists; $? otherwise
|
|
|
|
# Note: In local zones, this function should return 0 silently.
|
|
|
|
#
|
|
|
|
# $1 - pool name
|
|
|
|
# Destroy pool with the given parameters.
|
|
|
|
|
|
|
|
function destroy_pool #pool
|
|
|
|
{
|
|
|
|
typeset pool=${1%%/*}
|
|
|
|
typeset mtpt
|
|
|
|
|
|
|
|
if [[ -z $pool ]]; then
|
|
|
|
log_note "No pool name given."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_global_zone ; then
|
|
|
|
if poolexists "$pool" ; then
|
|
|
|
mtpt=$(get_prop mountpoint "$pool")
|
|
|
|
|
2017-06-12 19:45:32 +03:00
|
|
|
# At times, syseventd/udev activity can cause attempts
|
|
|
|
# to destroy a pool to fail with EBUSY. We retry a few
|
2015-07-02 01:23:09 +03:00
|
|
|
# times allowing failures before requiring the destroy
|
|
|
|
# to succeed.
|
2017-06-12 19:45:32 +03:00
|
|
|
log_must_busy zpool destroy -f $pool
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
[[ -d $mtpt ]] && \
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must rm -rf $mtpt
|
2015-07-02 01:23:09 +03:00
|
|
|
else
|
|
|
|
log_note "Pool does not exist. ($pool)"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-04-10 23:29:55 +03:00
|
|
|
# Return 0 if created successfully; $? otherwise
|
|
|
|
#
|
|
|
|
# $1 - dataset name
|
|
|
|
# $2-n - dataset options
|
|
|
|
|
|
|
|
function create_dataset #dataset dataset_options
|
|
|
|
{
|
|
|
|
typeset dataset=$1
|
|
|
|
|
|
|
|
shift
|
|
|
|
|
|
|
|
if [[ -z $dataset ]]; then
|
|
|
|
log_note "Missing dataset name."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if datasetexists $dataset ; then
|
|
|
|
destroy_dataset $dataset
|
|
|
|
fi
|
|
|
|
|
|
|
|
log_must zfs create $@ $dataset
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-03-07 01:54:57 +03:00
|
|
|
# Return 0 if destroy successfully or the dataset exists; $? otherwise
|
|
|
|
# Note: In local zones, this function should return 0 silently.
|
|
|
|
#
|
|
|
|
# $1 - dataset name
|
|
|
|
# $2 - custom arguments for zfs destroy
|
|
|
|
# Destroy dataset with the given parameters.
|
|
|
|
|
|
|
|
function destroy_dataset #dataset #args
|
|
|
|
{
|
|
|
|
typeset dataset=$1
|
|
|
|
typeset mtpt
|
|
|
|
typeset args=${2:-""}
|
|
|
|
|
|
|
|
if [[ -z $dataset ]]; then
|
|
|
|
log_note "No dataset name given."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_global_zone ; then
|
|
|
|
if datasetexists "$dataset" ; then
|
|
|
|
mtpt=$(get_prop mountpoint "$dataset")
|
|
|
|
log_must_busy zfs destroy $args $dataset
|
|
|
|
|
|
|
|
[[ -d $mtpt ]] && \
|
|
|
|
log_must rm -rf $mtpt
|
|
|
|
else
|
|
|
|
log_note "Dataset does not exist. ($dataset)"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# Firstly, create a pool with 5 datasets. Then, create a single zone and
|
|
|
|
# export the 5 datasets to it. In addition, we also add a ZFS filesystem
|
|
|
|
# and a zvol device to the zone.
|
|
|
|
#
|
|
|
|
# $1 zone name
|
|
|
|
# $2 zone root directory prefix
|
|
|
|
# $3 zone ip
|
|
|
|
#
|
|
|
|
function zfs_zones_setup #zone_name zone_root zone_ip
|
|
|
|
{
|
|
|
|
typeset zone_name=${1:-$(hostname)-z}
|
|
|
|
typeset zone_root=${2:-"/zone_root"}
|
|
|
|
typeset zone_ip=${3:-"10.1.1.10"}
|
|
|
|
typeset prefix_ctr=$ZONE_CTR
|
|
|
|
typeset pool_name=$ZONE_POOL
|
|
|
|
typeset -i cntctr=5
|
|
|
|
typeset -i i=0
|
|
|
|
|
|
|
|
# Create pool and 5 container within it
|
|
|
|
#
|
2017-04-06 03:18:22 +03:00
|
|
|
[[ -d /$pool_name ]] && rm -rf /$pool_name
|
|
|
|
log_must zpool create -f $pool_name $DISKS
|
2015-07-02 01:23:09 +03:00
|
|
|
while ((i < cntctr)); do
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs create $pool_name/$prefix_ctr$i
|
2015-07-02 01:23:09 +03:00
|
|
|
((i += 1))
|
|
|
|
done
|
|
|
|
|
|
|
|
# create a zvol
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs create -V 1g $pool_name/zone_zvol
|
2015-07-02 01:23:09 +03:00
|
|
|
block_device_wait
|
|
|
|
|
|
|
|
#
|
|
|
|
# If current system support slog, add slog device for pool
|
|
|
|
#
|
|
|
|
if verify_slog_support ; then
|
2017-09-25 20:32:34 +03:00
|
|
|
typeset sdevs="$TEST_BASE_DIR/sdev1 $TEST_BASE_DIR/sdev2"
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must mkfile $MINVDEVSIZE $sdevs
|
|
|
|
log_must zpool add $pool_name log mirror $sdevs
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
# this isn't supported just yet.
|
|
|
|
# Create a filesystem. In order to add this to
|
|
|
|
# the zone, it must have it's mountpoint set to 'legacy'
|
2017-04-06 03:18:22 +03:00
|
|
|
# log_must zfs create $pool_name/zfs_filesystem
|
|
|
|
# log_must zfs set mountpoint=legacy $pool_name/zfs_filesystem
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
[[ -d $zone_root ]] && \
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must rm -rf $zone_root/$zone_name
|
2015-07-02 01:23:09 +03:00
|
|
|
[[ ! -d $zone_root ]] && \
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must mkdir -p -m 0700 $zone_root/$zone_name
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
# Create zone configure file and configure the zone
|
|
|
|
#
|
|
|
|
typeset zone_conf=/tmp/zone_conf.$$
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "create" > $zone_conf
|
|
|
|
echo "set zonepath=$zone_root/$zone_name" >> $zone_conf
|
|
|
|
echo "set autoboot=true" >> $zone_conf
|
2015-07-02 01:23:09 +03:00
|
|
|
i=0
|
|
|
|
while ((i < cntctr)); do
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "add dataset" >> $zone_conf
|
|
|
|
echo "set name=$pool_name/$prefix_ctr$i" >> \
|
2015-07-02 01:23:09 +03:00
|
|
|
$zone_conf
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "end" >> $zone_conf
|
2015-07-02 01:23:09 +03:00
|
|
|
((i += 1))
|
|
|
|
done
|
|
|
|
|
|
|
|
# add our zvol to the zone
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "add device" >> $zone_conf
|
|
|
|
echo "set match=/dev/zvol/dsk/$pool_name/zone_zvol" >> $zone_conf
|
|
|
|
echo "end" >> $zone_conf
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
# add a corresponding zvol rdsk to the zone
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "add device" >> $zone_conf
|
|
|
|
echo "set match=$ZVOL_RDEVDIR/$pool_name/zone_zvol" >> $zone_conf
|
|
|
|
echo "end" >> $zone_conf
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
# once it's supported, we'll add our filesystem to the zone
|
2017-04-06 03:18:22 +03:00
|
|
|
# echo "add fs" >> $zone_conf
|
|
|
|
# echo "set type=zfs" >> $zone_conf
|
|
|
|
# echo "set special=$pool_name/zfs_filesystem" >> $zone_conf
|
|
|
|
# echo "set dir=/export/zfs_filesystem" >> $zone_conf
|
|
|
|
# echo "end" >> $zone_conf
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "verify" >> $zone_conf
|
|
|
|
echo "commit" >> $zone_conf
|
|
|
|
log_must zonecfg -z $zone_name -f $zone_conf
|
|
|
|
log_must rm -f $zone_conf
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
# Install the zone
|
2017-04-06 03:18:22 +03:00
|
|
|
zoneadm -z $zone_name install
|
2015-07-02 01:23:09 +03:00
|
|
|
if (($? == 0)); then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_note "SUCCESS: zoneadm -z $zone_name install"
|
2015-07-02 01:23:09 +03:00
|
|
|
else
|
2017-04-06 03:18:22 +03:00
|
|
|
log_fail "FAIL: zoneadm -z $zone_name install"
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Install sysidcfg file
|
|
|
|
#
|
|
|
|
typeset sysidcfg=$zone_root/$zone_name/root/etc/sysidcfg
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "system_locale=C" > $sysidcfg
|
|
|
|
echo "terminal=dtterm" >> $sysidcfg
|
|
|
|
echo "network_interface=primary {" >> $sysidcfg
|
|
|
|
echo "hostname=$zone_name" >> $sysidcfg
|
|
|
|
echo "}" >> $sysidcfg
|
|
|
|
echo "name_service=NONE" >> $sysidcfg
|
|
|
|
echo "root_password=mo791xfZ/SFiw" >> $sysidcfg
|
|
|
|
echo "security_policy=NONE" >> $sysidcfg
|
|
|
|
echo "timezone=US/Eastern" >> $sysidcfg
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
# Boot this zone
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zoneadm -z $zone_name boot
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Reexport TESTPOOL & TESTPOOL(1-4)
|
|
|
|
#
|
|
|
|
function reexport_pool
|
|
|
|
{
|
|
|
|
typeset -i cntctr=5
|
|
|
|
typeset -i i=0
|
|
|
|
|
|
|
|
while ((i < cntctr)); do
|
|
|
|
if ((i == 0)); then
|
|
|
|
TESTPOOL=$ZONE_POOL/$ZONE_CTR$i
|
|
|
|
if ! ismounted $TESTPOOL; then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs mount $TESTPOOL
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
eval TESTPOOL$i=$ZONE_POOL/$ZONE_CTR$i
|
|
|
|
if eval ! ismounted \$TESTPOOL$i; then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must eval zfs mount \$TESTPOOL$i
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
((i += 1))
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
2016-09-23 23:51:08 +03:00
|
|
|
# Verify a given disk or pool state
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# Return 0 is pool/disk matches expected state, 1 otherwise
|
|
|
|
#
|
2016-09-23 23:51:08 +03:00
|
|
|
function check_state # pool disk state{online,offline,degraded}
|
2015-07-02 01:23:09 +03:00
|
|
|
{
|
|
|
|
typeset pool=$1
|
|
|
|
typeset disk=${2#$DEV_DSKDIR/}
|
|
|
|
typeset state=$3
|
|
|
|
|
2016-09-23 23:51:08 +03:00
|
|
|
[[ -z $pool ]] || [[ -z $state ]] \
|
|
|
|
&& log_fail "Arguments invalid or missing"
|
|
|
|
|
|
|
|
if [[ -z $disk ]]; then
|
|
|
|
#check pool state only
|
2017-04-06 03:18:22 +03:00
|
|
|
zpool get -H -o value health $pool \
|
2016-09-23 23:51:08 +03:00
|
|
|
| grep -i "$state" > /dev/null 2>&1
|
|
|
|
else
|
2017-04-06 03:18:22 +03:00
|
|
|
zpool status -v $pool | grep "$disk" \
|
2016-09-23 23:51:08 +03:00
|
|
|
| grep -i "$state" > /dev/null 2>&1
|
|
|
|
fi
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Get the mountpoint of snapshot
|
|
|
|
# For the snapshot use <mp_filesystem>/.zfs/snapshot/<snap>
|
|
|
|
# as its mountpoint
|
|
|
|
#
|
|
|
|
function snapshot_mountpoint
|
|
|
|
{
|
|
|
|
typeset dataset=${1:-$TESTPOOL/$TESTFS@$TESTSNAP}
|
|
|
|
|
|
|
|
if [[ $dataset != *@* ]]; then
|
|
|
|
log_fail "Error name of snapshot '$dataset'."
|
|
|
|
fi
|
|
|
|
|
|
|
|
typeset fs=${dataset%@*}
|
|
|
|
typeset snap=${dataset#*@}
|
|
|
|
|
|
|
|
if [[ -z $fs || -z $snap ]]; then
|
|
|
|
log_fail "Error name of snapshot '$dataset'."
|
|
|
|
fi
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
echo $(get_prop mountpoint $fs)/.zfs/snapshot/$snap
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
2017-05-03 19:31:05 +03:00
|
|
|
#
|
|
|
|
# Given a device and 'ashift' value verify it's correctly set on every label
|
|
|
|
#
|
|
|
|
function verify_ashift # device ashift
|
|
|
|
{
|
|
|
|
typeset device="$1"
|
|
|
|
typeset ashift="$2"
|
|
|
|
|
|
|
|
zdb -e -lll $device | awk -v ashift=$ashift '/ashift: / {
|
|
|
|
if (ashift != $2)
|
|
|
|
exit 1;
|
|
|
|
else
|
|
|
|
count++;
|
|
|
|
} END {
|
|
|
|
if (count != 4)
|
|
|
|
exit 1;
|
|
|
|
else
|
|
|
|
exit 0;
|
|
|
|
}'
|
|
|
|
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# Given a pool and file system, this function will verify the file system
|
|
|
|
# using the zdb internal tool. Note that the pool is exported and imported
|
|
|
|
# to ensure it has consistent state.
|
|
|
|
#
|
|
|
|
function verify_filesys # pool filesystem dir
|
|
|
|
{
|
|
|
|
typeset pool="$1"
|
|
|
|
typeset filesys="$2"
|
|
|
|
typeset zdbout="/tmp/zdbout.$$"
|
|
|
|
|
|
|
|
shift
|
|
|
|
shift
|
|
|
|
typeset dirs=$@
|
|
|
|
typeset search_path=""
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
log_note "Calling zdb to verify filesystem '$filesys'"
|
|
|
|
zfs unmount -a > /dev/null 2>&1
|
|
|
|
log_must zpool export $pool
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
if [[ -n $dirs ]] ; then
|
|
|
|
for dir in $dirs ; do
|
|
|
|
search_path="$search_path -d $dir"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zpool import $search_path $pool
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
zdb -cudi $filesys > $zdbout 2>&1
|
2015-07-02 01:23:09 +03:00
|
|
|
if [[ $? != 0 ]]; then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_note "Output: zdb -cudi $filesys"
|
|
|
|
cat $zdbout
|
|
|
|
log_fail "zdb detected errors with: '$filesys'"
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs mount -a
|
|
|
|
log_must rm -rf $zdbout
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
2018-12-04 20:37:37 +03:00
|
|
|
#
|
|
|
|
# Given a pool issue a scrub and verify that no checksum errors are reported.
|
|
|
|
#
|
|
|
|
function verify_pool
|
|
|
|
{
|
|
|
|
typeset pool=${1:-$TESTPOOL}
|
|
|
|
|
|
|
|
log_must zpool scrub $pool
|
|
|
|
log_must wait_scrubbed $pool
|
|
|
|
|
|
|
|
cksum=$(zpool status $pool | awk 'L{print $NF;L=0} /CKSUM$/{L=1}')
|
|
|
|
if [[ $cksum != 0 ]]; then
|
|
|
|
log_must zpool status -v
|
|
|
|
log_fail "Unexpected CKSUM errors found on $pool ($cksum)"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# Given a pool, and this function list all disks in the pool
|
|
|
|
#
|
|
|
|
function get_disklist # pool
|
|
|
|
{
|
|
|
|
typeset disklist=""
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
disklist=$(zpool iostat -v $1 | nawk '(NR >4) {print $1}' | \
|
|
|
|
grep -v "\-\-\-\-\-" | \
|
2019-03-27 00:18:58 +03:00
|
|
|
egrep -v -e "^(mirror|raidz[1-3]|spare|log|cache|special|dedup)$")
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
echo $disklist
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
2016-06-16 01:47:05 +03:00
|
|
|
#
|
|
|
|
# Given a pool, and this function list all disks in the pool with their full
|
|
|
|
# path (like "/dev/sda" instead of "sda").
|
|
|
|
#
|
|
|
|
function get_disklist_fullpath # pool
|
|
|
|
{
|
|
|
|
args="-P $1"
|
|
|
|
get_disklist $args
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
# /**
|
|
|
|
# This function kills a given list of processes after a time period. We use
|
|
|
|
# this in the stress tests instead of STF_TIMEOUT so that we can have processes
|
|
|
|
# run for a fixed amount of time, yet still pass. Tests that hit STF_TIMEOUT
|
|
|
|
# would be listed as FAIL, which we don't want : we're happy with stress tests
|
|
|
|
# running for a certain amount of time, then finishing.
|
|
|
|
#
|
|
|
|
# @param $1 the time in seconds after which we should terminate these processes
|
|
|
|
# @param $2..$n the processes we wish to terminate.
|
|
|
|
# */
|
|
|
|
function stress_timeout
|
|
|
|
{
|
|
|
|
typeset -i TIMEOUT=$1
|
|
|
|
shift
|
|
|
|
typeset cpids="$@"
|
|
|
|
|
|
|
|
log_note "Waiting for child processes($cpids). " \
|
|
|
|
"It could last dozens of minutes, please be patient ..."
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must sleep $TIMEOUT
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
log_note "Killing child processes after ${TIMEOUT} stress timeout."
|
|
|
|
typeset pid
|
|
|
|
for pid in $cpids; do
|
2017-04-06 03:18:22 +03:00
|
|
|
ps -p $pid > /dev/null 2>&1
|
2015-07-02 01:23:09 +03:00
|
|
|
if (($? == 0)); then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must kill -USR1 $pid
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Verify a given hotspare disk is inuse or avail
|
|
|
|
#
|
|
|
|
# Return 0 is pool/disk matches expected state, 1 otherwise
|
|
|
|
#
|
|
|
|
function check_hotspare_state # pool disk state{inuse,avail}
|
|
|
|
{
|
|
|
|
typeset pool=$1
|
|
|
|
typeset disk=${2#$DEV_DSKDIR/}
|
|
|
|
typeset state=$3
|
|
|
|
|
|
|
|
cur_state=$(get_device_state $pool $disk "spares")
|
|
|
|
|
|
|
|
if [[ $state != ${cur_state} ]]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2017-10-23 21:42:37 +03:00
|
|
|
#
|
|
|
|
# Wait until a hotspare transitions to a given state or times out.
|
|
|
|
#
|
|
|
|
# Return 0 when pool/disk matches expected state, 1 on timeout.
|
|
|
|
#
|
|
|
|
function wait_hotspare_state # pool disk state timeout
|
|
|
|
{
|
|
|
|
typeset pool=$1
|
2018-08-31 00:43:37 +03:00
|
|
|
typeset disk=${2#*$DEV_DSKDIR/}
|
2017-10-23 21:42:37 +03:00
|
|
|
typeset state=$3
|
|
|
|
typeset timeout=${4:-60}
|
|
|
|
typeset -i i=0
|
|
|
|
|
|
|
|
while [[ $i -lt $timeout ]]; do
|
|
|
|
if check_hotspare_state $pool $disk $state; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
i=$((i+1))
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# Verify a given slog disk is inuse or avail
|
|
|
|
#
|
|
|
|
# Return 0 is pool/disk matches expected state, 1 otherwise
|
|
|
|
#
|
|
|
|
function check_slog_state # pool disk state{online,offline,unavail}
|
|
|
|
{
|
|
|
|
typeset pool=$1
|
|
|
|
typeset disk=${2#$DEV_DSKDIR/}
|
|
|
|
typeset state=$3
|
|
|
|
|
|
|
|
cur_state=$(get_device_state $pool $disk "logs")
|
|
|
|
|
|
|
|
if [[ $state != ${cur_state} ]]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Verify a given vdev disk is inuse or avail
|
|
|
|
#
|
|
|
|
# Return 0 is pool/disk matches expected state, 1 otherwise
|
|
|
|
#
|
|
|
|
function check_vdev_state # pool disk state{online,offline,unavail}
|
|
|
|
{
|
|
|
|
typeset pool=$1
|
2018-08-31 00:43:37 +03:00
|
|
|
typeset disk=${2#*$DEV_DSKDIR/}
|
2015-07-02 01:23:09 +03:00
|
|
|
typeset state=$3
|
|
|
|
|
|
|
|
cur_state=$(get_device_state $pool $disk)
|
|
|
|
|
|
|
|
if [[ $state != ${cur_state} ]]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2017-10-23 21:42:37 +03:00
|
|
|
#
|
|
|
|
# Wait until a vdev transitions to a given state or times out.
|
|
|
|
#
|
|
|
|
# Return 0 when pool/disk matches expected state, 1 on timeout.
|
|
|
|
#
|
|
|
|
function wait_vdev_state # pool disk state timeout
|
|
|
|
{
|
|
|
|
typeset pool=$1
|
2018-08-31 00:43:37 +03:00
|
|
|
typeset disk=${2#*$DEV_DSKDIR/}
|
2017-10-23 21:42:37 +03:00
|
|
|
typeset state=$3
|
|
|
|
typeset timeout=${4:-60}
|
|
|
|
typeset -i i=0
|
|
|
|
|
|
|
|
while [[ $i -lt $timeout ]]; do
|
|
|
|
if check_vdev_state $pool $disk $state; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
i=$((i+1))
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# Check the output of 'zpool status -v <pool>',
|
|
|
|
# and to see if the content of <token> contain the <keyword> specified.
|
|
|
|
#
|
|
|
|
# Return 0 is contain, 1 otherwise
|
|
|
|
#
|
2017-07-07 08:16:13 +03:00
|
|
|
function check_pool_status # pool token keyword <verbose>
|
2015-07-02 01:23:09 +03:00
|
|
|
{
|
|
|
|
typeset pool=$1
|
|
|
|
typeset token=$2
|
|
|
|
typeset keyword=$3
|
2017-07-07 08:16:13 +03:00
|
|
|
typeset verbose=${4:-false}
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2017-07-07 08:16:13 +03:00
|
|
|
scan=$(zpool status -v "$pool" 2>/dev/null | nawk -v token="$token:" '
|
|
|
|
($1==token) {print $0}')
|
|
|
|
if [[ $verbose == true ]]; then
|
|
|
|
log_note $scan
|
|
|
|
fi
|
|
|
|
echo $scan | grep -i "$keyword" > /dev/null 2>&1
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
Add subcommand to wait for background zfs activity to complete
Currently the best way to wait for the completion of a long-running
operation in a pool, like a scrub or device removal, is to poll 'zpool
status' and parse its output, which is neither efficient nor convenient.
This change adds a 'wait' subcommand to the zpool command. When invoked,
'zpool wait' will block until a specified type of background activity
completes. Currently, this subcommand can wait for any of the following:
- Scrubs or resilvers to complete
- Devices to initialized
- Devices to be replaced
- Devices to be removed
- Checkpoints to be discarded
- Background freeing to complete
For example, a scrub that is in progress could be waited for by running
zpool wait -t scrub <pool>
This also adds a -w flag to the attach, checkpoint, initialize, replace,
remove, and scrub subcommands. When used, this flag makes the operations
kicked off by these subcommands synchronous instead of asynchronous.
This functionality is implemented using a new ioctl. The type of
activity to wait for is provided as input to the ioctl, and the ioctl
blocks until all activity of that type has completed. An ioctl was used
over other methods of kernel-userspace communiction primarily for the
sake of portability.
Porting Notes:
This is ported from Delphix OS change DLPX-44432. The following changes
were made while porting:
- Added ZoL-style ioctl input declaration.
- Reorganized error handling in zpool_initialize in libzfs to integrate
better with changes made for TRIM support.
- Fixed check for whether a checkpoint discard is in progress.
Previously it also waited if the pool had a checkpoint, instead of
just if a checkpoint was being discarded.
- Exposed zfs_initialize_chunk_size as a ZoL-style tunable.
- Updated more existing tests to make use of new 'zpool wait'
functionality, tests that don't exist in Delphix OS.
- Used existing ZoL tunable zfs_scan_suspend_progress, together with
zinject, in place of a new tunable zfs_scan_max_blks_per_txg.
- Added support for a non-integral interval argument to zpool wait.
Future work:
ZoL has support for trimming devices, which Delphix OS does not. In the
future, 'zpool wait' could be extended to add the ability to wait for
trim operations to complete.
Reviewed-by: Matt Ahrens <matt@delphix.com>
Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: John Gallagher <john.gallagher@delphix.com>
Closes #9162
2019-09-14 04:09:06 +03:00
|
|
|
# The following functions are instance of check_pool_status()
|
2015-07-02 01:23:09 +03:00
|
|
|
# is_pool_resilvering - to check if the pool is resilver in progress
|
|
|
|
# is_pool_resilvered - to check if the pool is resilver completed
|
|
|
|
# is_pool_scrubbing - to check if the pool is scrub in progress
|
|
|
|
# is_pool_scrubbed - to check if the pool is scrub completed
|
|
|
|
# is_pool_scrub_stopped - to check if the pool is scrub stopped
|
2017-07-07 08:16:13 +03:00
|
|
|
# is_pool_scrub_paused - to check if the pool has scrub paused
|
OpenZFS 7614, 9064 - zfs device evacuation/removal
OpenZFS 7614 - zfs device evacuation/removal
OpenZFS 9064 - remove_mirror should wait for device removal to complete
This project allows top-level vdevs to be removed from the storage pool
with "zpool remove", reducing the total amount of storage in the pool.
This operation copies all allocated regions of the device to be removed
onto other devices, recording the mapping from old to new location.
After the removal is complete, read and free operations to the removed
(now "indirect") vdev must be remapped and performed at the new location
on disk. The indirect mapping table is kept in memory whenever the pool
is loaded, so there is minimal performance overhead when doing operations
on the indirect vdev.
The size of the in-memory mapping table will be reduced when its entries
become "obsolete" because they are no longer used by any block pointers
in the pool. An entry becomes obsolete when all the blocks that use
it are freed. An entry can also become obsolete when all the snapshots
that reference it are deleted, and the block pointers that reference it
have been "remapped" in all filesystems/zvols (and clones). Whenever an
indirect block is written, all the block pointers in it will be "remapped"
to their new (concrete) locations if possible. This process can be
accelerated by using the "zfs remap" command to proactively rewrite all
indirect blocks that reference indirect (removed) vdevs.
Note that when a device is removed, we do not verify the checksum of
the data that is copied. This makes the process much faster, but if it
were used on redundant vdevs (i.e. mirror or raidz vdevs), it would be
possible to copy the wrong data, when we have the correct data on e.g.
the other side of the mirror.
At the moment, only mirrors and simple top-level vdevs can be removed
and no removal is allowed if any of the top-level vdevs are raidz.
Porting Notes:
* Avoid zero-sized kmem_alloc() in vdev_compact_children().
The device evacuation code adds a dependency that
vdev_compact_children() be able to properly empty the vdev_child
array by setting it to NULL and zeroing vdev_children. Under Linux,
kmem_alloc() and related functions return a sentinel pointer rather
than NULL for zero-sized allocations.
* Remove comment regarding "mpt" driver where zfs_remove_max_segment
is initialized to SPA_MAXBLOCKSIZE.
Change zfs_condense_indirect_commit_entry_delay_ticks to
zfs_condense_indirect_commit_entry_delay_ms for consistency with
most other tunables in which delays are specified in ms.
* ZTS changes:
Use set_tunable rather than mdb
Use zpool sync as appropriate
Use sync_pool instead of sync
Kill jobs during test_removal_with_operation to allow unmount/export
Don't add non-disk names such as "mirror" or "raidz" to $DISKS
Use $TEST_BASE_DIR instead of /tmp
Increase HZ from 100 to 1000 which is more common on Linux
removal_multiple_indirection.ksh
Reduce iterations in order to not time out on the code
coverage builders.
removal_resume_export:
Functionally, the test case is correct but there exists a race
where the kernel thread hasn't been fully started yet and is
not visible. Wait for up to 1 second for the removal thread
to be started before giving up on it. Also, increase the
amount of data copied in order that the removal not finish
before the export has a chance to fail.
* MMP compatibility, the concept of concrete versus non-concrete devices
has slightly changed the semantics of vdev_writeable(). Update
mmp_random_leaf_impl() accordingly.
* Updated dbuf_remap() to handle the org.zfsonlinux:large_dnode pool
feature which is not supported by OpenZFS.
* Added support for new vdev removal tracepoints.
* Test cases removal_with_zdb and removal_condense_export have been
intentionally disabled. When run manually they pass as intended,
but when running in the automated test environment they produce
unreliable results on the latest Fedora release.
They may work better once the upstream pool import refectoring is
merged into ZoL at which point they will be re-enabled.
Authored by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Alex Reece <alex@delphix.com>
Reviewed-by: George Wilson <george.wilson@delphix.com>
Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Reviewed-by: Prakash Surya <prakash.surya@delphix.com>
Reviewed by: Richard Laager <rlaager@wiktel.com>
Reviewed by: Tim Chase <tim@chase2k.com>
Reviewed by: Brian Behlendorf <behlendorf1@llnl.gov>
Approved by: Garrett D'Amore <garrett@damore.org>
Ported-by: Tim Chase <tim@chase2k.com>
Signed-off-by: Tim Chase <tim@chase2k.com>
OpenZFS-issue: https://www.illumos.org/issues/7614
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/f539f1eb
Closes #6900
2016-09-22 19:30:13 +03:00
|
|
|
# is_pool_removing - to check if the pool is removing a vdev
|
|
|
|
# is_pool_removed - to check if the pool is remove completed
|
Add subcommand to wait for background zfs activity to complete
Currently the best way to wait for the completion of a long-running
operation in a pool, like a scrub or device removal, is to poll 'zpool
status' and parse its output, which is neither efficient nor convenient.
This change adds a 'wait' subcommand to the zpool command. When invoked,
'zpool wait' will block until a specified type of background activity
completes. Currently, this subcommand can wait for any of the following:
- Scrubs or resilvers to complete
- Devices to initialized
- Devices to be replaced
- Devices to be removed
- Checkpoints to be discarded
- Background freeing to complete
For example, a scrub that is in progress could be waited for by running
zpool wait -t scrub <pool>
This also adds a -w flag to the attach, checkpoint, initialize, replace,
remove, and scrub subcommands. When used, this flag makes the operations
kicked off by these subcommands synchronous instead of asynchronous.
This functionality is implemented using a new ioctl. The type of
activity to wait for is provided as input to the ioctl, and the ioctl
blocks until all activity of that type has completed. An ioctl was used
over other methods of kernel-userspace communiction primarily for the
sake of portability.
Porting Notes:
This is ported from Delphix OS change DLPX-44432. The following changes
were made while porting:
- Added ZoL-style ioctl input declaration.
- Reorganized error handling in zpool_initialize in libzfs to integrate
better with changes made for TRIM support.
- Fixed check for whether a checkpoint discard is in progress.
Previously it also waited if the pool had a checkpoint, instead of
just if a checkpoint was being discarded.
- Exposed zfs_initialize_chunk_size as a ZoL-style tunable.
- Updated more existing tests to make use of new 'zpool wait'
functionality, tests that don't exist in Delphix OS.
- Used existing ZoL tunable zfs_scan_suspend_progress, together with
zinject, in place of a new tunable zfs_scan_max_blks_per_txg.
- Added support for a non-integral interval argument to zpool wait.
Future work:
ZoL has support for trimming devices, which Delphix OS does not. In the
future, 'zpool wait' could be extended to add the ability to wait for
trim operations to complete.
Reviewed-by: Matt Ahrens <matt@delphix.com>
Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: John Gallagher <john.gallagher@delphix.com>
Closes #9162
2019-09-14 04:09:06 +03:00
|
|
|
# is_pool_discarding - to check if the pool has checkpoint being discarded
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
2017-07-07 08:16:13 +03:00
|
|
|
function is_pool_resilvering #pool <verbose>
|
|
|
|
{
|
|
|
|
check_pool_status "$1" "scan" "resilver in progress since " $2
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
function is_pool_resilvered #pool <verbose>
|
2015-07-02 01:23:09 +03:00
|
|
|
{
|
2017-07-07 08:16:13 +03:00
|
|
|
check_pool_status "$1" "scan" "resilvered " $2
|
2015-07-02 01:23:09 +03:00
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
2017-07-07 08:16:13 +03:00
|
|
|
function is_pool_scrubbing #pool <verbose>
|
2015-07-02 01:23:09 +03:00
|
|
|
{
|
2017-07-07 08:16:13 +03:00
|
|
|
check_pool_status "$1" "scan" "scrub in progress since " $2
|
2015-07-02 01:23:09 +03:00
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
2017-07-07 08:16:13 +03:00
|
|
|
function is_pool_scrubbed #pool <verbose>
|
2015-07-02 01:23:09 +03:00
|
|
|
{
|
2017-07-07 08:16:13 +03:00
|
|
|
check_pool_status "$1" "scan" "scrub repaired" $2
|
2015-07-02 01:23:09 +03:00
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
2017-07-07 08:16:13 +03:00
|
|
|
function is_pool_scrub_stopped #pool <verbose>
|
2015-07-02 01:23:09 +03:00
|
|
|
{
|
2017-07-07 08:16:13 +03:00
|
|
|
check_pool_status "$1" "scan" "scrub canceled" $2
|
2015-07-02 01:23:09 +03:00
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
2017-07-07 08:16:13 +03:00
|
|
|
function is_pool_scrub_paused #pool <verbose>
|
2015-07-02 01:23:09 +03:00
|
|
|
{
|
2017-07-07 08:16:13 +03:00
|
|
|
check_pool_status "$1" "scan" "scrub paused since " $2
|
2015-07-02 01:23:09 +03:00
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
OpenZFS 7614, 9064 - zfs device evacuation/removal
OpenZFS 7614 - zfs device evacuation/removal
OpenZFS 9064 - remove_mirror should wait for device removal to complete
This project allows top-level vdevs to be removed from the storage pool
with "zpool remove", reducing the total amount of storage in the pool.
This operation copies all allocated regions of the device to be removed
onto other devices, recording the mapping from old to new location.
After the removal is complete, read and free operations to the removed
(now "indirect") vdev must be remapped and performed at the new location
on disk. The indirect mapping table is kept in memory whenever the pool
is loaded, so there is minimal performance overhead when doing operations
on the indirect vdev.
The size of the in-memory mapping table will be reduced when its entries
become "obsolete" because they are no longer used by any block pointers
in the pool. An entry becomes obsolete when all the blocks that use
it are freed. An entry can also become obsolete when all the snapshots
that reference it are deleted, and the block pointers that reference it
have been "remapped" in all filesystems/zvols (and clones). Whenever an
indirect block is written, all the block pointers in it will be "remapped"
to their new (concrete) locations if possible. This process can be
accelerated by using the "zfs remap" command to proactively rewrite all
indirect blocks that reference indirect (removed) vdevs.
Note that when a device is removed, we do not verify the checksum of
the data that is copied. This makes the process much faster, but if it
were used on redundant vdevs (i.e. mirror or raidz vdevs), it would be
possible to copy the wrong data, when we have the correct data on e.g.
the other side of the mirror.
At the moment, only mirrors and simple top-level vdevs can be removed
and no removal is allowed if any of the top-level vdevs are raidz.
Porting Notes:
* Avoid zero-sized kmem_alloc() in vdev_compact_children().
The device evacuation code adds a dependency that
vdev_compact_children() be able to properly empty the vdev_child
array by setting it to NULL and zeroing vdev_children. Under Linux,
kmem_alloc() and related functions return a sentinel pointer rather
than NULL for zero-sized allocations.
* Remove comment regarding "mpt" driver where zfs_remove_max_segment
is initialized to SPA_MAXBLOCKSIZE.
Change zfs_condense_indirect_commit_entry_delay_ticks to
zfs_condense_indirect_commit_entry_delay_ms for consistency with
most other tunables in which delays are specified in ms.
* ZTS changes:
Use set_tunable rather than mdb
Use zpool sync as appropriate
Use sync_pool instead of sync
Kill jobs during test_removal_with_operation to allow unmount/export
Don't add non-disk names such as "mirror" or "raidz" to $DISKS
Use $TEST_BASE_DIR instead of /tmp
Increase HZ from 100 to 1000 which is more common on Linux
removal_multiple_indirection.ksh
Reduce iterations in order to not time out on the code
coverage builders.
removal_resume_export:
Functionally, the test case is correct but there exists a race
where the kernel thread hasn't been fully started yet and is
not visible. Wait for up to 1 second for the removal thread
to be started before giving up on it. Also, increase the
amount of data copied in order that the removal not finish
before the export has a chance to fail.
* MMP compatibility, the concept of concrete versus non-concrete devices
has slightly changed the semantics of vdev_writeable(). Update
mmp_random_leaf_impl() accordingly.
* Updated dbuf_remap() to handle the org.zfsonlinux:large_dnode pool
feature which is not supported by OpenZFS.
* Added support for new vdev removal tracepoints.
* Test cases removal_with_zdb and removal_condense_export have been
intentionally disabled. When run manually they pass as intended,
but when running in the automated test environment they produce
unreliable results on the latest Fedora release.
They may work better once the upstream pool import refectoring is
merged into ZoL at which point they will be re-enabled.
Authored by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Alex Reece <alex@delphix.com>
Reviewed-by: George Wilson <george.wilson@delphix.com>
Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Reviewed-by: Prakash Surya <prakash.surya@delphix.com>
Reviewed by: Richard Laager <rlaager@wiktel.com>
Reviewed by: Tim Chase <tim@chase2k.com>
Reviewed by: Brian Behlendorf <behlendorf1@llnl.gov>
Approved by: Garrett D'Amore <garrett@damore.org>
Ported-by: Tim Chase <tim@chase2k.com>
Signed-off-by: Tim Chase <tim@chase2k.com>
OpenZFS-issue: https://www.illumos.org/issues/7614
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/f539f1eb
Closes #6900
2016-09-22 19:30:13 +03:00
|
|
|
function is_pool_removing #pool
|
|
|
|
{
|
|
|
|
check_pool_status "$1" "remove" "in progress since "
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
function is_pool_removed #pool
|
|
|
|
{
|
|
|
|
check_pool_status "$1" "remove" "completed on"
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
Add subcommand to wait for background zfs activity to complete
Currently the best way to wait for the completion of a long-running
operation in a pool, like a scrub or device removal, is to poll 'zpool
status' and parse its output, which is neither efficient nor convenient.
This change adds a 'wait' subcommand to the zpool command. When invoked,
'zpool wait' will block until a specified type of background activity
completes. Currently, this subcommand can wait for any of the following:
- Scrubs or resilvers to complete
- Devices to initialized
- Devices to be replaced
- Devices to be removed
- Checkpoints to be discarded
- Background freeing to complete
For example, a scrub that is in progress could be waited for by running
zpool wait -t scrub <pool>
This also adds a -w flag to the attach, checkpoint, initialize, replace,
remove, and scrub subcommands. When used, this flag makes the operations
kicked off by these subcommands synchronous instead of asynchronous.
This functionality is implemented using a new ioctl. The type of
activity to wait for is provided as input to the ioctl, and the ioctl
blocks until all activity of that type has completed. An ioctl was used
over other methods of kernel-userspace communiction primarily for the
sake of portability.
Porting Notes:
This is ported from Delphix OS change DLPX-44432. The following changes
were made while porting:
- Added ZoL-style ioctl input declaration.
- Reorganized error handling in zpool_initialize in libzfs to integrate
better with changes made for TRIM support.
- Fixed check for whether a checkpoint discard is in progress.
Previously it also waited if the pool had a checkpoint, instead of
just if a checkpoint was being discarded.
- Exposed zfs_initialize_chunk_size as a ZoL-style tunable.
- Updated more existing tests to make use of new 'zpool wait'
functionality, tests that don't exist in Delphix OS.
- Used existing ZoL tunable zfs_scan_suspend_progress, together with
zinject, in place of a new tunable zfs_scan_max_blks_per_txg.
- Added support for a non-integral interval argument to zpool wait.
Future work:
ZoL has support for trimming devices, which Delphix OS does not. In the
future, 'zpool wait' could be extended to add the ability to wait for
trim operations to complete.
Reviewed-by: Matt Ahrens <matt@delphix.com>
Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: John Gallagher <john.gallagher@delphix.com>
Closes #9162
2019-09-14 04:09:06 +03:00
|
|
|
function is_pool_discarding #pool
|
|
|
|
{
|
|
|
|
check_pool_status "$1" "checkpoint" "discarding"
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
2016-08-18 00:15:27 +03:00
|
|
|
function wait_for_degraded
|
|
|
|
{
|
|
|
|
typeset pool=$1
|
|
|
|
typeset timeout=${2:-30}
|
|
|
|
typeset t0=$SECONDS
|
|
|
|
|
|
|
|
while :; do
|
|
|
|
[[ $(get_pool_prop health $pool) == "DEGRADED" ]] && break
|
|
|
|
log_note "$pool is not yet degraded."
|
|
|
|
sleep 1
|
|
|
|
if ((SECONDS - t0 > $timeout)); then
|
|
|
|
log_note "$pool not degraded after $timeout seconds."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
2017-01-03 20:31:18 +03:00
|
|
|
# Use create_pool()/destroy_pool() to clean up the information in
|
2015-07-02 01:23:09 +03:00
|
|
|
# in the given disk to avoid slice overlapping.
|
|
|
|
#
|
|
|
|
function cleanup_devices #vdevs
|
|
|
|
{
|
|
|
|
typeset pool="foopool$$"
|
|
|
|
|
2020-01-06 22:14:19 +03:00
|
|
|
for vdev in $@; do
|
|
|
|
zero_partitions $vdev
|
|
|
|
done
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2020-01-06 22:14:19 +03:00
|
|
|
poolexists $pool && destroy_pool $pool
|
2015-07-02 01:23:09 +03:00
|
|
|
create_pool $pool $@
|
|
|
|
destroy_pool $pool
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#/**
|
|
|
|
# A function to find and locate free disks on a system or from given
|
|
|
|
# disks as the parameter. It works by locating disks that are in use
|
|
|
|
# as swap devices and dump devices, and also disks listed in /etc/vfstab
|
|
|
|
#
|
|
|
|
# $@ given disks to find which are free, default is all disks in
|
|
|
|
# the test system
|
|
|
|
#
|
|
|
|
# @return a string containing the list of available disks
|
|
|
|
#*/
|
|
|
|
function find_disks
|
|
|
|
{
|
|
|
|
# Trust provided list, no attempt is made to locate unused devices.
|
2019-12-18 23:29:43 +03:00
|
|
|
if is_linux || is_freebsd; then
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "$@"
|
2015-07-02 01:23:09 +03:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
sfi=/tmp/swaplist.$$
|
|
|
|
dmpi=/tmp/dumpdev.$$
|
|
|
|
max_finddisksnum=${MAX_FINDDISKSNUM:-6}
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
swap -l > $sfi
|
|
|
|
dumpadm > $dmpi 2>/dev/null
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
# write an awk script that can process the output of format
|
|
|
|
# to produce a list of disks we know about. Note that we have
|
|
|
|
# to escape "$2" so that the shell doesn't interpret it while
|
|
|
|
# we're creating the awk script.
|
|
|
|
# -------------------
|
2017-04-06 03:18:22 +03:00
|
|
|
cat > /tmp/find_disks.awk <<EOF
|
2015-07-02 01:23:09 +03:00
|
|
|
#!/bin/nawk -f
|
|
|
|
BEGIN { FS="."; }
|
|
|
|
|
|
|
|
/^Specify disk/{
|
|
|
|
searchdisks=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
if (searchdisks && \$2 !~ "^$"){
|
|
|
|
split(\$2,arr," ");
|
|
|
|
print arr[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/^AVAILABLE DISK SELECTIONS:/{
|
|
|
|
searchdisks=1;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
#---------------------
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
chmod 755 /tmp/find_disks.awk
|
|
|
|
disks=${@:-$(echo "" | format -e 2>/dev/null | /tmp/find_disks.awk)}
|
|
|
|
rm /tmp/find_disks.awk
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
unused=""
|
|
|
|
for disk in $disks; do
|
|
|
|
# Check for mounted
|
2017-04-06 03:18:22 +03:00
|
|
|
grep "${disk}[sp]" /etc/mnttab >/dev/null
|
2015-07-02 01:23:09 +03:00
|
|
|
(($? == 0)) && continue
|
|
|
|
# Check for swap
|
2017-04-06 03:18:22 +03:00
|
|
|
grep "${disk}[sp]" $sfi >/dev/null
|
2015-07-02 01:23:09 +03:00
|
|
|
(($? == 0)) && continue
|
|
|
|
# check for dump device
|
2017-04-06 03:18:22 +03:00
|
|
|
grep "${disk}[sp]" $dmpi >/dev/null
|
2015-07-02 01:23:09 +03:00
|
|
|
(($? == 0)) && continue
|
|
|
|
# check to see if this disk hasn't been explicitly excluded
|
|
|
|
# by a user-set environment variable
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "${ZFS_HOST_DEVICES_IGNORE}" | grep "${disk}" > /dev/null
|
2015-07-02 01:23:09 +03:00
|
|
|
(($? == 0)) && continue
|
|
|
|
unused_candidates="$unused_candidates $disk"
|
|
|
|
done
|
2017-04-06 03:18:22 +03:00
|
|
|
rm $sfi
|
|
|
|
rm $dmpi
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
# now just check to see if those disks do actually exist
|
|
|
|
# by looking for a device pointing to the first slice in
|
|
|
|
# each case. limit the number to max_finddisksnum
|
|
|
|
count=0
|
|
|
|
for disk in $unused_candidates; do
|
2020-01-03 20:10:17 +03:00
|
|
|
if is_disk_device $DEV_DSKDIR/${disk}s0 && \
|
|
|
|
[ $count -lt $max_finddisksnum ]; then
|
2015-07-02 01:23:09 +03:00
|
|
|
unused="$unused $disk"
|
|
|
|
# do not impose limit if $@ is provided
|
|
|
|
[[ -z $@ ]] && ((count = count + 1))
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# finally, return our disk list
|
2017-04-06 03:18:22 +03:00
|
|
|
echo $unused
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
function add_user_freebsd #<group_name> <user_name> <basedir>
|
|
|
|
{
|
|
|
|
typeset group=$1
|
|
|
|
typeset user=$2
|
|
|
|
typeset basedir=$3
|
|
|
|
|
|
|
|
# Check to see if the user exists.
|
|
|
|
if id $user > /dev/null 2>&1; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Assign 1000 as the base uid
|
|
|
|
typeset -i uid=1000
|
|
|
|
while true; do
|
|
|
|
typeset -i ret
|
|
|
|
pw useradd -u $uid -g $group -d $basedir/$user -m -n $user
|
|
|
|
ret=$?
|
|
|
|
case $ret in
|
|
|
|
0) break ;;
|
|
|
|
# The uid is not unique
|
|
|
|
65) ((uid += 1)) ;;
|
|
|
|
*) return 1 ;;
|
|
|
|
esac
|
|
|
|
if [[ $uid == 65000 ]]; then
|
|
|
|
log_fail "No user id available under 65000 for $user"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Silence MOTD
|
|
|
|
touch $basedir/$user/.hushlogin
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Delete the specified user.
|
|
|
|
#
|
|
|
|
# $1 login name
|
|
|
|
#
|
|
|
|
function del_user_freebsd #<logname>
|
|
|
|
{
|
|
|
|
typeset user=$1
|
|
|
|
|
|
|
|
if id $user > /dev/null 2>&1; then
|
|
|
|
log_must pw userdel $user
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Select valid gid and create specified group.
|
|
|
|
#
|
|
|
|
# $1 group name
|
|
|
|
#
|
|
|
|
function add_group_freebsd #<group_name>
|
|
|
|
{
|
|
|
|
typeset group=$1
|
|
|
|
|
|
|
|
# See if the group already exists.
|
|
|
|
if pw groupshow $group >/dev/null 2>&1; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Assign 1000 as the base gid
|
|
|
|
typeset -i gid=1000
|
|
|
|
while true; do
|
|
|
|
pw groupadd -g $gid -n $group > /dev/null 2>&1
|
|
|
|
typeset -i ret=$?
|
|
|
|
case $ret in
|
|
|
|
0) return 0 ;;
|
|
|
|
# The gid is not unique
|
|
|
|
65) ((gid += 1)) ;;
|
|
|
|
*) return 1 ;;
|
|
|
|
esac
|
|
|
|
if [[ $gid == 65000 ]]; then
|
|
|
|
log_fail "No user id available under 65000 for $group"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Delete the specified group.
|
|
|
|
#
|
|
|
|
# $1 group name
|
|
|
|
#
|
|
|
|
function del_group_freebsd #<group_name>
|
|
|
|
{
|
|
|
|
typeset group=$1
|
|
|
|
|
|
|
|
pw groupdel -n $group > /dev/null 2>&1
|
|
|
|
typeset -i ret=$?
|
|
|
|
case $ret in
|
|
|
|
# Group does not exist, or was deleted successfully.
|
|
|
|
0|6|65) return 0 ;;
|
|
|
|
# Name already exists as a group name
|
|
|
|
9) log_must pw groupdel $group ;;
|
|
|
|
*) return 1 ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
function add_user_illumos #<group_name> <user_name> <basedir>
|
|
|
|
{
|
|
|
|
typeset group=$1
|
|
|
|
typeset user=$2
|
|
|
|
typeset basedir=$3
|
|
|
|
|
|
|
|
log_must useradd -g $group -d $basedir/$user -m $user
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
function del_user_illumos #<user_name>
|
|
|
|
{
|
|
|
|
typeset user=$1
|
|
|
|
|
|
|
|
if id $user > /dev/null 2>&1; then
|
|
|
|
log_must_retry "currently used" 6 userdel $user
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
function add_group_illumos #<group_name>
|
|
|
|
{
|
|
|
|
typeset group=$1
|
|
|
|
|
|
|
|
typeset -i gid=100
|
|
|
|
while true; do
|
|
|
|
groupadd -g $gid $group > /dev/null 2>&1
|
|
|
|
typeset -i ret=$?
|
|
|
|
case $ret in
|
|
|
|
0) return 0 ;;
|
|
|
|
# The gid is not unique
|
|
|
|
4) ((gid += 1)) ;;
|
|
|
|
*) return 1 ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
function del_group_illumos #<group_name>
|
|
|
|
{
|
|
|
|
typeset group=$1
|
|
|
|
|
|
|
|
groupmod -n $grp $grp > /dev/null 2>&1
|
|
|
|
typeset -i ret=$?
|
|
|
|
case $ret in
|
|
|
|
# Group does not exist.
|
|
|
|
6) return 0 ;;
|
|
|
|
# Name already exists as a group name
|
|
|
|
9) log_must groupdel $grp ;;
|
|
|
|
*) return 1 ;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
function add_user_linux #<group_name> <user_name> <basedir>
|
|
|
|
{
|
|
|
|
typeset group=$1
|
|
|
|
typeset user=$2
|
|
|
|
typeset basedir=$3
|
|
|
|
|
|
|
|
log_must useradd -g $group -d $basedir/$user -m $user
|
|
|
|
|
|
|
|
# Add new users to the same group and the command line utils.
|
|
|
|
# This allows them to be run out of the original users home
|
|
|
|
# directory as long as it permissioned to be group readable.
|
|
|
|
cmd_group=$(stat --format="%G" $(which zfs))
|
|
|
|
log_must usermod -a -G $cmd_group $user
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
function del_user_linux #<user_name>
|
|
|
|
{
|
|
|
|
typeset user=$1
|
|
|
|
|
|
|
|
if id $user > /dev/null 2>&1; then
|
|
|
|
log_must_retry "currently used" 6 userdel $user
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
function add_group_linux #<group_name>
|
|
|
|
{
|
|
|
|
typeset group=$1
|
|
|
|
|
|
|
|
# Assign 100 as the base gid, a larger value is selected for
|
|
|
|
# Linux because for many distributions 1000 and under are reserved.
|
|
|
|
while true; do
|
|
|
|
groupadd $group > /dev/null 2>&1
|
|
|
|
typeset -i ret=$?
|
|
|
|
case $ret in
|
|
|
|
0) return 0 ;;
|
|
|
|
*) return 1 ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
function del_group_linux #<group_name>
|
|
|
|
{
|
|
|
|
typeset group=$1
|
|
|
|
|
|
|
|
getent group $group > /dev/null 2>&1
|
|
|
|
typeset -i ret=$?
|
|
|
|
case $ret in
|
|
|
|
# Group does not exist.
|
|
|
|
2) return 0 ;;
|
|
|
|
# Name already exists as a group name
|
|
|
|
0) log_must groupdel $group ;;
|
|
|
|
*) return 1 ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# Add specified user to specified group
|
|
|
|
#
|
|
|
|
# $1 group name
|
|
|
|
# $2 user name
|
|
|
|
# $3 base of the homedir (optional)
|
|
|
|
#
|
|
|
|
function add_user #<group_name> <user_name> <basedir>
|
|
|
|
{
|
2019-12-18 23:29:43 +03:00
|
|
|
typeset group=$1
|
|
|
|
typeset user=$2
|
2015-07-02 01:23:09 +03:00
|
|
|
typeset basedir=${3:-"/var/tmp"}
|
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
if ((${#group} == 0 || ${#user} == 0)); then
|
2015-07-02 01:23:09 +03:00
|
|
|
log_fail "group name or user name are not defined."
|
|
|
|
fi
|
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
add_user_freebsd "$group" "$user" "$basedir"
|
|
|
|
;;
|
|
|
|
Linux)
|
|
|
|
add_user_linux "$group" "$user" "$basedir"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
add_user_illumos "$group" "$user" "$basedir"
|
|
|
|
;;
|
|
|
|
esac
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
echo "export PATH=\"$STF_PATH\"" >>$basedir/$user/.profile
|
|
|
|
echo "export PATH=\"$STF_PATH\"" >>$basedir/$user/.bash_profile
|
|
|
|
echo "export PATH=\"$STF_PATH\"" >>$basedir/$user/.login
|
2016-06-07 19:16:52 +03:00
|
|
|
|
2015-07-02 01:23:09 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Delete the specified user.
|
|
|
|
#
|
|
|
|
# $1 login name
|
|
|
|
# $2 base of the homedir (optional)
|
|
|
|
#
|
|
|
|
function del_user #<logname> <basedir>
|
|
|
|
{
|
|
|
|
typeset user=$1
|
|
|
|
typeset basedir=${2:-"/var/tmp"}
|
|
|
|
|
|
|
|
if ((${#user} == 0)); then
|
|
|
|
log_fail "login name is necessary."
|
|
|
|
fi
|
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
del_user_freebsd "$user"
|
|
|
|
;;
|
|
|
|
Linux)
|
|
|
|
del_user_linux "$user"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
del_user_illumos "$user"
|
|
|
|
;;
|
|
|
|
esac
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
[[ -d $basedir/$user ]] && rm -fr $basedir/$user
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Select valid gid and create specified group.
|
|
|
|
#
|
|
|
|
# $1 group name
|
|
|
|
#
|
|
|
|
function add_group #<group_name>
|
|
|
|
{
|
|
|
|
typeset group=$1
|
|
|
|
|
|
|
|
if ((${#group} == 0)); then
|
|
|
|
log_fail "group name is necessary."
|
|
|
|
fi
|
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
add_group_freebsd "$group"
|
|
|
|
;;
|
|
|
|
Linux)
|
|
|
|
add_group_linux "$group"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
add_group_illumos "$group"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
return 0
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Delete the specified group.
|
|
|
|
#
|
|
|
|
# $1 group name
|
|
|
|
#
|
|
|
|
function del_group #<group_name>
|
|
|
|
{
|
2019-12-18 23:29:43 +03:00
|
|
|
typeset group=$1
|
|
|
|
|
|
|
|
if ((${#group} == 0)); then
|
2015-07-02 01:23:09 +03:00
|
|
|
log_fail "group name is necessary."
|
|
|
|
fi
|
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
del_group_freebsd "$group"
|
|
|
|
;;
|
|
|
|
Linux)
|
|
|
|
del_group_linux "$group"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
del_group_illumos "$group"
|
|
|
|
;;
|
|
|
|
esac
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# This function will return true if it's safe to destroy the pool passed
|
|
|
|
# as argument 1. It checks for pools based on zvols and files, and also
|
|
|
|
# files contained in a pool that may have a different mountpoint.
|
|
|
|
#
|
|
|
|
function safe_to_destroy_pool { # $1 the pool name
|
|
|
|
|
|
|
|
typeset pool=""
|
|
|
|
typeset DONT_DESTROY=""
|
|
|
|
|
|
|
|
# We check that by deleting the $1 pool, we're not
|
|
|
|
# going to pull the rug out from other pools. Do this
|
|
|
|
# by looking at all other pools, ensuring that they
|
|
|
|
# aren't built from files or zvols contained in this pool.
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
for pool in $(zpool list -H -o name)
|
2015-07-02 01:23:09 +03:00
|
|
|
do
|
|
|
|
ALTMOUNTPOOL=""
|
|
|
|
|
|
|
|
# this is a list of the top-level directories in each of the
|
|
|
|
# files that make up the path to the files the pool is based on
|
2017-04-06 03:18:22 +03:00
|
|
|
FILEPOOL=$(zpool status -v $pool | grep /$1/ | \
|
|
|
|
awk '{print $1}')
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
# this is a list of the zvols that make up the pool
|
2017-04-06 03:18:22 +03:00
|
|
|
ZVOLPOOL=$(zpool status -v $pool | grep "$ZVOL_DEVDIR/$1$" \
|
|
|
|
| awk '{print $1}')
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
# also want to determine if it's a file-based pool using an
|
|
|
|
# alternate mountpoint...
|
2017-04-06 03:18:22 +03:00
|
|
|
POOL_FILE_DIRS=$(zpool status -v $pool | \
|
|
|
|
grep / | awk '{print $1}' | \
|
|
|
|
awk -F/ '{print $2}' | grep -v "dev")
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
for pooldir in $POOL_FILE_DIRS
|
|
|
|
do
|
2017-04-06 03:18:22 +03:00
|
|
|
OUTPUT=$(zfs list -H -r -o mountpoint $1 | \
|
|
|
|
grep "${pooldir}$" | awk '{print $1}')
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
ALTMOUNTPOOL="${ALTMOUNTPOOL}${OUTPUT}"
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
if [ ! -z "$ZVOLPOOL" ]
|
|
|
|
then
|
|
|
|
DONT_DESTROY="true"
|
|
|
|
log_note "Pool $pool is built from $ZVOLPOOL on $1"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -z "$FILEPOOL" ]
|
|
|
|
then
|
|
|
|
DONT_DESTROY="true"
|
|
|
|
log_note "Pool $pool is built from $FILEPOOL on $1"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -z "$ALTMOUNTPOOL" ]
|
|
|
|
then
|
|
|
|
DONT_DESTROY="true"
|
|
|
|
log_note "Pool $pool is built from $ALTMOUNTPOOL on $1"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ -z "${DONT_DESTROY}" ]
|
|
|
|
then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
log_note "Warning: it is not safe to destroy $1!"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Verify zfs operation with -p option work as expected
|
|
|
|
# $1 operation, value could be create, clone or rename
|
|
|
|
# $2 dataset type, value could be fs or vol
|
|
|
|
# $3 dataset name
|
|
|
|
# $4 new dataset name
|
|
|
|
#
|
|
|
|
function verify_opt_p_ops
|
|
|
|
{
|
|
|
|
typeset ops=$1
|
|
|
|
typeset datatype=$2
|
|
|
|
typeset dataset=$3
|
|
|
|
typeset newdataset=$4
|
|
|
|
|
|
|
|
if [[ $datatype != "fs" && $datatype != "vol" ]]; then
|
|
|
|
log_fail "$datatype is not supported."
|
|
|
|
fi
|
|
|
|
|
|
|
|
# check parameters accordingly
|
|
|
|
case $ops in
|
|
|
|
create)
|
|
|
|
newdataset=$dataset
|
|
|
|
dataset=""
|
|
|
|
if [[ $datatype == "vol" ]]; then
|
|
|
|
ops="create -V $VOLSIZE"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
clone)
|
|
|
|
if [[ -z $newdataset ]]; then
|
|
|
|
log_fail "newdataset should not be empty" \
|
|
|
|
"when ops is $ops."
|
|
|
|
fi
|
|
|
|
log_must datasetexists $dataset
|
|
|
|
log_must snapexists $dataset
|
|
|
|
;;
|
|
|
|
rename)
|
|
|
|
if [[ -z $newdataset ]]; then
|
|
|
|
log_fail "newdataset should not be empty" \
|
|
|
|
"when ops is $ops."
|
|
|
|
fi
|
|
|
|
log_must datasetexists $dataset
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
log_fail "$ops is not supported."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# make sure the upper level filesystem does not exist
|
2018-03-07 01:54:57 +03:00
|
|
|
destroy_dataset "${newdataset%/*}" "-rRf"
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
# without -p option, operation will fail
|
2017-04-06 03:18:22 +03:00
|
|
|
log_mustnot zfs $ops $dataset $newdataset
|
2015-07-02 01:23:09 +03:00
|
|
|
log_mustnot datasetexists $newdataset ${newdataset%/*}
|
|
|
|
|
|
|
|
# with -p option, operation should succeed
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs $ops -p $dataset $newdataset
|
2015-07-02 01:23:09 +03:00
|
|
|
block_device_wait
|
|
|
|
|
|
|
|
if ! datasetexists $newdataset ; then
|
|
|
|
log_fail "-p option does not work for $ops"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# when $ops is create or clone, redo the operation still return zero
|
|
|
|
if [[ $ops != "rename" ]]; then
|
2017-04-06 03:18:22 +03:00
|
|
|
log_must zfs $ops -p $dataset $newdataset
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Get configuration of pool
|
|
|
|
# $1 pool name
|
|
|
|
# $2 config name
|
|
|
|
#
|
|
|
|
function get_config
|
|
|
|
{
|
|
|
|
typeset pool=$1
|
|
|
|
typeset config=$2
|
|
|
|
typeset alt_root
|
|
|
|
|
|
|
|
if ! poolexists "$pool" ; then
|
|
|
|
return 1
|
|
|
|
fi
|
2017-04-06 03:18:22 +03:00
|
|
|
alt_root=$(zpool list -H $pool | awk '{print $NF}')
|
2015-07-02 01:23:09 +03:00
|
|
|
if [[ $alt_root == "-" ]]; then
|
2017-04-06 03:18:22 +03:00
|
|
|
value=$(zdb -C $pool | grep "$config:" | awk -F: \
|
2015-07-02 01:23:09 +03:00
|
|
|
'{print $2}')
|
|
|
|
else
|
2017-04-06 03:18:22 +03:00
|
|
|
value=$(zdb -e $pool | grep "$config:" | awk -F: \
|
2015-07-02 01:23:09 +03:00
|
|
|
'{print $2}')
|
|
|
|
fi
|
|
|
|
if [[ -n $value ]] ; then
|
|
|
|
value=${value#'}
|
|
|
|
value=${value%'}
|
|
|
|
fi
|
|
|
|
echo $value
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Privated function. Random select one of items from arguments.
|
|
|
|
#
|
|
|
|
# $1 count
|
|
|
|
# $2-n string
|
|
|
|
#
|
|
|
|
function _random_get
|
|
|
|
{
|
|
|
|
typeset cnt=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
typeset str="$@"
|
|
|
|
typeset -i ind
|
|
|
|
((ind = RANDOM % cnt + 1))
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
typeset ret=$(echo "$str" | cut -f $ind -d ' ')
|
|
|
|
echo $ret
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Random select one of item from arguments which include NONE string
|
|
|
|
#
|
|
|
|
function random_get_with_non
|
|
|
|
{
|
|
|
|
typeset -i cnt=$#
|
|
|
|
((cnt =+ 1))
|
|
|
|
|
|
|
|
_random_get "$cnt" "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Random select one of item from arguments which doesn't include NONE string
|
|
|
|
#
|
|
|
|
function random_get
|
|
|
|
{
|
|
|
|
_random_get "$#" "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Detect if the current system support slog
|
|
|
|
#
|
|
|
|
function verify_slog_support
|
|
|
|
{
|
2017-09-25 20:32:34 +03:00
|
|
|
typeset dir=$TEST_BASE_DIR/disk.$$
|
2015-07-02 01:23:09 +03:00
|
|
|
typeset pool=foo.$$
|
|
|
|
typeset vdev=$dir/a
|
|
|
|
typeset sdev=$dir/b
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
mkdir -p $dir
|
|
|
|
mkfile $MINVDEVSIZE $vdev $sdev
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
typeset -i ret=0
|
2017-04-06 03:18:22 +03:00
|
|
|
if ! zpool create -n $pool $vdev log $sdev > /dev/null 2>&1; then
|
2015-07-02 01:23:09 +03:00
|
|
|
ret=1
|
|
|
|
fi
|
2017-04-06 03:18:22 +03:00
|
|
|
rm -r $dir
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
return $ret
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# The function will generate a dataset name with specific length
|
|
|
|
# $1, the length of the name
|
|
|
|
# $2, the base string to construct the name
|
|
|
|
#
|
|
|
|
function gen_dataset_name
|
|
|
|
{
|
|
|
|
typeset -i len=$1
|
|
|
|
typeset basestr="$2"
|
|
|
|
typeset -i baselen=${#basestr}
|
|
|
|
typeset -i iter=0
|
|
|
|
typeset l_name=""
|
|
|
|
|
|
|
|
if ((len % baselen == 0)); then
|
|
|
|
((iter = len / baselen))
|
|
|
|
else
|
|
|
|
((iter = len / baselen + 1))
|
|
|
|
fi
|
|
|
|
while ((iter > 0)); do
|
|
|
|
l_name="${l_name}$basestr"
|
|
|
|
|
|
|
|
((iter -= 1))
|
|
|
|
done
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
echo $l_name
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Get cksum tuple of dataset
|
|
|
|
# $1 dataset name
|
|
|
|
#
|
|
|
|
# sample zdb output:
|
|
|
|
# Dataset data/test [ZPL], ID 355, cr_txg 2413856, 31.0K, 7 objects, rootbp
|
|
|
|
# DVA[0]=<0:803046400:200> DVA[1]=<0:81199000:200> [L0 DMU objset] fletcher4
|
|
|
|
# lzjb LE contiguous unique double size=800L/200P birth=2413856L/2413856P
|
|
|
|
# fill=7 cksum=11ce125712:643a9c18ee2:125e25238fca0:254a3f74b59744
|
|
|
|
function datasetcksum
|
|
|
|
{
|
|
|
|
typeset cksum
|
2017-04-06 03:18:22 +03:00
|
|
|
sync
|
|
|
|
cksum=$(zdb -vvv $1 | grep "^Dataset $1 \[" | grep "cksum" \
|
|
|
|
| awk -F= '{print $7}')
|
|
|
|
echo $cksum
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Get cksum of file
|
|
|
|
# #1 file path
|
|
|
|
#
|
|
|
|
function checksum
|
|
|
|
{
|
|
|
|
typeset cksum
|
2017-04-06 03:18:22 +03:00
|
|
|
cksum=$(cksum $1 | awk '{print $1}')
|
|
|
|
echo $cksum
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Get the given disk/slice state from the specific field of the pool
|
|
|
|
#
|
|
|
|
function get_device_state #pool disk field("", "spares","logs")
|
|
|
|
{
|
|
|
|
typeset pool=$1
|
|
|
|
typeset disk=${2#$DEV_DSKDIR/}
|
|
|
|
typeset field=${3:-$pool}
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
state=$(zpool status -v "$pool" 2>/dev/null | \
|
|
|
|
nawk -v device=$disk -v pool=$pool -v field=$field \
|
2015-07-02 01:23:09 +03:00
|
|
|
'BEGIN {startconfig=0; startfield=0; }
|
|
|
|
/config:/ {startconfig=1}
|
|
|
|
(startconfig==1) && ($1==field) {startfield=1; next;}
|
|
|
|
(startfield==1) && ($1==device) {print $2; exit;}
|
|
|
|
(startfield==1) &&
|
|
|
|
($1==field || $1 ~ "^spares$" || $1 ~ "^logs$") {startfield=0}')
|
|
|
|
echo $state
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# print the given directory filesystem type
|
|
|
|
#
|
|
|
|
# $1 directory name
|
|
|
|
#
|
|
|
|
function get_fstype
|
|
|
|
{
|
|
|
|
typeset dir=$1
|
|
|
|
|
|
|
|
if [[ -z $dir ]]; then
|
|
|
|
log_fail "Usage: get_fstype <directory>"
|
|
|
|
fi
|
|
|
|
|
|
|
|
#
|
|
|
|
# $ df -n /
|
|
|
|
# / : ufs
|
|
|
|
#
|
2017-04-06 03:18:22 +03:00
|
|
|
df -n $dir | awk '{print $3}'
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Given a disk, label it to VTOC regardless what label was on the disk
|
|
|
|
# $1 disk
|
|
|
|
#
|
|
|
|
function labelvtoc
|
|
|
|
{
|
|
|
|
typeset disk=$1
|
|
|
|
if [[ -z $disk ]]; then
|
|
|
|
log_fail "The disk name is unspecified."
|
|
|
|
fi
|
|
|
|
typeset label_file=/var/tmp/labelvtoc.$$
|
2017-04-06 03:18:22 +03:00
|
|
|
typeset arch=$(uname -p)
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
if is_linux || is_freebsd; then
|
2015-07-02 01:23:09 +03:00
|
|
|
log_note "Currently unsupported by the test framework"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $arch == "i386" ]]; then
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "label" > $label_file
|
|
|
|
echo "0" >> $label_file
|
|
|
|
echo "" >> $label_file
|
|
|
|
echo "q" >> $label_file
|
|
|
|
echo "q" >> $label_file
|
2015-07-02 01:23:09 +03:00
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
fdisk -B $disk >/dev/null 2>&1
|
2015-07-02 01:23:09 +03:00
|
|
|
# wait a while for fdisk finishes
|
2017-04-06 03:18:22 +03:00
|
|
|
sleep 60
|
2015-07-02 01:23:09 +03:00
|
|
|
elif [[ $arch == "sparc" ]]; then
|
2017-04-06 03:18:22 +03:00
|
|
|
echo "label" > $label_file
|
|
|
|
echo "0" >> $label_file
|
|
|
|
echo "" >> $label_file
|
|
|
|
echo "" >> $label_file
|
|
|
|
echo "" >> $label_file
|
|
|
|
echo "q" >> $label_file
|
2015-07-02 01:23:09 +03:00
|
|
|
else
|
|
|
|
log_fail "unknown arch type"
|
|
|
|
fi
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
format -e -s -d $disk -f $label_file
|
2015-07-02 01:23:09 +03:00
|
|
|
typeset -i ret_val=$?
|
2017-04-06 03:18:22 +03:00
|
|
|
rm -f $label_file
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
# wait the format to finish
|
|
|
|
#
|
2017-04-06 03:18:22 +03:00
|
|
|
sleep 60
|
2015-07-02 01:23:09 +03:00
|
|
|
if ((ret_val != 0)); then
|
|
|
|
log_fail "unable to label $disk as VTOC."
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# check if the system was installed as zfsroot or not
|
2019-09-03 04:14:53 +03:00
|
|
|
# return: 0 if zfsroot, non-zero if not
|
2015-07-02 01:23:09 +03:00
|
|
|
#
|
|
|
|
function is_zfsroot
|
|
|
|
{
|
2017-04-06 03:18:22 +03:00
|
|
|
df -n / | grep zfs > /dev/null 2>&1
|
2015-07-02 01:23:09 +03:00
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# get the root filesystem name if it's zfsroot system.
|
|
|
|
#
|
|
|
|
# return: root filesystem name
|
|
|
|
function get_rootfs
|
|
|
|
{
|
|
|
|
typeset rootfs=""
|
2016-12-03 10:13:44 +03:00
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
if is_freebsd; then
|
|
|
|
rootfs=$(mount -p | awk '$2 == "/" && $3 == "zfs" {print $1}')
|
|
|
|
elif ! is_linux; then
|
2016-12-03 10:13:44 +03:00
|
|
|
rootfs=$(awk '{if ($2 == "/" && $3 == "zfs") print $1}' \
|
|
|
|
/etc/mnttab)
|
|
|
|
fi
|
2015-07-02 01:23:09 +03:00
|
|
|
if [[ -z "$rootfs" ]]; then
|
|
|
|
log_fail "Can not get rootfs"
|
|
|
|
fi
|
2017-04-06 03:18:22 +03:00
|
|
|
zfs list $rootfs > /dev/null 2>&1
|
2015-07-02 01:23:09 +03:00
|
|
|
if (($? == 0)); then
|
2017-04-06 03:18:22 +03:00
|
|
|
echo $rootfs
|
2015-07-02 01:23:09 +03:00
|
|
|
else
|
|
|
|
log_fail "This is not a zfsroot system."
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# get the rootfs's pool name
|
|
|
|
# return:
|
|
|
|
# rootpool name
|
|
|
|
#
|
|
|
|
function get_rootpool
|
|
|
|
{
|
|
|
|
typeset rootfs=""
|
|
|
|
typeset rootpool=""
|
2016-12-03 10:13:44 +03:00
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
if is_freebsd; then
|
|
|
|
rootfs=$(mount -p | awk '$2 == "/" && $3 == "zfs" {print $1}')
|
|
|
|
elif ! is_linux; then
|
2016-12-03 10:13:44 +03:00
|
|
|
rootfs=$(awk '{if ($2 == "/" && $3 =="zfs") print $1}' \
|
|
|
|
/etc/mnttab)
|
|
|
|
fi
|
2015-07-02 01:23:09 +03:00
|
|
|
if [[ -z "$rootfs" ]]; then
|
|
|
|
log_fail "Can not get rootpool"
|
|
|
|
fi
|
2017-04-06 03:18:22 +03:00
|
|
|
zfs list $rootfs > /dev/null 2>&1
|
2015-07-02 01:23:09 +03:00
|
|
|
if (($? == 0)); then
|
2019-12-18 23:29:43 +03:00
|
|
|
echo ${rootfs%%/*}
|
2015-07-02 01:23:09 +03:00
|
|
|
else
|
|
|
|
log_fail "This is not a zfsroot system."
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Get the word numbers from a string separated by white space
|
|
|
|
#
|
|
|
|
function get_word_count
|
|
|
|
{
|
2017-04-06 03:18:22 +03:00
|
|
|
echo $1 | wc -w
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# To verify if the require numbers of disks is given
|
|
|
|
#
|
|
|
|
function verify_disk_count
|
|
|
|
{
|
|
|
|
typeset -i min=${2:-1}
|
|
|
|
|
|
|
|
typeset -i count=$(get_word_count "$1")
|
|
|
|
|
|
|
|
if ((count < min)); then
|
|
|
|
log_untested "A minimum of $min disks is required to run." \
|
|
|
|
" You specified $count disk(s)"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function ds_is_volume
|
|
|
|
{
|
|
|
|
typeset type=$(get_prop type $1)
|
|
|
|
[[ $type = "volume" ]] && return 0
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
function ds_is_filesystem
|
|
|
|
{
|
|
|
|
typeset type=$(get_prop type $1)
|
|
|
|
[[ $type = "filesystem" ]] && return 0
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
function ds_is_snapshot
|
|
|
|
{
|
|
|
|
typeset type=$(get_prop type $1)
|
|
|
|
[[ $type = "snapshot" ]] && return 0
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Check if Trusted Extensions are installed and enabled
|
|
|
|
#
|
|
|
|
function is_te_enabled
|
|
|
|
{
|
2017-04-06 03:18:22 +03:00
|
|
|
svcs -H -o state labeld 2>/dev/null | grep "enabled"
|
2015-07-02 01:23:09 +03:00
|
|
|
if (($? != 0)); then
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Utility function to determine if a system has multiple cpus.
|
|
|
|
function is_mp
|
|
|
|
{
|
|
|
|
if is_linux; then
|
2017-04-06 03:18:22 +03:00
|
|
|
(($(nproc) > 1))
|
2019-12-18 23:29:43 +03:00
|
|
|
elif is_freebsd; then
|
|
|
|
sysctl -n kern.smp.cpus
|
2015-07-02 01:23:09 +03:00
|
|
|
else
|
2017-04-06 03:18:22 +03:00
|
|
|
(($(psrinfo | wc -l) > 1))
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_cpu_freq
|
|
|
|
{
|
|
|
|
if is_linux; then
|
2017-04-06 03:18:22 +03:00
|
|
|
lscpu | awk '/CPU MHz/ { print $3 }'
|
2019-12-18 23:29:43 +03:00
|
|
|
elif is_freebsd; then
|
|
|
|
cat /var/run/dmesg.boot | grep '^CPU:' | cut -d '(' -f 2 | cut -d ')' -f 1
|
2015-07-02 01:23:09 +03:00
|
|
|
else
|
2017-04-06 03:18:22 +03:00
|
|
|
psrinfo -v 0 | awk '/processor operates at/ {print $6}'
|
2015-07-02 01:23:09 +03:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Run the given command as the user provided.
|
|
|
|
function user_run
|
|
|
|
{
|
|
|
|
typeset user=$1
|
|
|
|
shift
|
|
|
|
|
2016-06-07 19:16:52 +03:00
|
|
|
log_note "user:$user $@"
|
2019-12-18 23:29:43 +03:00
|
|
|
if is_freebsd; then
|
|
|
|
eval "su \$user -c \"$@\"" > $TEST_BASE_DIR/out 2>$TEST_BASE_DIR/err
|
|
|
|
return $?
|
|
|
|
else
|
|
|
|
eval su - \$user -c \"$@\" > $TEST_BASE_DIR/out 2>$TEST_BASE_DIR/err
|
|
|
|
return $?
|
|
|
|
fi
|
2015-07-02 01:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Check if the pool contains the specified vdevs
|
|
|
|
#
|
|
|
|
# $1 pool
|
|
|
|
# $2..n <vdev> ...
|
|
|
|
#
|
|
|
|
# Return 0 if the vdevs are contained in the pool, 1 if any of the specified
|
|
|
|
# vdevs is not in the pool, and 2 if pool name is missing.
|
|
|
|
#
|
|
|
|
function vdevs_in_pool
|
|
|
|
{
|
|
|
|
typeset pool=$1
|
|
|
|
typeset vdev
|
|
|
|
|
|
|
|
if [[ -z $pool ]]; then
|
|
|
|
log_note "Missing pool name."
|
|
|
|
return 2
|
|
|
|
fi
|
|
|
|
|
|
|
|
shift
|
|
|
|
|
2018-12-04 20:37:37 +03:00
|
|
|
# We could use 'zpool list' to only get the vdevs of the pool but we
|
|
|
|
# can't reference a mirror/raidz vdev using its ID (i.e mirror-0),
|
|
|
|
# therefore we use the 'zpool status' output.
|
2017-04-06 03:18:22 +03:00
|
|
|
typeset tmpfile=$(mktemp)
|
2018-12-04 20:37:37 +03:00
|
|
|
zpool status -v "$pool" | grep -A 1000 "config:" >$tmpfile
|
2015-07-02 01:23:09 +03:00
|
|
|
for vdev in $@; do
|
2017-04-06 03:18:22 +03:00
|
|
|
grep -w ${vdev##*/} $tmpfile >/dev/null 2>&1
|
2015-07-02 01:23:09 +03:00
|
|
|
[[ $? -ne 0 ]] && return 1
|
|
|
|
done
|
|
|
|
|
2017-04-06 03:18:22 +03:00
|
|
|
rm -f $tmpfile
|
2015-07-02 01:23:09 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-08-04 00:26:15 +03:00
|
|
|
function get_max
|
|
|
|
{
|
|
|
|
typeset -l i max=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
for i in "$@"; do
|
|
|
|
max=$(echo $((max > i ? max : i)))
|
|
|
|
done
|
|
|
|
|
|
|
|
echo $max
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_min
|
|
|
|
{
|
|
|
|
typeset -l i min=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
for i in "$@"; do
|
|
|
|
min=$(echo $((min < i ? min : i)))
|
|
|
|
done
|
|
|
|
|
|
|
|
echo $min
|
|
|
|
}
|
|
|
|
|
2017-04-12 00:56:54 +03:00
|
|
|
# Write data that can be compressed into a directory
|
|
|
|
function write_compressible
|
|
|
|
{
|
|
|
|
typeset dir=$1
|
|
|
|
typeset megs=$2
|
|
|
|
typeset nfiles=${3:-1}
|
|
|
|
typeset bs=${4:-1024k}
|
|
|
|
typeset fname=${5:-file}
|
|
|
|
|
|
|
|
[[ -d $dir ]] || log_fail "No directory: $dir"
|
|
|
|
|
|
|
|
# Under Linux fio is not currently used since its behavior can
|
|
|
|
# differ significantly across versions. This includes missing
|
|
|
|
# command line options and cases where the --buffer_compress_*
|
|
|
|
# options fail to behave as expected.
|
|
|
|
if is_linux; then
|
|
|
|
typeset file_bytes=$(to_bytes $megs)
|
|
|
|
typeset bs_bytes=4096
|
|
|
|
typeset blocks=$(($file_bytes / $bs_bytes))
|
|
|
|
|
|
|
|
for (( i = 0; i < $nfiles; i++ )); do
|
|
|
|
truncate -s $file_bytes $dir/$fname.$i
|
|
|
|
|
|
|
|
# Write every third block to get 66% compression.
|
|
|
|
for (( j = 0; j < $blocks; j += 3 )); do
|
|
|
|
dd if=/dev/urandom of=$dir/$fname.$i \
|
|
|
|
seek=$j bs=$bs_bytes count=1 \
|
|
|
|
conv=notrunc >/dev/null 2>&1
|
|
|
|
done
|
|
|
|
done
|
|
|
|
else
|
|
|
|
log_must eval "fio \
|
|
|
|
--name=job \
|
|
|
|
--fallocate=0 \
|
|
|
|
--minimal \
|
|
|
|
--randrepeat=0 \
|
|
|
|
--buffer_compress_percentage=66 \
|
|
|
|
--buffer_compress_chunk=4096 \
|
|
|
|
--directory=$dir \
|
|
|
|
--numjobs=$nfiles \
|
|
|
|
--nrfiles=$nfiles \
|
|
|
|
--rw=write \
|
|
|
|
--bs=$bs \
|
|
|
|
--filesize=$megs \
|
|
|
|
--filename_format='$fname.\$jobnum' >/dev/null"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_objnum
|
|
|
|
{
|
|
|
|
typeset pathname=$1
|
|
|
|
typeset objnum
|
|
|
|
|
|
|
|
[[ -e $pathname ]] || log_fail "No such file or directory: $pathname"
|
2019-12-18 23:29:43 +03:00
|
|
|
if is_freebsd; then
|
|
|
|
objnum=$(stat -f "%i" $pathname)
|
|
|
|
else
|
|
|
|
objnum=$(stat -c %i $pathname)
|
|
|
|
fi
|
2017-04-12 00:56:54 +03:00
|
|
|
echo $objnum
|
|
|
|
}
|
|
|
|
|
2016-10-04 21:46:10 +03:00
|
|
|
#
|
2017-05-19 22:33:11 +03:00
|
|
|
# Sync data to the pool
|
2016-10-04 21:46:10 +03:00
|
|
|
#
|
|
|
|
# $1 pool name
|
2017-05-19 22:33:11 +03:00
|
|
|
# $2 boolean to force uberblock (and config including zpool cache file) update
|
2016-10-04 21:46:10 +03:00
|
|
|
#
|
2017-05-19 22:33:11 +03:00
|
|
|
function sync_pool #pool <force>
|
2016-10-04 21:46:10 +03:00
|
|
|
{
|
|
|
|
typeset pool=${1:-$TESTPOOL}
|
2017-05-19 22:33:11 +03:00
|
|
|
typeset force=${2:-false}
|
2016-10-04 21:46:10 +03:00
|
|
|
|
2017-05-19 22:33:11 +03:00
|
|
|
if [[ $force == true ]]; then
|
|
|
|
log_must zpool sync -f $pool
|
|
|
|
else
|
|
|
|
log_must zpool sync $pool
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
2016-10-04 21:46:10 +03:00
|
|
|
}
|
2017-02-09 02:27:37 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Wait for zpool 'freeing' property drops to zero.
|
|
|
|
#
|
|
|
|
# $1 pool name
|
|
|
|
#
|
|
|
|
function wait_freeing #pool
|
|
|
|
{
|
|
|
|
typeset pool=${1:-$TESTPOOL}
|
|
|
|
while true; do
|
2017-04-06 03:18:22 +03:00
|
|
|
[[ "0" == "$(zpool list -Ho freeing $pool)" ]] && break
|
|
|
|
log_must sleep 1
|
2017-02-09 02:27:37 +03:00
|
|
|
done
|
|
|
|
}
|
2017-03-02 19:47:26 +03:00
|
|
|
|
2017-05-03 19:31:05 +03:00
|
|
|
#
|
|
|
|
# Wait for every device replace operation to complete
|
|
|
|
#
|
|
|
|
# $1 pool name
|
|
|
|
#
|
|
|
|
function wait_replacing #pool
|
|
|
|
{
|
|
|
|
typeset pool=${1:-$TESTPOOL}
|
|
|
|
while true; do
|
|
|
|
[[ "" == "$(zpool status $pool |
|
|
|
|
awk '/replacing-[0-9]+/ {print $1}')" ]] && break
|
|
|
|
log_must sleep 1
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2018-02-23 22:38:05 +03:00
|
|
|
#
|
|
|
|
# Wait for a pool to be scrubbed
|
|
|
|
#
|
|
|
|
# $1 pool name
|
|
|
|
# $2 number of seconds to wait (optional)
|
|
|
|
#
|
|
|
|
# Returns true when pool has been scrubbed, or false if there's a timeout or if
|
|
|
|
# no scrub was done.
|
|
|
|
#
|
|
|
|
function wait_scrubbed
|
|
|
|
{
|
|
|
|
typeset pool=${1:-$TESTPOOL}
|
2018-12-14 21:06:49 +03:00
|
|
|
while true ; do
|
|
|
|
is_pool_scrubbed $pool && break
|
|
|
|
log_must sleep 1
|
2018-02-23 22:38:05 +03:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2018-03-07 02:41:52 +03:00
|
|
|
# Backup the zed.rc in our test directory so that we can edit it for our test.
|
|
|
|
#
|
|
|
|
# Returns: Backup file name. You will need to pass this to zed_rc_restore().
|
|
|
|
function zed_rc_backup
|
|
|
|
{
|
|
|
|
zedrc_backup="$(mktemp)"
|
|
|
|
cp $ZEDLET_DIR/zed.rc $zedrc_backup
|
|
|
|
echo $zedrc_backup
|
|
|
|
}
|
|
|
|
|
|
|
|
function zed_rc_restore
|
|
|
|
{
|
|
|
|
mv $1 $ZEDLET_DIR/zed.rc
|
|
|
|
}
|
|
|
|
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
#
|
|
|
|
# Setup custom environment for the ZED.
|
|
|
|
#
|
2018-02-23 22:38:05 +03:00
|
|
|
# $@ Optional list of zedlets to run under zed.
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
function zed_setup
|
|
|
|
{
|
|
|
|
if ! is_linux; then
|
2019-12-18 23:29:43 +03:00
|
|
|
log_unsupported "No zed on $(uname)"
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ! -d $ZEDLET_DIR ]]; then
|
|
|
|
log_must mkdir $ZEDLET_DIR
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ! -e $VDEVID_CONF ]]; then
|
|
|
|
log_must touch $VDEVID_CONF
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -e $VDEVID_CONF_ETC ]]; then
|
|
|
|
log_fail "Must not have $VDEVID_CONF_ETC file present on system"
|
|
|
|
fi
|
2018-02-23 22:38:05 +03:00
|
|
|
EXTRA_ZEDLETS=$@
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
|
|
|
|
# Create a symlink for /etc/zfs/vdev_id.conf file.
|
|
|
|
log_must ln -s $VDEVID_CONF $VDEVID_CONF_ETC
|
|
|
|
|
|
|
|
# Setup minimal ZED configuration. Individual test cases should
|
|
|
|
# add additional ZEDLETs as needed for their specific test.
|
2017-05-18 22:57:21 +03:00
|
|
|
log_must cp ${ZEDLET_ETC_DIR}/zed.rc $ZEDLET_DIR
|
|
|
|
log_must cp ${ZEDLET_ETC_DIR}/zed-functions.sh $ZEDLET_DIR
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
|
2018-02-23 22:38:05 +03:00
|
|
|
# Scripts must only be user writable.
|
|
|
|
if [[ -n "$EXTRA_ZEDLETS" ]] ; then
|
|
|
|
saved_umask=$(umask)
|
|
|
|
log_must umask 0022
|
|
|
|
for i in $EXTRA_ZEDLETS ; do
|
|
|
|
log_must cp ${ZEDLET_LIBEXEC_DIR}/$i $ZEDLET_DIR
|
|
|
|
done
|
|
|
|
log_must umask $saved_umask
|
|
|
|
fi
|
|
|
|
|
2017-05-18 22:57:21 +03:00
|
|
|
# Customize the zed.rc file to enable the full debug log.
|
|
|
|
log_must sed -i '/\#ZED_DEBUG_LOG=.*/d' $ZEDLET_DIR/zed.rc
|
2017-10-23 19:45:59 +03:00
|
|
|
echo "ZED_DEBUG_LOG=$ZED_DEBUG_LOG" >>$ZEDLET_DIR/zed.rc
|
2017-05-18 22:57:21 +03:00
|
|
|
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Cleanup custom ZED environment.
|
|
|
|
#
|
2018-02-23 22:38:05 +03:00
|
|
|
# $@ Optional list of zedlets to remove from our test zed.d directory.
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
function zed_cleanup
|
|
|
|
{
|
|
|
|
if ! is_linux; then
|
|
|
|
return
|
|
|
|
fi
|
2018-02-23 22:38:05 +03:00
|
|
|
EXTRA_ZEDLETS=$@
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
|
|
|
|
log_must rm -f ${ZEDLET_DIR}/zed.rc
|
|
|
|
log_must rm -f ${ZEDLET_DIR}/zed-functions.sh
|
|
|
|
log_must rm -f ${ZEDLET_DIR}/all-syslog.sh
|
2017-05-18 22:57:21 +03:00
|
|
|
log_must rm -f ${ZEDLET_DIR}/all-debug.sh
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
log_must rm -f ${ZEDLET_DIR}/state
|
2018-02-23 22:38:05 +03:00
|
|
|
|
|
|
|
if [[ -n "$EXTRA_ZEDLETS" ]] ; then
|
|
|
|
for i in $EXTRA_ZEDLETS ; do
|
|
|
|
log_must rm -f ${ZEDLET_DIR}/$i
|
|
|
|
done
|
|
|
|
fi
|
2017-10-23 19:45:59 +03:00
|
|
|
log_must rm -f $ZED_LOG
|
|
|
|
log_must rm -f $ZED_DEBUG_LOG
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
log_must rm -f $VDEVID_CONF_ETC
|
|
|
|
log_must rm -f $VDEVID_CONF
|
|
|
|
rmdir $ZEDLET_DIR
|
|
|
|
}
|
|
|
|
|
2017-03-02 19:47:26 +03:00
|
|
|
#
|
|
|
|
# Check if ZED is currently running, if not start ZED.
|
|
|
|
#
|
|
|
|
function zed_start
|
|
|
|
{
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
if ! is_linux; then
|
|
|
|
return
|
|
|
|
fi
|
2017-03-02 19:47:26 +03:00
|
|
|
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
# ZEDLET_DIR=/var/tmp/zed
|
|
|
|
if [[ ! -d $ZEDLET_DIR ]]; then
|
|
|
|
log_must mkdir $ZEDLET_DIR
|
|
|
|
fi
|
2017-03-02 19:47:26 +03:00
|
|
|
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
# Verify the ZED is not already running.
|
|
|
|
pgrep -x zed > /dev/null
|
|
|
|
if (($? == 0)); then
|
2020-02-26 03:02:10 +03:00
|
|
|
log_note "ZED already running"
|
|
|
|
else
|
|
|
|
log_note "Starting ZED"
|
|
|
|
# run ZED in the background and redirect foreground logging
|
|
|
|
# output to $ZED_LOG.
|
|
|
|
log_must truncate -s 0 $ZED_DEBUG_LOG
|
|
|
|
log_must eval "zed -vF -d $ZEDLET_DIR -p $ZEDLET_DIR/zed.pid -P $PATH" \
|
|
|
|
"-s $ZEDLET_DIR/state 2>$ZED_LOG &"
|
2017-03-02 19:47:26 +03:00
|
|
|
fi
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
|
2017-05-18 22:57:21 +03:00
|
|
|
return 0
|
2017-03-02 19:47:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Kill ZED process
|
|
|
|
#
|
|
|
|
function zed_stop
|
|
|
|
{
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
if ! is_linux; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2017-05-18 22:57:21 +03:00
|
|
|
log_note "Stopping ZED"
|
Enable remaining tests
Enable most of the remaining test cases which were previously
disabled. The required fixes are as follows:
* cache_001_pos - No changes required.
* cache_010_neg - Updated to use losetup under Linux. Loopback
cache devices are allowed, ZVOLs as cache devices are not.
Disabled until all the builders pass reliably.
* cachefile_001_pos, cachefile_002_pos, cachefile_003_pos,
cachefile_004_pos - Set set_device_dir path in cachefile.cfg,
updated CPATH1 and CPATH2 to reference unique files.
* zfs_clone_005_pos - Wait for udev to create volumes.
* zfs_mount_007_pos - Updated mount options to expected Linux names.
* zfs_mount_009_neg, zfs_mount_all_001_pos - No changes required.
* zfs_unmount_005_pos, zfs_unmount_009_pos, zfs_unmount_all_001_pos -
Updated to expect -f to not unmount busy mount points under Linux.
* rsend_019_pos - Observed to occasionally take a long time on both
32-bit systems and the kmemleak builder.
* zfs_written_property_001_pos - Switched sync(1) to sync_pool.
* devices_001_pos, devices_002_neg - Updated create_dev_file() helper
for Linux.
* exec_002_neg.ksh - Fixed mmap_exec.c to preserve errno. Updated
test case to expect EPERM from Linux as described by mmap(2).
* grow_pool_001_pos - Adding missing setup.ksh and cleanup.ksh
scripts from OpenZFS.
* grow_replicas_001_pos.ksh - Added missing $SLICE_* variables.
* history_004_pos, history_006_neg, history_008_pos - Fixed by
previous commits and were not enabled. No changes required.
* zfs_allow_010_pos - Added missing spaces after assorted zfs
commands in delegate_common.kshlib.
* inuse_* - Illumos dump device tests skipped. Remaining test
cases updated to correctly create required partitions.
* large_files_001_pos - Fixed largest_file.c to accept EINVAL
as well as EFBIG as described in write(2).
* link_count_001 - Added nproc to required commands.
* umountall_001 - Updated to use umount -a.
* online_offline_001_* - Pull in OpenZFS change to file_trunc.c
to make the '-c 0' option run the test in a loop. Included
online_offline.cfg file in all test cases.
* rename_dirs_001_pos - Updated to use the rename_dir test binary,
pkill restricted to exact matches and total runtime reduced.
* slog_013_neg, write_dirs_002_pos - No changes required.
* slog_013_pos.ksh - Updated to use losetup under Linux.
* slog_014_pos.ksh - ZED will not be running, manually degrade
the damaged vdev as expected.
* nopwrite_varying_compression, nopwrite_volume - Forced pool
sync with sync_pool to ensure up to date property values.
* Fixed typos in ZED log messages. Refactored zed_* helper
functions to resolve all-syslog exit=1 errors in zedlog.
* zfs_copies_005_neg, zfs_get_004_pos, zpool_add_004_pos,
zpool_destroy_001_pos, largest_pool_001_pos, clone_001_pos.ksh,
clone_001_pos, - Skip until layering pools on zvols is solid.
* largest_pool_001_pos - Limited to 7eb pool, maximum
supported size in 8eb-1 on Linux.
* zpool_expand_001_pos, zpool_expand_003_neg - Requires
additional support from the ZED, updated skip reason.
* zfs_rollback_001_pos, zfs_rollback_002_pos - Properly cleanup
busy mount points under Linux between test loops.
* privilege_001_pos, privilege_003_pos, rollback_003_pos,
threadsappend_001_pos - Skip with log_unsupported.
* snapshot_016_pos - No changes required.
* snapshot_008_pos - Increased LIMIT from 512K to 2M and added
sync_pool to avoid false positives.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6128
2017-05-19 03:21:15 +03:00
|
|
|
if [[ -f ${ZEDLET_DIR}/zed.pid ]]; then
|
2018-10-31 20:00:06 +03:00
|
|
|
zedpid=$(<${ZEDLET_DIR}/zed.pid)
|
2017-10-23 19:45:59 +03:00
|
|
|
kill $zedpid
|
2017-12-09 03:58:41 +03:00
|
|
|
while ps -p $zedpid > /dev/null; do
|
|
|
|
sleep 1
|
|
|
|
done
|
2017-10-23 19:45:59 +03:00
|
|
|
rm -f ${ZEDLET_DIR}/zed.pid
|
2017-03-02 19:47:26 +03:00
|
|
|
fi
|
2017-05-18 22:57:21 +03:00
|
|
|
return 0
|
2017-03-02 19:47:26 +03:00
|
|
|
}
|
Enable additional test cases
Enable additional test cases, in most cases this required a few
minor modifications to the test scripts. In a few cases a real
bug was uncovered and fixed. And in a handful of cases where pools
are layered on pools the test case will be skipped until this is
supported. Details below for each test case.
* zpool_add_004_pos - Skip test on Linux until adding zvols to pools
is fully supported and deadlock free.
* zpool_add_005_pos.ksh - Skip dumpadm portion of the test which isn't
relevant for Linux. The find_vfstab_dev, find_mnttab_dev, and
save_dump_dev functions were updated accordingly for Linux. Add
O_EXCL to the in-use check to prevent the -f (force) option from
working for mounted filesystems and improve the resulting error.
* zpool_add_006_pos - Update test case such that it doesn't depend
on nested pools. Switch to truncate from mkfile to reduce space
requirements and speed up the test case.
* zpool_clear_001_pos - Speed up test case by filling filesystem to
25% capacity.
* zpool_create_002_pos, zpool_create_004_pos - Use sparse files for
file vdevs in order to avoid increasing the partition size.
* zpool_create_006_pos - 6ba1ce9 allows raidz+mirror configs with
similar redundancy. Updating the valid_args and forced_args cases.
* zpool_create_008_pos - Disable overlapping partition portion.
* zpool_create_011_neg - Fix to correctly create the extra partition.
Modified zpool_vdev.c to use fstat64_blk() wrapper which includes
the st_size even for block devices.
* zpool_create_012_neg - Updated to properly find swap devices.
* zpool_create_014_neg, zpool_create_015_neg - Updated to use
swap_setup() and swap_cleanup() wrappers which do the right thing
on Linux and Illumos. Removed '-n' option which succeeds under
Linux due to differences in the in-use checks.
* zpool_create_016_pos.ksh - Skipped test case isn't useful.
* zpool_create_020_pos - Added missing / to cleanup() function.
Remove cache file prior to test to ensure a clean environment
and avoid false positives.
* zpool_destroy_001_pos - Removed test case which creates a pool on
a zvol. This is more likely to deadlock under Linux and has never
been completely supported on any platform.
* zpool_destroy_002_pos - 'zpool destroy -f' is unsupported on Linux.
Mount point must not be busy in order to unmount them.
* zfs_destroy_001_pos - Handle EBUSY error which can occur with
volumes when racing with udev.
* zpool_expand_001_pos, zpool_expand_003_neg - Skip test on Linux
until adding zvols to pools is fully supported and deadlock free.
The test could be modified to use loop-back devices but it would
be preferable to use the test case as is for improved coverage.
* zpool_export_004_pos - Updated test case to such that it doesn't
depend on nested pools. Normal file vdev under /var/tmp are fine.
* zpool_import_all_001_pos - Updated to skip partition 1, which is
known as slice 2, on Illumos. This prevents overwriting the
default TESTPOOL which was causing the failure.
* zpool_import_002_pos, zpool_import_012_pos - No changes needed.
* zpool_remove_003_pos - No changes needed
* zpool_upgrade_002_pos, zpool_upgrade_004_pos - Root cause addressed
by upstream OpenZFS commit 3b7f360.
* zpool_upgrade_007_pos - Disabled in test case due to known failure.
Opened issue https://github.com/zfsonlinux/zfs/issues/6112
* zvol_misc_002_pos - Updated to to use ext2.
* zvol_misc_001_neg, zvol_misc_003_neg, zvol_misc_004_pos,
zvol_misc_005_neg, zvol_misc_006_pos - Moved to skip list, these
test case could be updated to use Linux's crash dump facility.
* zvol_swap_* - Updated to use swap_setup/swap_cleanup helpers.
File creation switched from /tmp to /var/tmp. Enabled minimal
useful tests for Linux, skip test cases which aren't applicable.
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: loli10K <ezomori.nozomu@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #3484
Issue #5634
Issue #2437
Issue #5202
Issue #4034
Closes #6095
2017-05-12 00:27:57 +03:00
|
|
|
|
2017-12-09 03:58:41 +03:00
|
|
|
#
|
|
|
|
# Drain all zevents
|
|
|
|
#
|
|
|
|
function zed_events_drain
|
|
|
|
{
|
|
|
|
while [ $(zpool events -H | wc -l) -ne 0 ]; do
|
|
|
|
sleep 1
|
|
|
|
zpool events -c >/dev/null
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2018-03-07 02:41:52 +03:00
|
|
|
# Set a variable in zed.rc to something, un-commenting it in the process.
|
|
|
|
#
|
|
|
|
# $1 variable
|
|
|
|
# $2 value
|
|
|
|
function zed_rc_set
|
|
|
|
{
|
|
|
|
var="$1"
|
|
|
|
val="$2"
|
|
|
|
# Remove the line
|
|
|
|
cmd="'/$var/d'"
|
|
|
|
eval sed -i $cmd $ZEDLET_DIR/zed.rc
|
|
|
|
|
|
|
|
# Add it at the end
|
|
|
|
echo "$var=$val" >> $ZEDLET_DIR/zed.rc
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Enable additional test cases
Enable additional test cases, in most cases this required a few
minor modifications to the test scripts. In a few cases a real
bug was uncovered and fixed. And in a handful of cases where pools
are layered on pools the test case will be skipped until this is
supported. Details below for each test case.
* zpool_add_004_pos - Skip test on Linux until adding zvols to pools
is fully supported and deadlock free.
* zpool_add_005_pos.ksh - Skip dumpadm portion of the test which isn't
relevant for Linux. The find_vfstab_dev, find_mnttab_dev, and
save_dump_dev functions were updated accordingly for Linux. Add
O_EXCL to the in-use check to prevent the -f (force) option from
working for mounted filesystems and improve the resulting error.
* zpool_add_006_pos - Update test case such that it doesn't depend
on nested pools. Switch to truncate from mkfile to reduce space
requirements and speed up the test case.
* zpool_clear_001_pos - Speed up test case by filling filesystem to
25% capacity.
* zpool_create_002_pos, zpool_create_004_pos - Use sparse files for
file vdevs in order to avoid increasing the partition size.
* zpool_create_006_pos - 6ba1ce9 allows raidz+mirror configs with
similar redundancy. Updating the valid_args and forced_args cases.
* zpool_create_008_pos - Disable overlapping partition portion.
* zpool_create_011_neg - Fix to correctly create the extra partition.
Modified zpool_vdev.c to use fstat64_blk() wrapper which includes
the st_size even for block devices.
* zpool_create_012_neg - Updated to properly find swap devices.
* zpool_create_014_neg, zpool_create_015_neg - Updated to use
swap_setup() and swap_cleanup() wrappers which do the right thing
on Linux and Illumos. Removed '-n' option which succeeds under
Linux due to differences in the in-use checks.
* zpool_create_016_pos.ksh - Skipped test case isn't useful.
* zpool_create_020_pos - Added missing / to cleanup() function.
Remove cache file prior to test to ensure a clean environment
and avoid false positives.
* zpool_destroy_001_pos - Removed test case which creates a pool on
a zvol. This is more likely to deadlock under Linux and has never
been completely supported on any platform.
* zpool_destroy_002_pos - 'zpool destroy -f' is unsupported on Linux.
Mount point must not be busy in order to unmount them.
* zfs_destroy_001_pos - Handle EBUSY error which can occur with
volumes when racing with udev.
* zpool_expand_001_pos, zpool_expand_003_neg - Skip test on Linux
until adding zvols to pools is fully supported and deadlock free.
The test could be modified to use loop-back devices but it would
be preferable to use the test case as is for improved coverage.
* zpool_export_004_pos - Updated test case to such that it doesn't
depend on nested pools. Normal file vdev under /var/tmp are fine.
* zpool_import_all_001_pos - Updated to skip partition 1, which is
known as slice 2, on Illumos. This prevents overwriting the
default TESTPOOL which was causing the failure.
* zpool_import_002_pos, zpool_import_012_pos - No changes needed.
* zpool_remove_003_pos - No changes needed
* zpool_upgrade_002_pos, zpool_upgrade_004_pos - Root cause addressed
by upstream OpenZFS commit 3b7f360.
* zpool_upgrade_007_pos - Disabled in test case due to known failure.
Opened issue https://github.com/zfsonlinux/zfs/issues/6112
* zvol_misc_002_pos - Updated to to use ext2.
* zvol_misc_001_neg, zvol_misc_003_neg, zvol_misc_004_pos,
zvol_misc_005_neg, zvol_misc_006_pos - Moved to skip list, these
test case could be updated to use Linux's crash dump facility.
* zvol_swap_* - Updated to use swap_setup/swap_cleanup helpers.
File creation switched from /tmp to /var/tmp. Enabled minimal
useful tests for Linux, skip test cases which aren't applicable.
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: loli10K <ezomori.nozomu@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #3484
Issue #5634
Issue #2437
Issue #5202
Issue #4034
Closes #6095
2017-05-12 00:27:57 +03:00
|
|
|
#
|
|
|
|
# Check is provided device is being active used as a swap device.
|
|
|
|
#
|
|
|
|
function is_swap_inuse
|
|
|
|
{
|
|
|
|
typeset device=$1
|
|
|
|
|
|
|
|
if [[ -z $device ]] ; then
|
|
|
|
log_note "No device specified."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_linux; then
|
|
|
|
swapon -s | grep -w $(readlink -f $device) > /dev/null 2>&1
|
2019-12-18 23:29:43 +03:00
|
|
|
elif is_freebsd; then
|
|
|
|
swapctl -l | grep -w $device
|
Enable additional test cases
Enable additional test cases, in most cases this required a few
minor modifications to the test scripts. In a few cases a real
bug was uncovered and fixed. And in a handful of cases where pools
are layered on pools the test case will be skipped until this is
supported. Details below for each test case.
* zpool_add_004_pos - Skip test on Linux until adding zvols to pools
is fully supported and deadlock free.
* zpool_add_005_pos.ksh - Skip dumpadm portion of the test which isn't
relevant for Linux. The find_vfstab_dev, find_mnttab_dev, and
save_dump_dev functions were updated accordingly for Linux. Add
O_EXCL to the in-use check to prevent the -f (force) option from
working for mounted filesystems and improve the resulting error.
* zpool_add_006_pos - Update test case such that it doesn't depend
on nested pools. Switch to truncate from mkfile to reduce space
requirements and speed up the test case.
* zpool_clear_001_pos - Speed up test case by filling filesystem to
25% capacity.
* zpool_create_002_pos, zpool_create_004_pos - Use sparse files for
file vdevs in order to avoid increasing the partition size.
* zpool_create_006_pos - 6ba1ce9 allows raidz+mirror configs with
similar redundancy. Updating the valid_args and forced_args cases.
* zpool_create_008_pos - Disable overlapping partition portion.
* zpool_create_011_neg - Fix to correctly create the extra partition.
Modified zpool_vdev.c to use fstat64_blk() wrapper which includes
the st_size even for block devices.
* zpool_create_012_neg - Updated to properly find swap devices.
* zpool_create_014_neg, zpool_create_015_neg - Updated to use
swap_setup() and swap_cleanup() wrappers which do the right thing
on Linux and Illumos. Removed '-n' option which succeeds under
Linux due to differences in the in-use checks.
* zpool_create_016_pos.ksh - Skipped test case isn't useful.
* zpool_create_020_pos - Added missing / to cleanup() function.
Remove cache file prior to test to ensure a clean environment
and avoid false positives.
* zpool_destroy_001_pos - Removed test case which creates a pool on
a zvol. This is more likely to deadlock under Linux and has never
been completely supported on any platform.
* zpool_destroy_002_pos - 'zpool destroy -f' is unsupported on Linux.
Mount point must not be busy in order to unmount them.
* zfs_destroy_001_pos - Handle EBUSY error which can occur with
volumes when racing with udev.
* zpool_expand_001_pos, zpool_expand_003_neg - Skip test on Linux
until adding zvols to pools is fully supported and deadlock free.
The test could be modified to use loop-back devices but it would
be preferable to use the test case as is for improved coverage.
* zpool_export_004_pos - Updated test case to such that it doesn't
depend on nested pools. Normal file vdev under /var/tmp are fine.
* zpool_import_all_001_pos - Updated to skip partition 1, which is
known as slice 2, on Illumos. This prevents overwriting the
default TESTPOOL which was causing the failure.
* zpool_import_002_pos, zpool_import_012_pos - No changes needed.
* zpool_remove_003_pos - No changes needed
* zpool_upgrade_002_pos, zpool_upgrade_004_pos - Root cause addressed
by upstream OpenZFS commit 3b7f360.
* zpool_upgrade_007_pos - Disabled in test case due to known failure.
Opened issue https://github.com/zfsonlinux/zfs/issues/6112
* zvol_misc_002_pos - Updated to to use ext2.
* zvol_misc_001_neg, zvol_misc_003_neg, zvol_misc_004_pos,
zvol_misc_005_neg, zvol_misc_006_pos - Moved to skip list, these
test case could be updated to use Linux's crash dump facility.
* zvol_swap_* - Updated to use swap_setup/swap_cleanup helpers.
File creation switched from /tmp to /var/tmp. Enabled minimal
useful tests for Linux, skip test cases which aren't applicable.
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: loli10K <ezomori.nozomu@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #3484
Issue #5634
Issue #2437
Issue #5202
Issue #4034
Closes #6095
2017-05-12 00:27:57 +03:00
|
|
|
else
|
|
|
|
swap -l | grep -w $device > /dev/null 2>&1
|
|
|
|
fi
|
|
|
|
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Setup a swap device using the provided device.
|
|
|
|
#
|
|
|
|
function swap_setup
|
|
|
|
{
|
|
|
|
typeset swapdev=$1
|
|
|
|
|
|
|
|
if is_linux; then
|
2017-07-31 21:07:05 +03:00
|
|
|
log_must eval "mkswap $swapdev > /dev/null 2>&1"
|
Enable additional test cases
Enable additional test cases, in most cases this required a few
minor modifications to the test scripts. In a few cases a real
bug was uncovered and fixed. And in a handful of cases where pools
are layered on pools the test case will be skipped until this is
supported. Details below for each test case.
* zpool_add_004_pos - Skip test on Linux until adding zvols to pools
is fully supported and deadlock free.
* zpool_add_005_pos.ksh - Skip dumpadm portion of the test which isn't
relevant for Linux. The find_vfstab_dev, find_mnttab_dev, and
save_dump_dev functions were updated accordingly for Linux. Add
O_EXCL to the in-use check to prevent the -f (force) option from
working for mounted filesystems and improve the resulting error.
* zpool_add_006_pos - Update test case such that it doesn't depend
on nested pools. Switch to truncate from mkfile to reduce space
requirements and speed up the test case.
* zpool_clear_001_pos - Speed up test case by filling filesystem to
25% capacity.
* zpool_create_002_pos, zpool_create_004_pos - Use sparse files for
file vdevs in order to avoid increasing the partition size.
* zpool_create_006_pos - 6ba1ce9 allows raidz+mirror configs with
similar redundancy. Updating the valid_args and forced_args cases.
* zpool_create_008_pos - Disable overlapping partition portion.
* zpool_create_011_neg - Fix to correctly create the extra partition.
Modified zpool_vdev.c to use fstat64_blk() wrapper which includes
the st_size even for block devices.
* zpool_create_012_neg - Updated to properly find swap devices.
* zpool_create_014_neg, zpool_create_015_neg - Updated to use
swap_setup() and swap_cleanup() wrappers which do the right thing
on Linux and Illumos. Removed '-n' option which succeeds under
Linux due to differences in the in-use checks.
* zpool_create_016_pos.ksh - Skipped test case isn't useful.
* zpool_create_020_pos - Added missing / to cleanup() function.
Remove cache file prior to test to ensure a clean environment
and avoid false positives.
* zpool_destroy_001_pos - Removed test case which creates a pool on
a zvol. This is more likely to deadlock under Linux and has never
been completely supported on any platform.
* zpool_destroy_002_pos - 'zpool destroy -f' is unsupported on Linux.
Mount point must not be busy in order to unmount them.
* zfs_destroy_001_pos - Handle EBUSY error which can occur with
volumes when racing with udev.
* zpool_expand_001_pos, zpool_expand_003_neg - Skip test on Linux
until adding zvols to pools is fully supported and deadlock free.
The test could be modified to use loop-back devices but it would
be preferable to use the test case as is for improved coverage.
* zpool_export_004_pos - Updated test case to such that it doesn't
depend on nested pools. Normal file vdev under /var/tmp are fine.
* zpool_import_all_001_pos - Updated to skip partition 1, which is
known as slice 2, on Illumos. This prevents overwriting the
default TESTPOOL which was causing the failure.
* zpool_import_002_pos, zpool_import_012_pos - No changes needed.
* zpool_remove_003_pos - No changes needed
* zpool_upgrade_002_pos, zpool_upgrade_004_pos - Root cause addressed
by upstream OpenZFS commit 3b7f360.
* zpool_upgrade_007_pos - Disabled in test case due to known failure.
Opened issue https://github.com/zfsonlinux/zfs/issues/6112
* zvol_misc_002_pos - Updated to to use ext2.
* zvol_misc_001_neg, zvol_misc_003_neg, zvol_misc_004_pos,
zvol_misc_005_neg, zvol_misc_006_pos - Moved to skip list, these
test case could be updated to use Linux's crash dump facility.
* zvol_swap_* - Updated to use swap_setup/swap_cleanup helpers.
File creation switched from /tmp to /var/tmp. Enabled minimal
useful tests for Linux, skip test cases which aren't applicable.
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: loli10K <ezomori.nozomu@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #3484
Issue #5634
Issue #2437
Issue #5202
Issue #4034
Closes #6095
2017-05-12 00:27:57 +03:00
|
|
|
log_must swapon $swapdev
|
2019-12-18 23:29:43 +03:00
|
|
|
elif is_freebsd; then
|
|
|
|
log_must swapctl -a $swapdev
|
Enable additional test cases
Enable additional test cases, in most cases this required a few
minor modifications to the test scripts. In a few cases a real
bug was uncovered and fixed. And in a handful of cases where pools
are layered on pools the test case will be skipped until this is
supported. Details below for each test case.
* zpool_add_004_pos - Skip test on Linux until adding zvols to pools
is fully supported and deadlock free.
* zpool_add_005_pos.ksh - Skip dumpadm portion of the test which isn't
relevant for Linux. The find_vfstab_dev, find_mnttab_dev, and
save_dump_dev functions were updated accordingly for Linux. Add
O_EXCL to the in-use check to prevent the -f (force) option from
working for mounted filesystems and improve the resulting error.
* zpool_add_006_pos - Update test case such that it doesn't depend
on nested pools. Switch to truncate from mkfile to reduce space
requirements and speed up the test case.
* zpool_clear_001_pos - Speed up test case by filling filesystem to
25% capacity.
* zpool_create_002_pos, zpool_create_004_pos - Use sparse files for
file vdevs in order to avoid increasing the partition size.
* zpool_create_006_pos - 6ba1ce9 allows raidz+mirror configs with
similar redundancy. Updating the valid_args and forced_args cases.
* zpool_create_008_pos - Disable overlapping partition portion.
* zpool_create_011_neg - Fix to correctly create the extra partition.
Modified zpool_vdev.c to use fstat64_blk() wrapper which includes
the st_size even for block devices.
* zpool_create_012_neg - Updated to properly find swap devices.
* zpool_create_014_neg, zpool_create_015_neg - Updated to use
swap_setup() and swap_cleanup() wrappers which do the right thing
on Linux and Illumos. Removed '-n' option which succeeds under
Linux due to differences in the in-use checks.
* zpool_create_016_pos.ksh - Skipped test case isn't useful.
* zpool_create_020_pos - Added missing / to cleanup() function.
Remove cache file prior to test to ensure a clean environment
and avoid false positives.
* zpool_destroy_001_pos - Removed test case which creates a pool on
a zvol. This is more likely to deadlock under Linux and has never
been completely supported on any platform.
* zpool_destroy_002_pos - 'zpool destroy -f' is unsupported on Linux.
Mount point must not be busy in order to unmount them.
* zfs_destroy_001_pos - Handle EBUSY error which can occur with
volumes when racing with udev.
* zpool_expand_001_pos, zpool_expand_003_neg - Skip test on Linux
until adding zvols to pools is fully supported and deadlock free.
The test could be modified to use loop-back devices but it would
be preferable to use the test case as is for improved coverage.
* zpool_export_004_pos - Updated test case to such that it doesn't
depend on nested pools. Normal file vdev under /var/tmp are fine.
* zpool_import_all_001_pos - Updated to skip partition 1, which is
known as slice 2, on Illumos. This prevents overwriting the
default TESTPOOL which was causing the failure.
* zpool_import_002_pos, zpool_import_012_pos - No changes needed.
* zpool_remove_003_pos - No changes needed
* zpool_upgrade_002_pos, zpool_upgrade_004_pos - Root cause addressed
by upstream OpenZFS commit 3b7f360.
* zpool_upgrade_007_pos - Disabled in test case due to known failure.
Opened issue https://github.com/zfsonlinux/zfs/issues/6112
* zvol_misc_002_pos - Updated to to use ext2.
* zvol_misc_001_neg, zvol_misc_003_neg, zvol_misc_004_pos,
zvol_misc_005_neg, zvol_misc_006_pos - Moved to skip list, these
test case could be updated to use Linux's crash dump facility.
* zvol_swap_* - Updated to use swap_setup/swap_cleanup helpers.
File creation switched from /tmp to /var/tmp. Enabled minimal
useful tests for Linux, skip test cases which aren't applicable.
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: loli10K <ezomori.nozomu@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #3484
Issue #5634
Issue #2437
Issue #5202
Issue #4034
Closes #6095
2017-05-12 00:27:57 +03:00
|
|
|
else
|
|
|
|
log_must swap -a $swapdev
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Cleanup a swap device on the provided device.
|
|
|
|
#
|
|
|
|
function swap_cleanup
|
|
|
|
{
|
|
|
|
typeset swapdev=$1
|
|
|
|
|
|
|
|
if is_swap_inuse $swapdev; then
|
|
|
|
if is_linux; then
|
|
|
|
log_must swapoff $swapdev
|
2019-12-18 23:29:43 +03:00
|
|
|
elif is_freebsd; then
|
|
|
|
log_must swapoff $swapdev
|
Enable additional test cases
Enable additional test cases, in most cases this required a few
minor modifications to the test scripts. In a few cases a real
bug was uncovered and fixed. And in a handful of cases where pools
are layered on pools the test case will be skipped until this is
supported. Details below for each test case.
* zpool_add_004_pos - Skip test on Linux until adding zvols to pools
is fully supported and deadlock free.
* zpool_add_005_pos.ksh - Skip dumpadm portion of the test which isn't
relevant for Linux. The find_vfstab_dev, find_mnttab_dev, and
save_dump_dev functions were updated accordingly for Linux. Add
O_EXCL to the in-use check to prevent the -f (force) option from
working for mounted filesystems and improve the resulting error.
* zpool_add_006_pos - Update test case such that it doesn't depend
on nested pools. Switch to truncate from mkfile to reduce space
requirements and speed up the test case.
* zpool_clear_001_pos - Speed up test case by filling filesystem to
25% capacity.
* zpool_create_002_pos, zpool_create_004_pos - Use sparse files for
file vdevs in order to avoid increasing the partition size.
* zpool_create_006_pos - 6ba1ce9 allows raidz+mirror configs with
similar redundancy. Updating the valid_args and forced_args cases.
* zpool_create_008_pos - Disable overlapping partition portion.
* zpool_create_011_neg - Fix to correctly create the extra partition.
Modified zpool_vdev.c to use fstat64_blk() wrapper which includes
the st_size even for block devices.
* zpool_create_012_neg - Updated to properly find swap devices.
* zpool_create_014_neg, zpool_create_015_neg - Updated to use
swap_setup() and swap_cleanup() wrappers which do the right thing
on Linux and Illumos. Removed '-n' option which succeeds under
Linux due to differences in the in-use checks.
* zpool_create_016_pos.ksh - Skipped test case isn't useful.
* zpool_create_020_pos - Added missing / to cleanup() function.
Remove cache file prior to test to ensure a clean environment
and avoid false positives.
* zpool_destroy_001_pos - Removed test case which creates a pool on
a zvol. This is more likely to deadlock under Linux and has never
been completely supported on any platform.
* zpool_destroy_002_pos - 'zpool destroy -f' is unsupported on Linux.
Mount point must not be busy in order to unmount them.
* zfs_destroy_001_pos - Handle EBUSY error which can occur with
volumes when racing with udev.
* zpool_expand_001_pos, zpool_expand_003_neg - Skip test on Linux
until adding zvols to pools is fully supported and deadlock free.
The test could be modified to use loop-back devices but it would
be preferable to use the test case as is for improved coverage.
* zpool_export_004_pos - Updated test case to such that it doesn't
depend on nested pools. Normal file vdev under /var/tmp are fine.
* zpool_import_all_001_pos - Updated to skip partition 1, which is
known as slice 2, on Illumos. This prevents overwriting the
default TESTPOOL which was causing the failure.
* zpool_import_002_pos, zpool_import_012_pos - No changes needed.
* zpool_remove_003_pos - No changes needed
* zpool_upgrade_002_pos, zpool_upgrade_004_pos - Root cause addressed
by upstream OpenZFS commit 3b7f360.
* zpool_upgrade_007_pos - Disabled in test case due to known failure.
Opened issue https://github.com/zfsonlinux/zfs/issues/6112
* zvol_misc_002_pos - Updated to to use ext2.
* zvol_misc_001_neg, zvol_misc_003_neg, zvol_misc_004_pos,
zvol_misc_005_neg, zvol_misc_006_pos - Moved to skip list, these
test case could be updated to use Linux's crash dump facility.
* zvol_swap_* - Updated to use swap_setup/swap_cleanup helpers.
File creation switched from /tmp to /var/tmp. Enabled minimal
useful tests for Linux, skip test cases which aren't applicable.
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: loli10K <ezomori.nozomu@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #3484
Issue #5634
Issue #2437
Issue #5202
Issue #4034
Closes #6095
2017-05-12 00:27:57 +03:00
|
|
|
else
|
|
|
|
log_must swap -d $swapdev
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Set a global system tunable (64-bit value)
|
|
|
|
#
|
2020-01-15 01:57:28 +03:00
|
|
|
# $1 tunable name (use a NAME defined in tunables.cfg)
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
# $2 tunable values
|
|
|
|
#
|
|
|
|
function set_tunable64
|
|
|
|
{
|
|
|
|
set_tunable_impl "$1" "$2" Z
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Set a global system tunable (32-bit value)
|
|
|
|
#
|
2020-01-15 01:57:28 +03:00
|
|
|
# $1 tunable name (use a NAME defined in tunables.cfg)
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
# $2 tunable values
|
|
|
|
#
|
|
|
|
function set_tunable32
|
|
|
|
{
|
|
|
|
set_tunable_impl "$1" "$2" W
|
|
|
|
}
|
|
|
|
|
|
|
|
function set_tunable_impl
|
|
|
|
{
|
2020-01-15 01:57:28 +03:00
|
|
|
typeset name="$1"
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
typeset value="$2"
|
|
|
|
typeset mdb_cmd="$3"
|
|
|
|
typeset module="${4:-zfs}"
|
|
|
|
|
2020-01-15 01:57:28 +03:00
|
|
|
eval "typeset tunable=\$$name"
|
|
|
|
case "$tunable" in
|
|
|
|
UNSUPPORTED)
|
|
|
|
log_unsupported "Tunable '$name' is unsupported on $(uname)"
|
|
|
|
;;
|
|
|
|
"")
|
|
|
|
log_fail "Tunable '$name' must be added to tunables.cfg"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
[[ -z "$value" ]] && return 1
|
|
|
|
[[ -z "$mdb_cmd" ]] && return 1
|
|
|
|
|
|
|
|
case "$(uname)" in
|
|
|
|
Linux)
|
|
|
|
typeset zfs_tunables="/sys/module/$module/parameters"
|
|
|
|
[[ -w "$zfs_tunables/$tunable" ]] || return 1
|
2019-06-19 20:39:28 +03:00
|
|
|
cat >"$zfs_tunables/$tunable" <<<"$value"
|
|
|
|
return $?
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
;;
|
2019-12-18 23:29:43 +03:00
|
|
|
FreeBSD)
|
|
|
|
sysctl vfs.zfs.$tunable=$value
|
|
|
|
return "$?"
|
|
|
|
;;
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
SunOS)
|
|
|
|
[[ "$module" -eq "zfs" ]] || return 1
|
|
|
|
echo "${tunable}/${mdb_cmd}0t${value}" | mdb -kw
|
2019-06-19 20:39:28 +03:00
|
|
|
return $?
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Get a global system tunable
|
|
|
|
#
|
2020-01-15 01:57:28 +03:00
|
|
|
# $1 tunable name (use a NAME defined in tunables.cfg)
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
#
|
|
|
|
function get_tunable
|
|
|
|
{
|
|
|
|
get_tunable_impl "$1"
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_tunable_impl
|
|
|
|
{
|
2020-01-15 01:57:28 +03:00
|
|
|
typeset name="$1"
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
typeset module="${2:-zfs}"
|
|
|
|
|
2020-01-15 01:57:28 +03:00
|
|
|
eval "typeset tunable=\$$name"
|
|
|
|
case "$tunable" in
|
|
|
|
UNSUPPORTED)
|
|
|
|
log_unsupported "Tunable '$name' is unsupported on $(uname)"
|
|
|
|
;;
|
|
|
|
"")
|
|
|
|
log_fail "Tunable '$name' must be added to tunables.cfg"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
|
|
|
|
case "$(uname)" in
|
|
|
|
Linux)
|
|
|
|
typeset zfs_tunables="/sys/module/$module/parameters"
|
|
|
|
[[ -f "$zfs_tunables/$tunable" ]] || return 1
|
|
|
|
cat $zfs_tunables/$tunable
|
2019-06-19 20:39:28 +03:00
|
|
|
return $?
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
;;
|
2019-12-18 23:29:43 +03:00
|
|
|
FreeBSD)
|
|
|
|
sysctl -n vfs.zfs.$tunable
|
|
|
|
;;
|
Multi-modifier protection (MMP)
Add multihost=on|off pool property to control MMP. When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp. Property defaults to off.
During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock. Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".
Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval. The period is specified in milliseconds. The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.
Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path. Abbreviated
output below.
$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg timestamp mmp_delay vdev_guid vdev_label vdev_path
20468 261337 250274925 68396651780 3 /dev/sda
20468 261339 252023374 6267402363293 1 /dev/sdc
20468 261340 252000858 6698080955233 1 /dev/sdx
20468 261341 251980635 783892869810 2 /dev/sdy
20468 261342 253385953 8923255792467 3 /dev/sdd
20468 261344 253336622 042125143176 0 /dev/sdab
20468 261345 253310522 1200778101278 2 /dev/sde
20468 261346 253286429 0950576198362 2 /dev/sdt
20468 261347 253261545 96209817917 3 /dev/sds
20468 261349 253238188 8555725937673 3 /dev/sdb
Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.
When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test. For example, the
pool is exported to run zdb and then imported again. Add a new ztest
function, "-M", to alter ztest behavior to prevent this.
Add new tests to verify the new functionality. Tests provided by
Giuseppe Di Natale.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
2017-07-08 06:20:35 +03:00
|
|
|
SunOS)
|
|
|
|
[[ "$module" -eq "zfs" ]] || return 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
OpenZFS 7614, 9064 - zfs device evacuation/removal
OpenZFS 7614 - zfs device evacuation/removal
OpenZFS 9064 - remove_mirror should wait for device removal to complete
This project allows top-level vdevs to be removed from the storage pool
with "zpool remove", reducing the total amount of storage in the pool.
This operation copies all allocated regions of the device to be removed
onto other devices, recording the mapping from old to new location.
After the removal is complete, read and free operations to the removed
(now "indirect") vdev must be remapped and performed at the new location
on disk. The indirect mapping table is kept in memory whenever the pool
is loaded, so there is minimal performance overhead when doing operations
on the indirect vdev.
The size of the in-memory mapping table will be reduced when its entries
become "obsolete" because they are no longer used by any block pointers
in the pool. An entry becomes obsolete when all the blocks that use
it are freed. An entry can also become obsolete when all the snapshots
that reference it are deleted, and the block pointers that reference it
have been "remapped" in all filesystems/zvols (and clones). Whenever an
indirect block is written, all the block pointers in it will be "remapped"
to their new (concrete) locations if possible. This process can be
accelerated by using the "zfs remap" command to proactively rewrite all
indirect blocks that reference indirect (removed) vdevs.
Note that when a device is removed, we do not verify the checksum of
the data that is copied. This makes the process much faster, but if it
were used on redundant vdevs (i.e. mirror or raidz vdevs), it would be
possible to copy the wrong data, when we have the correct data on e.g.
the other side of the mirror.
At the moment, only mirrors and simple top-level vdevs can be removed
and no removal is allowed if any of the top-level vdevs are raidz.
Porting Notes:
* Avoid zero-sized kmem_alloc() in vdev_compact_children().
The device evacuation code adds a dependency that
vdev_compact_children() be able to properly empty the vdev_child
array by setting it to NULL and zeroing vdev_children. Under Linux,
kmem_alloc() and related functions return a sentinel pointer rather
than NULL for zero-sized allocations.
* Remove comment regarding "mpt" driver where zfs_remove_max_segment
is initialized to SPA_MAXBLOCKSIZE.
Change zfs_condense_indirect_commit_entry_delay_ticks to
zfs_condense_indirect_commit_entry_delay_ms for consistency with
most other tunables in which delays are specified in ms.
* ZTS changes:
Use set_tunable rather than mdb
Use zpool sync as appropriate
Use sync_pool instead of sync
Kill jobs during test_removal_with_operation to allow unmount/export
Don't add non-disk names such as "mirror" or "raidz" to $DISKS
Use $TEST_BASE_DIR instead of /tmp
Increase HZ from 100 to 1000 which is more common on Linux
removal_multiple_indirection.ksh
Reduce iterations in order to not time out on the code
coverage builders.
removal_resume_export:
Functionally, the test case is correct but there exists a race
where the kernel thread hasn't been fully started yet and is
not visible. Wait for up to 1 second for the removal thread
to be started before giving up on it. Also, increase the
amount of data copied in order that the removal not finish
before the export has a chance to fail.
* MMP compatibility, the concept of concrete versus non-concrete devices
has slightly changed the semantics of vdev_writeable(). Update
mmp_random_leaf_impl() accordingly.
* Updated dbuf_remap() to handle the org.zfsonlinux:large_dnode pool
feature which is not supported by OpenZFS.
* Added support for new vdev removal tracepoints.
* Test cases removal_with_zdb and removal_condense_export have been
intentionally disabled. When run manually they pass as intended,
but when running in the automated test environment they produce
unreliable results on the latest Fedora release.
They may work better once the upstream pool import refectoring is
merged into ZoL at which point they will be re-enabled.
Authored by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Alex Reece <alex@delphix.com>
Reviewed-by: George Wilson <george.wilson@delphix.com>
Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Reviewed-by: Prakash Surya <prakash.surya@delphix.com>
Reviewed by: Richard Laager <rlaager@wiktel.com>
Reviewed by: Tim Chase <tim@chase2k.com>
Reviewed by: Brian Behlendorf <behlendorf1@llnl.gov>
Approved by: Garrett D'Amore <garrett@damore.org>
Ported-by: Tim Chase <tim@chase2k.com>
Signed-off-by: Tim Chase <tim@chase2k.com>
OpenZFS-issue: https://www.illumos.org/issues/7614
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/f539f1eb
Closes #6900
2016-09-22 19:30:13 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Prints the current time in seconds since UNIX Epoch.
|
|
|
|
#
|
|
|
|
function current_epoch
|
|
|
|
{
|
|
|
|
printf '%(%s)T'
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Get decimal value of global uint32_t variable using mdb.
|
|
|
|
#
|
|
|
|
function mdb_get_uint32
|
|
|
|
{
|
|
|
|
typeset variable=$1
|
|
|
|
typeset value
|
|
|
|
|
|
|
|
value=$(mdb -k -e "$variable/X | ::eval .=U")
|
|
|
|
if [[ $? -ne 0 ]]; then
|
|
|
|
log_fail "Failed to get value of '$variable' from mdb."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo $value
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Set global uint32_t variable to a decimal value using mdb.
|
|
|
|
#
|
|
|
|
function mdb_set_uint32
|
|
|
|
{
|
|
|
|
typeset variable=$1
|
|
|
|
typeset value=$2
|
|
|
|
|
|
|
|
mdb -kw -e "$variable/W 0t$value" > /dev/null
|
|
|
|
if [[ $? -ne 0 ]]; then
|
|
|
|
echo "Failed to set '$variable' to '$value' in mdb."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
2016-12-17 01:11:29 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Set global scalar integer variable to a hex value using mdb.
|
|
|
|
# Note: Target should have CTF data loaded.
|
|
|
|
#
|
|
|
|
function mdb_ctf_set_int
|
|
|
|
{
|
|
|
|
typeset variable=$1
|
|
|
|
typeset value=$2
|
|
|
|
|
|
|
|
mdb -kw -e "$variable/z $value" > /dev/null
|
|
|
|
if [[ $? -ne 0 ]]; then
|
|
|
|
echo "Failed to set '$variable' to '$value' in mdb."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
2019-09-05 19:51:59 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Compute MD5 digest for given file or stdin if no file given.
|
|
|
|
# Note: file path must not contain spaces
|
|
|
|
#
|
|
|
|
function md5digest
|
|
|
|
{
|
|
|
|
typeset file=$1
|
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
md5 -q $file
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
md5sum -b $file | awk '{ print $1 }'
|
|
|
|
;;
|
|
|
|
esac
|
2019-09-05 19:51:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Compute SHA256 digest for given file or stdin if no file given.
|
|
|
|
# Note: file path must not contain spaces
|
|
|
|
#
|
|
|
|
function sha256digest
|
|
|
|
{
|
|
|
|
typeset file=$1
|
|
|
|
|
2019-12-18 23:29:43 +03:00
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
sha256 -q $file
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
sha256sum -b $file | awk '{ print $1 }'
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
function new_fs #<args>
|
|
|
|
{
|
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
newfs "$@"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo y | newfs -v "$@"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
function stat_size #<path>
|
|
|
|
{
|
|
|
|
typeset path=$1
|
|
|
|
|
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
stat -f %z "$path"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
stat -c %s "$path"
|
|
|
|
;;
|
|
|
|
esac
|
2019-09-05 19:51:59 +03:00
|
|
|
}
|
2019-12-20 03:26:07 +03:00
|
|
|
|
|
|
|
# Run a command as if it was being run in a TTY.
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
#
|
|
|
|
# faketty command
|
|
|
|
#
|
|
|
|
function faketty
|
|
|
|
{
|
|
|
|
if is_freebsd; then
|
2020-02-13 00:04:51 +03:00
|
|
|
script -q /dev/null env "$@"
|
2019-12-20 03:26:07 +03:00
|
|
|
else
|
|
|
|
script --return --quiet -c "$*" /dev/null
|
|
|
|
fi
|
|
|
|
}
|
2020-01-09 20:31:17 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Produce a random permutation of the integers in a given range (inclusive).
|
|
|
|
#
|
|
|
|
function range_shuffle # begin end
|
|
|
|
{
|
|
|
|
typeset -i begin=$1
|
|
|
|
typeset -i end=$2
|
|
|
|
|
2020-01-28 19:36:33 +03:00
|
|
|
seq ${begin} ${end} | sort -R
|
2020-01-09 20:31:17 +03:00
|
|
|
}
|
2020-01-11 00:24:59 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Cross-platform xattr helpers
|
|
|
|
#
|
|
|
|
|
|
|
|
function get_xattr # name path
|
|
|
|
{
|
|
|
|
typeset name=$1
|
|
|
|
typeset path=$2
|
|
|
|
|
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
getextattr -qq user "${name}" "${path}"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
attr -qg "${name}" "${path}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
function set_xattr # name value path
|
|
|
|
{
|
|
|
|
typeset name=$1
|
|
|
|
typeset value=$2
|
|
|
|
typeset path=$3
|
|
|
|
|
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
setextattr user "${name}" "${value}" "${path}"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
attr -qs "${name}" -V "${value}" "${path}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
function set_xattr_stdin # name value
|
|
|
|
{
|
|
|
|
typeset name=$1
|
|
|
|
typeset path=$2
|
|
|
|
|
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
setextattr -i user "${name}" "${path}"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
attr -qs "${name}" "${path}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
function rm_xattr # name path
|
|
|
|
{
|
|
|
|
typeset name=$1
|
|
|
|
typeset path=$2
|
|
|
|
|
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
rmextattr -q user "${name}" "${path}"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
attr -qr "${name}" "${path}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
function ls_xattr # path
|
|
|
|
{
|
|
|
|
typeset path=$1
|
|
|
|
|
|
|
|
case $(uname) in
|
|
|
|
FreeBSD)
|
|
|
|
lsextattr -qq user "${path}"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
attr -ql "${path}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|