1#!/usr/bin/env python 2# 3# Test for backup-top filter permission activation failure 4# 5# Copyright (c) 2019 Virtuozzo International GmbH. 6# 7# This program is free software; you can redistribute it and/or modify 8# it under the terms of the GNU General Public License as published by 9# the Free Software Foundation; either version 2 of the License, or 10# (at your option) any later version. 11# 12# This program is distributed in the hope that it will be useful, 13# but WITHOUT ANY WARRANTY; without even the implied warranty of 14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15# GNU General Public License for more details. 16# 17# You should have received a copy of the GNU General Public License 18# along with this program. If not, see <http://www.gnu.org/licenses/>. 19# 20 21import iotests 22 23# The test is unrelated to formats, restrict it to qcow2 to avoid extra runs 24iotests.verify_image_format(supported_fmts=['qcow2']) 25 26size = 1024 * 1024 27 28""" Test description 29 30When performing a backup, all writes on the source subtree must go through the 31backup-top filter so it can copy all data to the target before it is changed. 32backup-top filter is appended above source node, to achieve this thing, so all 33parents of source node are handled. A configuration with side parents of source 34sub-tree with write permission is unsupported (we'd have append several 35backup-top filter like nodes to handle such parents). The test create an 36example of such configuration and checks that a backup is then not allowed 37(blockdev-backup command should fail). 38 39The configuration: 40 41 ┌────────┐ target ┌─────────────┐ 42 │ target │ ◀─────── │ backup_top │ 43 └────────┘ └─────────────┘ 44 │ 45 │ backing 46 ▼ 47 ┌─────────────┐ 48 │ source │ 49 └─────────────┘ 50 │ 51 │ file 52 ▼ 53 ┌─────────────┐ write perm ┌───────┐ 54 │ base │ ◀──────────── │ other │ 55 └─────────────┘ └───────┘ 56 57On activation (see .active field of backup-top state in block/backup-top.c), 58backup-top is going to unshare write permission on its source child. Write 59unsharing will be propagated to the "source->base" link and will conflict with 60other node write permission. So permission update will fail and backup job will 61not be started. 62 63Note, that the only thing which prevents backup of running on such 64configuration is default permission propagation scheme. It may be altered by 65different block drivers, so backup will run in invalid configuration. But 66something is better than nothing. Also, before the previous commit (commit 67preceding this test creation), starting backup on such configuration led to 68crash, so current "something" is a lot better, and this test actual goal is 69to check that crash is fixed :) 70""" 71 72vm = iotests.VM() 73vm.launch() 74 75vm.qmp_log('blockdev-add', **{ 76 'node-name': 'target', 77 'driver': 'null-co', 78 'size': size, 79}) 80 81vm.qmp_log('blockdev-add', **{ 82 'node-name': 'source', 83 'driver': 'blkdebug', 84 'image': {'node-name': 'base', 'driver': 'null-co', 'size': size} 85}) 86 87vm.qmp_log('blockdev-add', **{ 88 'node-name': 'other', 89 'driver': 'blkdebug', 90 'image': 'base', 91 'take-child-perms': ['write'] 92}) 93 94vm.qmp_log('blockdev-backup', sync='full', device='source', target='target') 95 96vm.shutdown() 97