[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v8 03/11] parallels: Fix data_end after out-of-image check
From: |
Alexander Ivanov |
Subject: |
[PATCH v8 03/11] parallels: Fix data_end after out-of-image check |
Date: |
Sun, 15 Jan 2023 16:58:13 +0100 |
Set data_end to the end of the last cluster inside the image.
In such a way we can be sure that corrupted offsets in the BAT
can't affect on the image size.
Signed-off-by: Alexander Ivanov <alexander.ivanov@virtuozzo.com>
Reviewed-by: Denis V. Lunev <den@openvz.org>
---
block/parallels.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/block/parallels.c b/block/parallels.c
index 436b36bbd9..9fe0f33ba9 100644
--- a/block/parallels.c
+++ b/block/parallels.c
@@ -514,6 +514,8 @@ static int coroutine_fn parallels_co_check(BlockDriverState
*bs,
}
}
+ s->data_end = res->image_end_offset >> BDRV_SECTOR_BITS;
+
out:
qemu_co_mutex_unlock(&s->lock);
return ret;
--
2.34.1
- [PATCH v8 00/11] parallels: Refactor the code of images checks and fix a bug, Alexander Ivanov, 2023/01/15
- [PATCH v8 02/11] parallels: Fix high_off calculation in parallels_co_check(), Alexander Ivanov, 2023/01/15
- [PATCH v8 06/11] parallels: Move check of unclean image to a separate function, Alexander Ivanov, 2023/01/15
- [PATCH v8 10/11] parallels: Replace qemu_co_mutex_lock by WITH_QEMU_LOCK_GUARD, Alexander Ivanov, 2023/01/15
- [PATCH v8 08/11] parallels: Move check of leaks to a separate function, Alexander Ivanov, 2023/01/15
- [PATCH v8 05/11] parallels: Use generic infrastructure for BAT writing in parallels_co_check(), Alexander Ivanov, 2023/01/15
- [PATCH v8 01/11] parallels: Out of image offset in BAT leads to image inflation, Alexander Ivanov, 2023/01/15
- [PATCH v8 03/11] parallels: Fix data_end after out-of-image check,
Alexander Ivanov <=
- [PATCH v8 04/11] parallels: create parallels_set_bat_entry_helper() to assign BAT value, Alexander Ivanov, 2023/01/15
- [PATCH v8 09/11] parallels: Move statistic collection to a separate function, Alexander Ivanov, 2023/01/15
- [PATCH v8 07/11] parallels: Move check of cluster outside image to a separate function, Alexander Ivanov, 2023/01/15
- [PATCH v8 11/11] parallels: Incorrect condition in out-of-image check, Alexander Ivanov, 2023/01/15