f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#!/bin/ksh -p
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# CDDL HEADER START
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# The contents of this file are subject to the terms of the
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Common Development and Distribution License (the "License").
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# You may not use this file except in compliance with the License.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# or http://www.opensolaris.org/os/licensing.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# See the License for the specific language governing permissions
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# and limitations under the License.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# When distributing Covered Code, include this CDDL HEADER in each
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# If applicable, add the following below this CDDL HEADER, with the
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# fields enclosed by brackets "[]" replaced with your own identifying
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# information: Portions Copyright [yyyy] [name of copyright owner]
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# CDDL HEADER END
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Use is subject to license terms.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedy# Copyright (c) 2013, 2016 by Delphix. All rights reserved.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy. $STF_SUITE/tests/functional/rsend/rsend.kshlib
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# DESCRIPTION:
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# zfs send -R -i send incremental from fs@init to fs@final.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# STRATEGY:
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 1. Create a set of snapshots and fill with data.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 2. Create sub filesystems.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 3. Create final snapshot
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 4. Verify zfs send -R -i will backup all the datasets which has
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# snapshot suffix @final
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyverify_runnable "both"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_assert "zfs send -R -i send incremental from fs@init to fs@final."
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_onexit cleanup_pool $POOL2
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Duplicate POOL2 for testing
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedylog_must eval "zfs send -R $POOL@final > $BACKDIR/pool-final-R"
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedylog_must eval "zfs receive -d -F $POOL2 < $BACKDIR/pool-final-R"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyif is_global_zone ; then
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy #
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy # Testing send -R -i backup from pool
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy #
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy srclist=$(getds_with_suffix $POOL2 @final)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy interlist="$srclist $(getds_with_suffix $POOL2 @snapC)"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy interlist="$interlist $(getds_with_suffix $POOL2 @snapB)"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy interlist="$interlist $(getds_with_suffix $POOL2 @snapA)"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedy log_must eval "zfs send -R -i @init $POOL2@final > " \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy "$BACKDIR/pool-init-final-iR"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_must destroy_tree $interlist
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedy log_must eval "zfs receive -d -F $POOL2 < $BACKDIR/pool-init-final-iR"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy # Get current datasets with suffix @final
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy dstlist=$(getds_with_suffix $POOL2 @final)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy if [[ $srclist != $dstlist ]]; then
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_fail "Unexpected: srclist($srclist) != dstlist($dstlist)"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy fi
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_must cmp_ds_cont $POOL $POOL2
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyfi
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedydstds=$(get_dst_ds $POOL $POOL2)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Testing send -R -i backup from filesystem
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedylog_must eval "zfs send -R -i @init $dstds/$FS@final > " \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy "$BACKDIR/fs-init-final-iR"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedysrclist=$(getds_with_suffix $dstds/$FS @final)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyinterlist="$srclist $(getds_with_suffix $dstds/$FS @snapC)"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyinterlist="$interlist $(getds_with_suffix $dstds/$FS @snapB)"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyinterlist="$interlist $(getds_with_suffix $dstds/$FS @snapA)"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_must destroy_tree $interlist
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyif is_global_zone ; then
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedy log_must eval "zfs receive -d -F $POOL2 < $BACKDIR/fs-init-final-iR"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyelse
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedy zfs receive -F -d $dstds/$FS < $BACKDIR/fs-init-final-iR
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyfi
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedydstlist=$(getds_with_suffix $dstds/$FS @final)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyif [[ $srclist != $dstlist ]]; then
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_fail "Unexpected: srclist($srclist) != dstlist($dstlist)"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyfi
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_must cmp_ds_cont $POOL $POOL2
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyif is_global_zone ; then
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy #
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy # Testing send -R -i backup from volume
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy #
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy srclist=$(getds_with_suffix $POOL2/$FS/vol @final)
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedy log_must eval "zfs send -R -i @init $POOL2/$FS/vol@final > " \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy "$BACKDIR/vol-init-final-iR"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_must destroy_tree $srclist
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedy log_must eval "zfs receive -d $POOL2 < $BACKDIR/vol-init-final-iR"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy dstlist=$(getds_with_suffix $POOL2/$FS/vol @final)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy if [[ $srclist != $dstlist ]]; then
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_fail "Unexpected: srclist($srclist) != dstlist($dstlist)"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy fi
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_must cmp_ds_cont $POOL $POOL2
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyfi
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_pass "zfs send -R -i send incremental from fs@init to fs@final."