mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-05-05 08:22:44 +03:00

Because resuming from a token requires "guid" -> "snapshot" mapping we have to walk the whole dataset hierarchy to find the right snapshot to send; when both source and destination exists, for an incremental resumable stream, libzfs gets confused and picks up the wrong snapshot to send from: this results in attempting to send "destination@snap1 -> source@snap2" instead of "source@snap1 -> source@snap2" which fails with a "Invalid cross-device link" error (EXDEV). Fix this by adjusting the logic behind dataset traversal in zfs_iter_children() to pick the right snapshot to send from. Additionally update dry-run 'zfs send -t' to print its output to stderr: this is consistent with other dry-run commands. Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: loli10K <ezomori.nozomu@gmail.com> Closes #6618 Closes #6619 Closes #6623
50 lines
1.5 KiB
Bash
Executable File
50 lines
1.5 KiB
Bash
Executable File
#!/bin/ksh -p
|
|
|
|
#
|
|
# This file and its contents are supplied under the terms of the
|
|
# Common Development and Distribution License ("CDDL"), version 1.0.
|
|
# You may only use this file in accordance with the terms of version
|
|
# 1.0 of the CDDL.
|
|
#
|
|
# A full copy of the text of the CDDL should have accompanied this
|
|
# source. A copy of the CDDL is also available via the Internet at
|
|
# http://www.illumos.org/license/CDDL.
|
|
#
|
|
|
|
#
|
|
# Copyright (c) 2015 by Delphix. All rights reserved.
|
|
#
|
|
|
|
. $STF_SUITE/tests/functional/rsend/rsend.kshlib
|
|
|
|
#
|
|
# Description:
|
|
# Verify resumability of full and incremental ZFS send/receive with the -c
|
|
# (compress) flag in the presence of a corrupted stream.
|
|
#
|
|
# Strategy:
|
|
# 1. Start a full ZFS send with the -c flag (compress), redirect output to
|
|
# a file
|
|
# 2. Mess up the contents of the stream state file on disk
|
|
# 3. Try ZFS receive, which should fail with a checksum mismatch error
|
|
# 4. ZFS send to the stream state file again using the receive_resume_token
|
|
# 5. ZFS receieve and verify the receive completes successfully
|
|
# 6. Repeat steps on an incremental ZFS send
|
|
#
|
|
|
|
verify_runnable "both"
|
|
|
|
sendfs=$POOL/sendfs
|
|
recvfs=$POOL2/recvfs
|
|
streamfs=$POOL/stream
|
|
|
|
log_assert "Verify compressed send streams can be resumed if interrupted"
|
|
log_onexit resume_cleanup $sendfs $streamfs
|
|
|
|
test_fs_setup $sendfs $recvfs $streamfs
|
|
resume_test "zfs send -c -v $sendfs@a" $streamfs $recvfs
|
|
resume_test "zfs send -c -v -i @a $sendfs@b" $streamfs $recvfs
|
|
file_check $sendfs $recvfs
|
|
|
|
log_pass "Compressed send streams can be resumed if interrupted"
|