| 
									
										
										
										
											2020-01-30 17:32:30 +01:00
										 |  |  | #!/usr/bin/env python3 | 
					
						
							| 
									
										
										
										
											2021-01-16 16:44:19 +03:00
										 |  |  | # group: rw quick | 
					
						
							| 
									
										
										
										
											2018-04-21 15:29:29 +02:00
										 |  |  | # | 
					
						
							|  |  |  | # Copy-on-read tests using a COR filter node | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Copyright (C) 2018 Red Hat, Inc. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  | # it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  | # the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  | # (at your option) any later version. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | # but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | # GNU General Public License for more details. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | # along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2022-03-22 13:42:12 -04:00
										 |  |  | # Creator/Owner: Hanna Reitz <hreitz@redhat.com> | 
					
						
							| 
									
										
										
										
											2018-04-21 15:29:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import iotests | 
					
						
							| 
									
										
										
										
											2022-04-18 17:15:03 -04:00
										 |  |  | from iotests import log, qemu_img, qemu_io | 
					
						
							| 
									
										
										
										
											2018-04-21 15:29:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Need backing file support | 
					
						
							| 
									
										
										
										
											2020-03-30 20:00:11 -04:00
										 |  |  | iotests.script_initialize(supported_fmts=['qcow2', 'qcow', 'qed', 'vmdk'], | 
					
						
							|  |  |  |                           supported_platforms=['linux']) | 
					
						
							| 
									
										
										
										
											2018-04-21 15:29:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | log('') | 
					
						
							|  |  |  | log('=== Copy-on-read across nodes ===') | 
					
						
							|  |  |  | log('') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # The old copy-on-read mechanism without a filter node cannot request | 
					
						
							|  |  |  | # WRITE_UNCHANGED permissions for its child.  Therefore it just tries | 
					
						
							|  |  |  | # to sneak its write by the usual permission system and holds its | 
					
						
							|  |  |  | # fingers crossed.  However, that sneaking does not work so well when | 
					
						
							|  |  |  | # there is a filter node in the way: That will receive the write | 
					
						
							|  |  |  | # request and re-issue a new one to its child, which this time is a | 
					
						
							|  |  |  | # proper write request that will make the permission system cough -- | 
					
						
							|  |  |  | # unless there is someone at the top (like a guest device) that has | 
					
						
							|  |  |  | # requested write permissions. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # A COR filter node, however, can request the proper permissions for | 
					
						
							|  |  |  | # its child and therefore is not hit by this issue. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | with iotests.FilePath('base.img') as base_img_path, \ | 
					
						
							|  |  |  |      iotests.FilePath('top.img') as top_img_path, \ | 
					
						
							|  |  |  |      iotests.VM() as vm: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     log('--- Setting up images ---') | 
					
						
							|  |  |  |     log('') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-21 16:16:03 -04:00
										 |  |  |     qemu_img('create', '-f', iotests.imgfmt, base_img_path, '64M') | 
					
						
							| 
									
										
										
										
											2022-04-18 17:15:03 -04:00
										 |  |  |     qemu_io(base_img_path, '-c', 'write -P 1 0M 1M') | 
					
						
							| 
									
										
										
										
											2022-03-21 16:16:03 -04:00
										 |  |  |     qemu_img('create', '-f', iotests.imgfmt, '-b', base_img_path, | 
					
						
							|  |  |  |              '-F', iotests.imgfmt, top_img_path) | 
					
						
							| 
									
										
										
										
											2022-04-18 17:15:03 -04:00
										 |  |  |     qemu_io(top_img_path,  '-c', 'write -P 2 1M 1M') | 
					
						
							| 
									
										
										
										
											2018-04-21 15:29:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 21:43:02 +02:00
										 |  |  |     log('Done') | 
					
						
							| 
									
										
										
										
											2018-04-21 15:29:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     log('') | 
					
						
							|  |  |  |     log('--- Doing COR ---') | 
					
						
							|  |  |  |     log('') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Compare with e.g. the following: | 
					
						
							|  |  |  |     #   vm.add_drive_raw('if=none,node-name=node0,copy-on-read=on,driver=raw,' \ | 
					
						
							|  |  |  |     #                    'file.driver=%s,file.file.filename=%s' % | 
					
						
							|  |  |  |     #                       (iotests.imgfmt, top_img_path)) | 
					
						
							|  |  |  |     # (Remove the blockdev-add instead.) | 
					
						
							|  |  |  |     # ((Not tested here because it hits an assertion in the permission | 
					
						
							|  |  |  |     #   system.)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     vm.launch() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     log(vm.qmp('blockdev-add', | 
					
						
							|  |  |  |                     node_name='node0', | 
					
						
							|  |  |  |                     driver='copy-on-read', | 
					
						
							|  |  |  |                     file={ | 
					
						
							|  |  |  |                         'driver': 'raw', | 
					
						
							|  |  |  |                         'file': { | 
					
						
							|  |  |  |                             'driver': 'copy-on-read', | 
					
						
							|  |  |  |                             'file': { | 
					
						
							|  |  |  |                                 'driver': 'raw', | 
					
						
							|  |  |  |                                 'file': { | 
					
						
							|  |  |  |                                     'driver': iotests.imgfmt, | 
					
						
							|  |  |  |                                     'file': { | 
					
						
							|  |  |  |                                         'driver': 'file', | 
					
						
							|  |  |  |                                         'filename': top_img_path | 
					
						
							|  |  |  |                                     }, | 
					
						
							|  |  |  |                                     'backing': { | 
					
						
							|  |  |  |                                         'driver': iotests.imgfmt, | 
					
						
							|  |  |  |                                         'file': { | 
					
						
							|  |  |  |                                             'driver': 'file', | 
					
						
							|  |  |  |                                             'filename': base_img_path | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     })) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Trigger COR | 
					
						
							|  |  |  |     log(vm.qmp('human-monitor-command', | 
					
						
							|  |  |  |                command_line='qemu-io node0 "read 0 64M"')) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     vm.shutdown() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     log('') | 
					
						
							|  |  |  |     log('--- Checking COR result ---') | 
					
						
							|  |  |  |     log('') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-18 17:15:03 -04:00
										 |  |  |     qemu_io(base_img_path, '-c', 'discard 0 64M') | 
					
						
							|  |  |  |     qemu_io(top_img_path,  '-c', 'read -P 1 0M 1M') | 
					
						
							|  |  |  |     qemu_io(top_img_path,  '-c', 'read -P 2 1M 1M') | 
					
						
							| 
									
										
										
										
											2018-05-09 21:43:02 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     log('Done') |