1 | The following changes since commit ba29883206d92a29ad5a466e679ccfc2ee6132ef: | 1 | The following changes since commit 474f3938d79ab36b9231c9ad3b5a9314c2aeacde: |
---|---|---|---|
2 | 2 | ||
3 | Merge remote-tracking branch 'remotes/borntraeger/tags/s390x-20200310' into staging (2020-03-10 16:50:28 +0000) | 3 | Merge remote-tracking branch 'remotes/amarkovic/tags/mips-queue-jun-21-2019' into staging (2019-06-21 15:40:50 +0100) |
4 | 4 | ||
5 | are available in the Git repository at: | 5 | are available in the Git repository at: |
6 | 6 | ||
7 | https://github.com/XanClic/qemu.git tags/pull-block-2020-03-11 | 7 | https://github.com/XanClic/qemu.git tags/pull-block-2019-06-24 |
8 | 8 | ||
9 | for you to fetch changes up to 397f4e9d83e9c0000905f0a988ba1aeda162571c: | 9 | for you to fetch changes up to ab5d4a30f7f3803ca5106b370969c1b7b54136f8: |
10 | 10 | ||
11 | block/block-copy: hide structure definitions (2020-03-11 12:42:30 +0100) | 11 | iotests: Fix 205 for concurrent runs (2019-06-24 16:01:40 +0200) |
12 | 12 | ||
13 | ---------------------------------------------------------------- | 13 | ---------------------------------------------------------------- |
14 | Block patches for the 5.0 softfreeze: | 14 | Block patches: |
15 | - qemu-img measure for LUKS | 15 | - The SSH block driver now uses libssh instead of libssh2 |
16 | - Improve block-copy's performance by reducing inter-request | 16 | - The VMDK block driver gets read-only support for the seSparse |
17 | dependencies | 17 | subformat |
18 | - Make curl's detection of accept-ranges more robust | 18 | - Various fixes |
19 | - Memleak fixes | 19 | |
20 | - iotest fix | 20 | --- |
21 | |||
22 | v2: | ||
23 | - Squashed Pino's fix for pre-0.8 libssh into the libssh patch | ||
21 | 24 | ||
22 | ---------------------------------------------------------------- | 25 | ---------------------------------------------------------------- |
23 | David Edmondson (2): | 26 | Anton Nefedov (1): |
24 | block/curl: HTTP header fields allow whitespace around values | 27 | iotest 134: test cluster-misaligned encrypted write |
25 | block/curl: HTTP header field names are case insensitive | ||
26 | 28 | ||
27 | Eric Blake (1): | 29 | Klaus Birkelund Jensen (1): |
28 | iotests: Fix nonportable use of od --endian | 30 | nvme: do not advertise support for unsupported arbitration mechanism |
29 | 31 | ||
30 | Pan Nengyuan (2): | 32 | Max Reitz (1): |
31 | block/qcow2: do free crypto_opts in qcow2_close() | 33 | iotests: Fix 205 for concurrent runs |
32 | qemu-img: free memory before re-assign | ||
33 | 34 | ||
34 | Stefan Hajnoczi (4): | 35 | Pino Toscano (1): |
35 | luks: extract qcrypto_block_calculate_payload_offset() | 36 | ssh: switch from libssh2 to libssh |
36 | luks: implement .bdrv_measure() | ||
37 | qemu-img: allow qemu-img measure --object without a filename | ||
38 | iotests: add 288 luks qemu-img measure test | ||
39 | 37 | ||
40 | Vladimir Sementsov-Ogievskiy (10): | 38 | Sam Eiderman (3): |
41 | block/qcow2-threads: fix qcow2_decompress | 39 | vmdk: Fix comment regarding max l1_size coverage |
42 | job: refactor progress to separate object | 40 | vmdk: Reduce the max bound for L1 table size |
43 | block/block-copy: fix progress calculation | 41 | vmdk: Add read-only support for seSparse snapshots |
44 | block/block-copy: specialcase first copy_range request | ||
45 | block/block-copy: use block_status | ||
46 | block/block-copy: factor out find_conflicting_inflight_req | ||
47 | block/block-copy: refactor interfaces to use bytes instead of end | ||
48 | block/block-copy: rename start to offset in interfaces | ||
49 | block/block-copy: reduce intersecting request lock | ||
50 | block/block-copy: hide structure definitions | ||
51 | 42 | ||
52 | block/backup-top.c | 6 +- | 43 | Vladimir Sementsov-Ogievskiy (1): |
53 | block/backup.c | 38 ++- | 44 | blockdev: enable non-root nodes for transaction drive-backup source |
54 | block/block-copy.c | 405 ++++++++++++++++++++++++------- | 45 | |
55 | block/crypto.c | 62 +++++ | 46 | configure | 65 +- |
56 | block/curl.c | 32 ++- | 47 | block/Makefile.objs | 6 +- |
57 | block/qcow2-threads.c | 12 +- | 48 | block/ssh.c | 652 ++++++++++-------- |
58 | block/qcow2.c | 75 ++---- | 49 | block/vmdk.c | 372 +++++++++- |
59 | block/trace-events | 1 + | 50 | blockdev.c | 2 +- |
60 | blockjob.c | 16 +- | 51 | hw/block/nvme.c | 1 - |
61 | crypto/block.c | 36 +++ | 52 | .travis.yml | 4 +- |
62 | include/block/block-copy.h | 65 +---- | 53 | block/trace-events | 14 +- |
63 | include/crypto/block.h | 22 ++ | 54 | docs/qemu-block-drivers.texi | 2 +- |
64 | include/qemu/job.h | 11 +- | 55 | .../dockerfiles/debian-win32-cross.docker | 1 - |
65 | include/qemu/progress_meter.h | 58 +++++ | 56 | .../dockerfiles/debian-win64-cross.docker | 1 - |
66 | job-qmp.c | 4 +- | 57 | tests/docker/dockerfiles/fedora.docker | 4 +- |
67 | job.c | 6 +- | 58 | tests/docker/dockerfiles/ubuntu.docker | 2 +- |
68 | qemu-img.c | 14 +- | 59 | tests/docker/dockerfiles/ubuntu1804.docker | 2 +- |
69 | tests/qemu-iotests/178 | 2 +- | 60 | tests/qemu-iotests/059.out | 2 +- |
70 | tests/qemu-iotests/178.out.qcow2 | 8 +- | 61 | tests/qemu-iotests/134 | 9 + |
71 | tests/qemu-iotests/178.out.raw | 8 +- | 62 | tests/qemu-iotests/134.out | 10 + |
72 | tests/qemu-iotests/288 | 93 +++++++ | 63 | tests/qemu-iotests/205 | 2 +- |
73 | tests/qemu-iotests/288.out | 30 +++ | 64 | tests/qemu-iotests/207 | 54 +- |
74 | tests/qemu-iotests/common.rc | 22 +- | 65 | tests/qemu-iotests/207.out | 2 +- |
75 | tests/qemu-iotests/group | 1 + | 66 | 20 files changed, 823 insertions(+), 384 deletions(-) |
76 | 24 files changed, 749 insertions(+), 278 deletions(-) | ||
77 | create mode 100644 include/qemu/progress_meter.h | ||
78 | create mode 100755 tests/qemu-iotests/288 | ||
79 | create mode 100644 tests/qemu-iotests/288.out | ||
80 | 67 | ||
81 | -- | 68 | -- |
82 | 2.24.1 | 69 | 2.21.0 |
83 | 70 | ||
84 | 71 | diff view generated by jsdifflib |
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | 1 | From: Klaus Birkelund Jensen <klaus@birkelund.eu> |
---|---|---|---|
2 | 2 | ||
3 | Currently, block_copy operation lock the whole requested region. But | 3 | The device mistakenly reports that the Weighted Round Robin with Urgent |
4 | there is no reason to lock clusters, which are already copied, it will | 4 | Priority Class arbitration mechanism is supported. |
5 | disturb other parallel block_copy requests for no reason. | ||
6 | 5 | ||
7 | Let's instead do the following: | 6 | It is not. |
8 | 7 | ||
9 | Lock only sub-region, which we are going to operate on. Then, after | 8 | Signed-off-by: Klaus Birkelund Jensen <klaus.jensen@cnexlabs.com> |
10 | copying all dirty sub-regions, we should wait for intersecting | 9 | Message-id: 20190606092530.14206-1-klaus@birkelund.eu |
11 | requests block-copy, if they failed, we should retry these new dirty | 10 | Acked-by: Maxim Levitsky <mlevitsk@redhat.com> |
12 | clusters. | ||
13 | |||
14 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
15 | Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com> | ||
16 | Message-Id: <20200311103004.7649-9-vsementsov@virtuozzo.com> | ||
17 | Signed-off-by: Max Reitz <mreitz@redhat.com> | 11 | Signed-off-by: Max Reitz <mreitz@redhat.com> |
18 | --- | 12 | --- |
19 | block/block-copy.c | 129 ++++++++++++++++++++++++++++++++++++--------- | 13 | hw/block/nvme.c | 1 - |
20 | 1 file changed, 105 insertions(+), 24 deletions(-) | 14 | 1 file changed, 1 deletion(-) |
21 | 15 | ||
22 | diff --git a/block/block-copy.c b/block/block-copy.c | 16 | diff --git a/hw/block/nvme.c b/hw/block/nvme.c |
23 | index XXXXXXX..XXXXXXX 100644 | 17 | index XXXXXXX..XXXXXXX 100644 |
24 | --- a/block/block-copy.c | 18 | --- a/hw/block/nvme.c |
25 | +++ b/block/block-copy.c | 19 | +++ b/hw/block/nvme.c |
26 | @@ -XXX,XX +XXX,XX @@ static BlockCopyInFlightReq *find_conflicting_inflight_req(BlockCopyState *s, | 20 | @@ -XXX,XX +XXX,XX @@ static void nvme_realize(PCIDevice *pci_dev, Error **errp) |
27 | return NULL; | 21 | n->bar.cap = 0; |
28 | } | 22 | NVME_CAP_SET_MQES(n->bar.cap, 0x7ff); |
29 | 23 | NVME_CAP_SET_CQR(n->bar.cap, 1); | |
30 | -static void coroutine_fn block_copy_wait_inflight_reqs(BlockCopyState *s, | 24 | - NVME_CAP_SET_AMS(n->bar.cap, 1); |
31 | - int64_t offset, | 25 | NVME_CAP_SET_TO(n->bar.cap, 0xf); |
32 | - int64_t bytes) | 26 | NVME_CAP_SET_CSS(n->bar.cap, 1); |
33 | +/* | 27 | NVME_CAP_SET_MPSMAX(n->bar.cap, 4); |
34 | + * If there are no intersecting requests return false. Otherwise, wait for the | ||
35 | + * first found intersecting request to finish and return true. | ||
36 | + */ | ||
37 | +static bool coroutine_fn block_copy_wait_one(BlockCopyState *s, int64_t offset, | ||
38 | + int64_t bytes) | ||
39 | { | ||
40 | - BlockCopyInFlightReq *req; | ||
41 | + BlockCopyInFlightReq *req = find_conflicting_inflight_req(s, offset, bytes); | ||
42 | |||
43 | - while ((req = find_conflicting_inflight_req(s, offset, bytes))) { | ||
44 | - qemu_co_queue_wait(&req->wait_queue, NULL); | ||
45 | + if (!req) { | ||
46 | + return false; | ||
47 | } | ||
48 | + | ||
49 | + qemu_co_queue_wait(&req->wait_queue, NULL); | ||
50 | + | ||
51 | + return true; | ||
52 | } | ||
53 | |||
54 | +/* Called only on full-dirty region */ | ||
55 | static void block_copy_inflight_req_begin(BlockCopyState *s, | ||
56 | BlockCopyInFlightReq *req, | ||
57 | int64_t offset, int64_t bytes) | ||
58 | { | ||
59 | + assert(!find_conflicting_inflight_req(s, offset, bytes)); | ||
60 | + | ||
61 | + bdrv_reset_dirty_bitmap(s->copy_bitmap, offset, bytes); | ||
62 | + s->in_flight_bytes += bytes; | ||
63 | + | ||
64 | req->offset = offset; | ||
65 | req->bytes = bytes; | ||
66 | qemu_co_queue_init(&req->wait_queue); | ||
67 | QLIST_INSERT_HEAD(&s->inflight_reqs, req, list); | ||
68 | } | ||
69 | |||
70 | -static void coroutine_fn block_copy_inflight_req_end(BlockCopyInFlightReq *req) | ||
71 | +/* | ||
72 | + * block_copy_inflight_req_shrink | ||
73 | + * | ||
74 | + * Drop the tail of the request to be handled later. Set dirty bits back and | ||
75 | + * wake up all requests waiting for us (may be some of them are not intersecting | ||
76 | + * with shrunk request) | ||
77 | + */ | ||
78 | +static void coroutine_fn block_copy_inflight_req_shrink(BlockCopyState *s, | ||
79 | + BlockCopyInFlightReq *req, int64_t new_bytes) | ||
80 | { | ||
81 | + if (new_bytes == req->bytes) { | ||
82 | + return; | ||
83 | + } | ||
84 | + | ||
85 | + assert(new_bytes > 0 && new_bytes < req->bytes); | ||
86 | + | ||
87 | + s->in_flight_bytes -= req->bytes - new_bytes; | ||
88 | + bdrv_set_dirty_bitmap(s->copy_bitmap, | ||
89 | + req->offset + new_bytes, req->bytes - new_bytes); | ||
90 | + | ||
91 | + req->bytes = new_bytes; | ||
92 | + qemu_co_queue_restart_all(&req->wait_queue); | ||
93 | +} | ||
94 | + | ||
95 | +static void coroutine_fn block_copy_inflight_req_end(BlockCopyState *s, | ||
96 | + BlockCopyInFlightReq *req, | ||
97 | + int ret) | ||
98 | +{ | ||
99 | + s->in_flight_bytes -= req->bytes; | ||
100 | + if (ret < 0) { | ||
101 | + bdrv_set_dirty_bitmap(s->copy_bitmap, req->offset, req->bytes); | ||
102 | + } | ||
103 | QLIST_REMOVE(req, list); | ||
104 | qemu_co_queue_restart_all(&req->wait_queue); | ||
105 | } | ||
106 | @@ -XXX,XX +XXX,XX @@ int64_t block_copy_reset_unallocated(BlockCopyState *s, | ||
107 | return ret; | ||
108 | } | ||
109 | |||
110 | -int coroutine_fn block_copy(BlockCopyState *s, | ||
111 | - int64_t offset, int64_t bytes, | ||
112 | - bool *error_is_read) | ||
113 | +/* | ||
114 | + * block_copy_dirty_clusters | ||
115 | + * | ||
116 | + * Copy dirty clusters in @offset/@bytes range. | ||
117 | + * Returns 1 if dirty clusters found and successfully copied, 0 if no dirty | ||
118 | + * clusters found and -errno on failure. | ||
119 | + */ | ||
120 | +static int coroutine_fn block_copy_dirty_clusters(BlockCopyState *s, | ||
121 | + int64_t offset, int64_t bytes, | ||
122 | + bool *error_is_read) | ||
123 | { | ||
124 | int ret = 0; | ||
125 | - BlockCopyInFlightReq req; | ||
126 | + bool found_dirty = false; | ||
127 | |||
128 | /* | ||
129 | * block_copy() user is responsible for keeping source and target in same | ||
130 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, | ||
131 | assert(QEMU_IS_ALIGNED(offset, s->cluster_size)); | ||
132 | assert(QEMU_IS_ALIGNED(bytes, s->cluster_size)); | ||
133 | |||
134 | - block_copy_wait_inflight_reqs(s, offset, bytes); | ||
135 | - block_copy_inflight_req_begin(s, &req, offset, bytes); | ||
136 | - | ||
137 | while (bytes) { | ||
138 | + BlockCopyInFlightReq req; | ||
139 | int64_t next_zero, cur_bytes, status_bytes; | ||
140 | |||
141 | if (!bdrv_dirty_bitmap_get(s->copy_bitmap, offset)) { | ||
142 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, | ||
143 | continue; /* already copied */ | ||
144 | } | ||
145 | |||
146 | + found_dirty = true; | ||
147 | + | ||
148 | cur_bytes = MIN(bytes, s->copy_size); | ||
149 | |||
150 | next_zero = bdrv_dirty_bitmap_next_zero(s->copy_bitmap, offset, | ||
151 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, | ||
152 | assert(next_zero < offset + cur_bytes); /* no need to do MIN() */ | ||
153 | cur_bytes = next_zero - offset; | ||
154 | } | ||
155 | + block_copy_inflight_req_begin(s, &req, offset, cur_bytes); | ||
156 | |||
157 | ret = block_copy_block_status(s, offset, cur_bytes, &status_bytes); | ||
158 | + assert(ret >= 0); /* never fail */ | ||
159 | + cur_bytes = MIN(cur_bytes, status_bytes); | ||
160 | + block_copy_inflight_req_shrink(s, &req, cur_bytes); | ||
161 | if (s->skip_unallocated && !(ret & BDRV_BLOCK_ALLOCATED)) { | ||
162 | - bdrv_reset_dirty_bitmap(s->copy_bitmap, offset, status_bytes); | ||
163 | + block_copy_inflight_req_end(s, &req, 0); | ||
164 | progress_set_remaining(s->progress, | ||
165 | bdrv_get_dirty_count(s->copy_bitmap) + | ||
166 | s->in_flight_bytes); | ||
167 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, | ||
168 | continue; | ||
169 | } | ||
170 | |||
171 | - cur_bytes = MIN(cur_bytes, status_bytes); | ||
172 | - | ||
173 | trace_block_copy_process(s, offset); | ||
174 | |||
175 | - bdrv_reset_dirty_bitmap(s->copy_bitmap, offset, cur_bytes); | ||
176 | - s->in_flight_bytes += cur_bytes; | ||
177 | - | ||
178 | co_get_from_shres(s->mem, cur_bytes); | ||
179 | ret = block_copy_do_copy(s, offset, cur_bytes, ret & BDRV_BLOCK_ZERO, | ||
180 | error_is_read); | ||
181 | co_put_to_shres(s->mem, cur_bytes); | ||
182 | - s->in_flight_bytes -= cur_bytes; | ||
183 | + block_copy_inflight_req_end(s, &req, ret); | ||
184 | if (ret < 0) { | ||
185 | - bdrv_set_dirty_bitmap(s->copy_bitmap, offset, cur_bytes); | ||
186 | - break; | ||
187 | + return ret; | ||
188 | } | ||
189 | |||
190 | progress_work_done(s->progress, cur_bytes); | ||
191 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, | ||
192 | bytes -= cur_bytes; | ||
193 | } | ||
194 | |||
195 | - block_copy_inflight_req_end(&req); | ||
196 | + return found_dirty; | ||
197 | +} | ||
198 | + | ||
199 | +/* | ||
200 | + * block_copy | ||
201 | + * | ||
202 | + * Copy requested region, accordingly to dirty bitmap. | ||
203 | + * Collaborate with parallel block_copy requests: if they succeed it will help | ||
204 | + * us. If they fail, we will retry not-copied regions. So, if we return error, | ||
205 | + * it means that some I/O operation failed in context of _this_ block_copy call, | ||
206 | + * not some parallel operation. | ||
207 | + */ | ||
208 | +int coroutine_fn block_copy(BlockCopyState *s, int64_t offset, int64_t bytes, | ||
209 | + bool *error_is_read) | ||
210 | +{ | ||
211 | + int ret; | ||
212 | + | ||
213 | + do { | ||
214 | + ret = block_copy_dirty_clusters(s, offset, bytes, error_is_read); | ||
215 | + | ||
216 | + if (ret == 0) { | ||
217 | + ret = block_copy_wait_one(s, offset, bytes); | ||
218 | + } | ||
219 | + | ||
220 | + /* | ||
221 | + * We retry in two cases: | ||
222 | + * 1. Some progress done | ||
223 | + * Something was copied, which means that there were yield points | ||
224 | + * and some new dirty bits may have appeared (due to failed parallel | ||
225 | + * block-copy requests). | ||
226 | + * 2. We have waited for some intersecting block-copy request | ||
227 | + * It may have failed and produced new dirty bits. | ||
228 | + */ | ||
229 | + } while (ret > 0); | ||
230 | |||
231 | return ret; | ||
232 | } | ||
233 | -- | 28 | -- |
234 | 2.24.1 | 29 | 2.21.0 |
235 | 30 | ||
236 | 31 | diff view generated by jsdifflib |
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | 1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> |
---|---|---|---|
2 | 2 | ||
3 | Hide structure definitions and add explicit API instead, to keep an | 3 | We forget to enable it for transaction .prepare, while it is already |
4 | eye on the scope of the shared fields. | 4 | enabled in do_drive_backup since commit a2d665c1bc362 |
5 | "blockdev: loosen restrictions on drive-backup source node" | ||
5 | 6 | ||
6 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | 7 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> |
7 | Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com> | 8 | Message-id: 20190618140804.59214-1-vsementsov@virtuozzo.com |
8 | Reviewed-by: Max Reitz <mreitz@redhat.com> | 9 | Reviewed-by: John Snow <jsnow@redhat.com> |
9 | Message-Id: <20200311103004.7649-10-vsementsov@virtuozzo.com> | ||
10 | Signed-off-by: Max Reitz <mreitz@redhat.com> | 10 | Signed-off-by: Max Reitz <mreitz@redhat.com> |
11 | --- | 11 | --- |
12 | block/backup-top.c | 6 ++-- | 12 | blockdev.c | 2 +- |
13 | block/backup.c | 25 ++++++++-------- | 13 | 1 file changed, 1 insertion(+), 1 deletion(-) |
14 | block/block-copy.c | 59 ++++++++++++++++++++++++++++++++++++++ | ||
15 | include/block/block-copy.h | 52 +++------------------------------ | ||
16 | 4 files changed, 80 insertions(+), 62 deletions(-) | ||
17 | 14 | ||
18 | diff --git a/block/backup-top.c b/block/backup-top.c | 15 | diff --git a/blockdev.c b/blockdev.c |
19 | index XXXXXXX..XXXXXXX 100644 | 16 | index XXXXXXX..XXXXXXX 100644 |
20 | --- a/block/backup-top.c | 17 | --- a/blockdev.c |
21 | +++ b/block/backup-top.c | 18 | +++ b/blockdev.c |
22 | @@ -XXX,XX +XXX,XX @@ typedef struct BDRVBackupTopState { | 19 | @@ -XXX,XX +XXX,XX @@ static void drive_backup_prepare(BlkActionState *common, Error **errp) |
23 | BlockCopyState *bcs; | 20 | assert(common->action->type == TRANSACTION_ACTION_KIND_DRIVE_BACKUP); |
24 | BdrvChild *target; | 21 | backup = common->action->u.drive_backup.data; |
25 | bool active; | 22 | |
26 | + int64_t cluster_size; | 23 | - bs = qmp_get_root_bs(backup->device, errp); |
27 | } BDRVBackupTopState; | 24 | + bs = bdrv_lookup_bs(backup->device, backup->device, errp); |
28 | 25 | if (!bs) { | |
29 | static coroutine_fn int backup_top_co_preadv( | ||
30 | @@ -XXX,XX +XXX,XX @@ static coroutine_fn int backup_top_cbw(BlockDriverState *bs, uint64_t offset, | ||
31 | return 0; | ||
32 | } | ||
33 | |||
34 | - off = QEMU_ALIGN_DOWN(offset, s->bcs->cluster_size); | ||
35 | - end = QEMU_ALIGN_UP(offset + bytes, s->bcs->cluster_size); | ||
36 | + off = QEMU_ALIGN_DOWN(offset, s->cluster_size); | ||
37 | + end = QEMU_ALIGN_UP(offset + bytes, s->cluster_size); | ||
38 | |||
39 | return block_copy(s->bcs, off, end - off, NULL); | ||
40 | } | ||
41 | @@ -XXX,XX +XXX,XX @@ BlockDriverState *bdrv_backup_top_append(BlockDriverState *source, | ||
42 | goto fail; | ||
43 | } | ||
44 | |||
45 | + state->cluster_size = cluster_size; | ||
46 | state->bcs = block_copy_state_new(top->backing, state->target, | ||
47 | cluster_size, write_flags, &local_err); | ||
48 | if (local_err) { | ||
49 | diff --git a/block/backup.c b/block/backup.c | ||
50 | index XXXXXXX..XXXXXXX 100644 | ||
51 | --- a/block/backup.c | ||
52 | +++ b/block/backup.c | ||
53 | @@ -XXX,XX +XXX,XX @@ static void backup_cleanup_sync_bitmap(BackupBlockJob *job, int ret) | ||
54 | |||
55 | if (ret < 0 && job->bitmap_mode == BITMAP_SYNC_MODE_ALWAYS) { | ||
56 | /* If we failed and synced, merge in the bits we didn't copy: */ | ||
57 | - bdrv_dirty_bitmap_merge_internal(bm, job->bcs->copy_bitmap, | ||
58 | + bdrv_dirty_bitmap_merge_internal(bm, block_copy_dirty_bitmap(job->bcs), | ||
59 | NULL, true); | ||
60 | } | ||
61 | } | ||
62 | @@ -XXX,XX +XXX,XX @@ void backup_do_checkpoint(BlockJob *job, Error **errp) | ||
63 | return; | 26 | return; |
64 | } | 27 | } |
65 | |||
66 | - bdrv_set_dirty_bitmap(backup_job->bcs->copy_bitmap, 0, backup_job->len); | ||
67 | + bdrv_set_dirty_bitmap(block_copy_dirty_bitmap(backup_job->bcs), 0, | ||
68 | + backup_job->len); | ||
69 | } | ||
70 | |||
71 | static BlockErrorAction backup_error_action(BackupBlockJob *job, | ||
72 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn backup_loop(BackupBlockJob *job) | ||
73 | BdrvDirtyBitmapIter *bdbi; | ||
74 | int ret = 0; | ||
75 | |||
76 | - bdbi = bdrv_dirty_iter_new(job->bcs->copy_bitmap); | ||
77 | + bdbi = bdrv_dirty_iter_new(block_copy_dirty_bitmap(job->bcs)); | ||
78 | while ((offset = bdrv_dirty_iter_next(bdbi)) != -1) { | ||
79 | do { | ||
80 | if (yield_and_check(job)) { | ||
81 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn backup_loop(BackupBlockJob *job) | ||
82 | return ret; | ||
83 | } | ||
84 | |||
85 | -static void backup_init_copy_bitmap(BackupBlockJob *job) | ||
86 | +static void backup_init_bcs_bitmap(BackupBlockJob *job) | ||
87 | { | ||
88 | bool ret; | ||
89 | uint64_t estimate; | ||
90 | + BdrvDirtyBitmap *bcs_bitmap = block_copy_dirty_bitmap(job->bcs); | ||
91 | |||
92 | if (job->sync_mode == MIRROR_SYNC_MODE_BITMAP) { | ||
93 | - ret = bdrv_dirty_bitmap_merge_internal(job->bcs->copy_bitmap, | ||
94 | - job->sync_bitmap, | ||
95 | + ret = bdrv_dirty_bitmap_merge_internal(bcs_bitmap, job->sync_bitmap, | ||
96 | NULL, true); | ||
97 | assert(ret); | ||
98 | } else { | ||
99 | @@ -XXX,XX +XXX,XX @@ static void backup_init_copy_bitmap(BackupBlockJob *job) | ||
100 | * We can't hog the coroutine to initialize this thoroughly. | ||
101 | * Set a flag and resume work when we are able to yield safely. | ||
102 | */ | ||
103 | - job->bcs->skip_unallocated = true; | ||
104 | + block_copy_set_skip_unallocated(job->bcs, true); | ||
105 | } | ||
106 | - bdrv_set_dirty_bitmap(job->bcs->copy_bitmap, 0, job->len); | ||
107 | + bdrv_set_dirty_bitmap(bcs_bitmap, 0, job->len); | ||
108 | } | ||
109 | |||
110 | - estimate = bdrv_get_dirty_count(job->bcs->copy_bitmap); | ||
111 | + estimate = bdrv_get_dirty_count(bcs_bitmap); | ||
112 | job_progress_set_remaining(&job->common.job, estimate); | ||
113 | } | ||
114 | |||
115 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn backup_run(Job *job, Error **errp) | ||
116 | BackupBlockJob *s = container_of(job, BackupBlockJob, common.job); | ||
117 | int ret = 0; | ||
118 | |||
119 | - backup_init_copy_bitmap(s); | ||
120 | + backup_init_bcs_bitmap(s); | ||
121 | |||
122 | if (s->sync_mode == MIRROR_SYNC_MODE_TOP) { | ||
123 | int64_t offset = 0; | ||
124 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn backup_run(Job *job, Error **errp) | ||
125 | |||
126 | offset += count; | ||
127 | } | ||
128 | - s->bcs->skip_unallocated = false; | ||
129 | + block_copy_set_skip_unallocated(s->bcs, false); | ||
130 | } | ||
131 | |||
132 | if (s->sync_mode == MIRROR_SYNC_MODE_NONE) { | ||
133 | /* | ||
134 | - * All bits are set in copy_bitmap to allow any cluster to be copied. | ||
135 | + * All bits are set in bcs bitmap to allow any cluster to be copied. | ||
136 | * This does not actually require them to be copied. | ||
137 | */ | ||
138 | while (!job_is_cancelled(job)) { | ||
139 | diff --git a/block/block-copy.c b/block/block-copy.c | ||
140 | index XXXXXXX..XXXXXXX 100644 | ||
141 | --- a/block/block-copy.c | ||
142 | +++ b/block/block-copy.c | ||
143 | @@ -XXX,XX +XXX,XX @@ | ||
144 | #define BLOCK_COPY_MAX_BUFFER (1 * MiB) | ||
145 | #define BLOCK_COPY_MAX_MEM (128 * MiB) | ||
146 | |||
147 | +typedef struct BlockCopyInFlightReq { | ||
148 | + int64_t offset; | ||
149 | + int64_t bytes; | ||
150 | + QLIST_ENTRY(BlockCopyInFlightReq) list; | ||
151 | + CoQueue wait_queue; /* coroutines blocked on this request */ | ||
152 | +} BlockCopyInFlightReq; | ||
153 | + | ||
154 | +typedef struct BlockCopyState { | ||
155 | + /* | ||
156 | + * BdrvChild objects are not owned or managed by block-copy. They are | ||
157 | + * provided by block-copy user and user is responsible for appropriate | ||
158 | + * permissions on these children. | ||
159 | + */ | ||
160 | + BdrvChild *source; | ||
161 | + BdrvChild *target; | ||
162 | + BdrvDirtyBitmap *copy_bitmap; | ||
163 | + int64_t in_flight_bytes; | ||
164 | + int64_t cluster_size; | ||
165 | + bool use_copy_range; | ||
166 | + int64_t copy_size; | ||
167 | + uint64_t len; | ||
168 | + QLIST_HEAD(, BlockCopyInFlightReq) inflight_reqs; | ||
169 | + | ||
170 | + BdrvRequestFlags write_flags; | ||
171 | + | ||
172 | + /* | ||
173 | + * skip_unallocated: | ||
174 | + * | ||
175 | + * Used by sync=top jobs, which first scan the source node for unallocated | ||
176 | + * areas and clear them in the copy_bitmap. During this process, the bitmap | ||
177 | + * is thus not fully initialized: It may still have bits set for areas that | ||
178 | + * are unallocated and should actually not be copied. | ||
179 | + * | ||
180 | + * This is indicated by skip_unallocated. | ||
181 | + * | ||
182 | + * In this case, block_copy() will query the source’s allocation status, | ||
183 | + * skip unallocated regions, clear them in the copy_bitmap, and invoke | ||
184 | + * block_copy_reset_unallocated() every time it does. | ||
185 | + */ | ||
186 | + bool skip_unallocated; | ||
187 | + | ||
188 | + ProgressMeter *progress; | ||
189 | + /* progress_bytes_callback: called when some copying progress is done. */ | ||
190 | + ProgressBytesCallbackFunc progress_bytes_callback; | ||
191 | + void *progress_opaque; | ||
192 | + | ||
193 | + SharedResource *mem; | ||
194 | +} BlockCopyState; | ||
195 | + | ||
196 | static BlockCopyInFlightReq *find_conflicting_inflight_req(BlockCopyState *s, | ||
197 | int64_t offset, | ||
198 | int64_t bytes) | ||
199 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, int64_t offset, int64_t bytes, | ||
200 | |||
201 | return ret; | ||
202 | } | ||
203 | + | ||
204 | +BdrvDirtyBitmap *block_copy_dirty_bitmap(BlockCopyState *s) | ||
205 | +{ | ||
206 | + return s->copy_bitmap; | ||
207 | +} | ||
208 | + | ||
209 | +void block_copy_set_skip_unallocated(BlockCopyState *s, bool skip) | ||
210 | +{ | ||
211 | + s->skip_unallocated = skip; | ||
212 | +} | ||
213 | diff --git a/include/block/block-copy.h b/include/block/block-copy.h | ||
214 | index XXXXXXX..XXXXXXX 100644 | ||
215 | --- a/include/block/block-copy.h | ||
216 | +++ b/include/block/block-copy.h | ||
217 | @@ -XXX,XX +XXX,XX @@ | ||
218 | #include "block/block.h" | ||
219 | #include "qemu/co-shared-resource.h" | ||
220 | |||
221 | -typedef struct BlockCopyInFlightReq { | ||
222 | - int64_t offset; | ||
223 | - int64_t bytes; | ||
224 | - QLIST_ENTRY(BlockCopyInFlightReq) list; | ||
225 | - CoQueue wait_queue; /* coroutines blocked on this request */ | ||
226 | -} BlockCopyInFlightReq; | ||
227 | - | ||
228 | typedef void (*ProgressBytesCallbackFunc)(int64_t bytes, void *opaque); | ||
229 | -typedef struct BlockCopyState { | ||
230 | - /* | ||
231 | - * BdrvChild objects are not owned or managed by block-copy. They are | ||
232 | - * provided by block-copy user and user is responsible for appropriate | ||
233 | - * permissions on these children. | ||
234 | - */ | ||
235 | - BdrvChild *source; | ||
236 | - BdrvChild *target; | ||
237 | - BdrvDirtyBitmap *copy_bitmap; | ||
238 | - int64_t in_flight_bytes; | ||
239 | - int64_t cluster_size; | ||
240 | - bool use_copy_range; | ||
241 | - int64_t copy_size; | ||
242 | - uint64_t len; | ||
243 | - QLIST_HEAD(, BlockCopyInFlightReq) inflight_reqs; | ||
244 | - | ||
245 | - BdrvRequestFlags write_flags; | ||
246 | - | ||
247 | - /* | ||
248 | - * skip_unallocated: | ||
249 | - * | ||
250 | - * Used by sync=top jobs, which first scan the source node for unallocated | ||
251 | - * areas and clear them in the copy_bitmap. During this process, the bitmap | ||
252 | - * is thus not fully initialized: It may still have bits set for areas that | ||
253 | - * are unallocated and should actually not be copied. | ||
254 | - * | ||
255 | - * This is indicated by skip_unallocated. | ||
256 | - * | ||
257 | - * In this case, block_copy() will query the source’s allocation status, | ||
258 | - * skip unallocated regions, clear them in the copy_bitmap, and invoke | ||
259 | - * block_copy_reset_unallocated() every time it does. | ||
260 | - */ | ||
261 | - bool skip_unallocated; | ||
262 | - | ||
263 | - ProgressMeter *progress; | ||
264 | - /* progress_bytes_callback: called when some copying progress is done. */ | ||
265 | - ProgressBytesCallbackFunc progress_bytes_callback; | ||
266 | - void *progress_opaque; | ||
267 | - | ||
268 | - SharedResource *mem; | ||
269 | -} BlockCopyState; | ||
270 | +typedef struct BlockCopyState BlockCopyState; | ||
271 | |||
272 | BlockCopyState *block_copy_state_new(BdrvChild *source, BdrvChild *target, | ||
273 | int64_t cluster_size, | ||
274 | @@ -XXX,XX +XXX,XX @@ int64_t block_copy_reset_unallocated(BlockCopyState *s, | ||
275 | int coroutine_fn block_copy(BlockCopyState *s, int64_t offset, int64_t bytes, | ||
276 | bool *error_is_read); | ||
277 | |||
278 | +BdrvDirtyBitmap *block_copy_dirty_bitmap(BlockCopyState *s); | ||
279 | +void block_copy_set_skip_unallocated(BlockCopyState *s, bool skip); | ||
280 | + | ||
281 | #endif /* BLOCK_COPY_H */ | ||
282 | -- | 28 | -- |
283 | 2.24.1 | 29 | 2.21.0 |
284 | 30 | ||
285 | 31 | diff view generated by jsdifflib |
1 | From: Stefan Hajnoczi <stefanha@redhat.com> | 1 | From: Anton Nefedov <anton.nefedov@virtuozzo.com> |
---|---|---|---|
2 | 2 | ||
3 | This test exercises the block/crypto.c "luks" block driver | 3 | COW (even empty/zero) areas require encryption too |
4 | .bdrv_measure() code. | ||
5 | 4 | ||
6 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | 5 | Signed-off-by: Anton Nefedov <anton.nefedov@virtuozzo.com> |
6 | Reviewed-by: Eric Blake <eblake@redhat.com> | ||
7 | Reviewed-by: Max Reitz <mreitz@redhat.com> | 7 | Reviewed-by: Max Reitz <mreitz@redhat.com> |
8 | Message-Id: <20200221112522.1497712-5-stefanha@redhat.com> | 8 | Reviewed-by: Alberto Garcia <berto@igalia.com> |
9 | [mreitz: Renamed test from 282 to 288] | 9 | Message-id: 20190516143028.81155-1-anton.nefedov@virtuozzo.com |
10 | Signed-off-by: Max Reitz <mreitz@redhat.com> | 10 | Signed-off-by: Max Reitz <mreitz@redhat.com> |
11 | --- | 11 | --- |
12 | tests/qemu-iotests/288 | 93 ++++++++++++++++++++++++++++++++++++++ | 12 | tests/qemu-iotests/134 | 9 +++++++++ |
13 | tests/qemu-iotests/288.out | 30 ++++++++++++ | 13 | tests/qemu-iotests/134.out | 10 ++++++++++ |
14 | tests/qemu-iotests/group | 1 + | 14 | 2 files changed, 19 insertions(+) |
15 | 3 files changed, 124 insertions(+) | ||
16 | create mode 100755 tests/qemu-iotests/288 | ||
17 | create mode 100644 tests/qemu-iotests/288.out | ||
18 | 15 | ||
19 | diff --git a/tests/qemu-iotests/288 b/tests/qemu-iotests/288 | 16 | diff --git a/tests/qemu-iotests/134 b/tests/qemu-iotests/134 |
20 | new file mode 100755 | 17 | index XXXXXXX..XXXXXXX 100755 |
21 | index XXXXXXX..XXXXXXX | 18 | --- a/tests/qemu-iotests/134 |
22 | --- /dev/null | 19 | +++ b/tests/qemu-iotests/134 |
23 | +++ b/tests/qemu-iotests/288 | 20 | @@ -XXX,XX +XXX,XX @@ echo |
24 | @@ -XXX,XX +XXX,XX @@ | 21 | echo "== reading whole image ==" |
25 | +#!/usr/bin/env bash | 22 | $QEMU_IO --object $SECRET -c "read 0 $size" --image-opts $IMGSPEC | _filter_qemu_io | _filter_testdir |
26 | +# | 23 | |
27 | +# qemu-img measure tests for LUKS images | ||
28 | +# | ||
29 | +# Copyright (C) 2020 Red Hat, Inc. | ||
30 | +# | ||
31 | +# This program is free software; you can redistribute it and/or modify | ||
32 | +# it under the terms of the GNU General Public License as published by | ||
33 | +# the Free Software Foundation; either version 2 of the License, or | ||
34 | +# (at your option) any later version. | ||
35 | +# | ||
36 | +# This program is distributed in the hope that it will be useful, | ||
37 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
38 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
39 | +# GNU General Public License for more details. | ||
40 | +# | ||
41 | +# You should have received a copy of the GNU General Public License | ||
42 | +# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
43 | +# | ||
44 | + | ||
45 | +# creator | ||
46 | +owner=stefanha@redhat.com | ||
47 | + | ||
48 | +seq=`basename $0` | ||
49 | +echo "QA output created by $seq" | ||
50 | + | ||
51 | +status=1 # failure is the default! | ||
52 | + | ||
53 | +_cleanup() | ||
54 | +{ | ||
55 | + _cleanup_test_img | ||
56 | + rm -f "$TEST_IMG.converted" | ||
57 | +} | ||
58 | +trap "_cleanup; exit \$status" 0 1 2 3 15 | ||
59 | + | ||
60 | +# get standard environment, filters and checks | ||
61 | +. ./common.rc | ||
62 | +. ./common.filter | ||
63 | +. ./common.pattern | ||
64 | + | ||
65 | +_supported_fmt luks | ||
66 | +_supported_proto file | ||
67 | +_supported_os Linux | ||
68 | + | ||
69 | +SECRET=secret,id=sec0,data=passphrase | ||
70 | + | ||
71 | +echo "== measure 1G image file ==" | ||
72 | +echo | 24 | +echo |
73 | + | 25 | +echo "== rewriting cluster part ==" |
74 | +$QEMU_IMG measure --object "$SECRET" \ | 26 | +$QEMU_IO --object $SECRET -c "write -P 0xb 512 512" --image-opts $IMGSPEC | _filter_qemu_io | _filter_testdir |
75 | + -O "$IMGFMT" \ | ||
76 | + -o key-secret=sec0,iter-time=10 \ | ||
77 | + --size 1G | ||
78 | + | 27 | + |
79 | +echo | 28 | +echo |
80 | +echo "== create 1G image file (size should be no greater than measured) ==" | 29 | +echo "== verify pattern ==" |
81 | +echo | 30 | +$QEMU_IO --object $SECRET -c "read -P 0 0 512" --image-opts $IMGSPEC | _filter_qemu_io | _filter_testdir |
31 | +$QEMU_IO --object $SECRET -c "read -P 0xb 512 512" --image-opts $IMGSPEC | _filter_qemu_io | _filter_testdir | ||
82 | + | 32 | + |
83 | +_make_test_img 1G | 33 | echo |
84 | +stat -c "image file size in bytes: %s" "$TEST_IMG_FILE" | 34 | echo "== rewriting whole image ==" |
35 | $QEMU_IO --object $SECRET -c "write -P 0xa 0 $size" --image-opts $IMGSPEC | _filter_qemu_io | _filter_testdir | ||
36 | diff --git a/tests/qemu-iotests/134.out b/tests/qemu-iotests/134.out | ||
37 | index XXXXXXX..XXXXXXX 100644 | ||
38 | --- a/tests/qemu-iotests/134.out | ||
39 | +++ b/tests/qemu-iotests/134.out | ||
40 | @@ -XXX,XX +XXX,XX @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=134217728 encryption=on encrypt. | ||
41 | read 134217728/134217728 bytes at offset 0 | ||
42 | 128 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) | ||
43 | |||
44 | +== rewriting cluster part == | ||
45 | +wrote 512/512 bytes at offset 512 | ||
46 | +512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) | ||
85 | + | 47 | + |
86 | +echo | 48 | +== verify pattern == |
87 | +echo "== modified 1G image file (size should be no greater than measured) ==" | 49 | +read 512/512 bytes at offset 0 |
88 | +echo | 50 | +512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) |
51 | +read 512/512 bytes at offset 512 | ||
52 | +512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) | ||
89 | + | 53 | + |
90 | +$QEMU_IO --object "$SECRET" --image-opts "$TEST_IMG" -c "write -P 0x51 0x10000 0x400" | _filter_qemu_io | _filter_testdir | 54 | == rewriting whole image == |
91 | +stat -c "image file size in bytes: %s" "$TEST_IMG_FILE" | 55 | wrote 134217728/134217728 bytes at offset 0 |
92 | + | 56 | 128 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) |
93 | +echo | ||
94 | +echo "== measure preallocation=falloc 1G image file ==" | ||
95 | +echo | ||
96 | + | ||
97 | +$QEMU_IMG measure --object "$SECRET" \ | ||
98 | + -O "$IMGFMT" \ | ||
99 | + -o key-secret=sec0,iter-time=10,preallocation=falloc \ | ||
100 | + --size 1G | ||
101 | + | ||
102 | +echo | ||
103 | +echo "== measure with input image file ==" | ||
104 | +echo | ||
105 | + | ||
106 | +IMGFMT=raw IMGKEYSECRET= IMGOPTS= _make_test_img 1G | _filter_imgfmt | ||
107 | +QEMU_IO_OPTIONS= IMGOPTSSYNTAX= $QEMU_IO -f raw -c "write -P 0x51 0x10000 0x400" "$TEST_IMG_FILE" | _filter_qemu_io | _filter_testdir | ||
108 | +$QEMU_IMG measure --object "$SECRET" \ | ||
109 | + -O "$IMGFMT" \ | ||
110 | + -o key-secret=sec0,iter-time=10 \ | ||
111 | + -f raw \ | ||
112 | + "$TEST_IMG_FILE" | ||
113 | + | ||
114 | +# success, all done | ||
115 | +echo "*** done" | ||
116 | +rm -f $seq.full | ||
117 | +status=0 | ||
118 | diff --git a/tests/qemu-iotests/288.out b/tests/qemu-iotests/288.out | ||
119 | new file mode 100644 | ||
120 | index XXXXXXX..XXXXXXX | ||
121 | --- /dev/null | ||
122 | +++ b/tests/qemu-iotests/288.out | ||
123 | @@ -XXX,XX +XXX,XX @@ | ||
124 | +QA output created by 288 | ||
125 | +== measure 1G image file == | ||
126 | + | ||
127 | +required size: 1075810304 | ||
128 | +fully allocated size: 1075810304 | ||
129 | + | ||
130 | +== create 1G image file (size should be no greater than measured) == | ||
131 | + | ||
132 | +Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=1073741824 | ||
133 | +image file size in bytes: 1075810304 | ||
134 | + | ||
135 | +== modified 1G image file (size should be no greater than measured) == | ||
136 | + | ||
137 | +wrote 1024/1024 bytes at offset 65536 | ||
138 | +1 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) | ||
139 | +image file size in bytes: 1075810304 | ||
140 | + | ||
141 | +== measure preallocation=falloc 1G image file == | ||
142 | + | ||
143 | +required size: 1075810304 | ||
144 | +fully allocated size: 1075810304 | ||
145 | + | ||
146 | +== measure with input image file == | ||
147 | + | ||
148 | +Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=1073741824 | ||
149 | +wrote 1024/1024 bytes at offset 65536 | ||
150 | +1 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) | ||
151 | +required size: 1075810304 | ||
152 | +fully allocated size: 1075810304 | ||
153 | +*** done | ||
154 | diff --git a/tests/qemu-iotests/group b/tests/qemu-iotests/group | ||
155 | index XXXXXXX..XXXXXXX 100644 | ||
156 | --- a/tests/qemu-iotests/group | ||
157 | +++ b/tests/qemu-iotests/group | ||
158 | @@ -XXX,XX +XXX,XX @@ | ||
159 | 283 auto quick | ||
160 | 284 rw | ||
161 | 286 rw quick | ||
162 | +288 quick | ||
163 | -- | 57 | -- |
164 | 2.24.1 | 58 | 2.21.0 |
165 | 59 | ||
166 | 60 | diff view generated by jsdifflib |
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | 1 | From: Sam Eiderman <shmuel.eiderman@oracle.com> |
---|---|---|---|
2 | 2 | ||
3 | offset/bytes pair is more usual naming in block layer, let's use it. | 3 | Commit b0651b8c246d ("vmdk: Move l1_size check into vmdk_add_extent") |
4 | extended the l1_size check from VMDK4 to VMDK3 but did not update the | ||
5 | default coverage in the moved comment. | ||
4 | 6 | ||
5 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | 7 | The previous vmdk4 calculation: |
6 | Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com> | 8 | |
9 | (512 * 1024 * 1024) * 512(l2 entries) * 65536(grain) = 16PB | ||
10 | |||
11 | The added vmdk3 calculation: | ||
12 | |||
13 | (512 * 1024 * 1024) * 4096(l2 entries) * 512(grain) = 1PB | ||
14 | |||
15 | Adding the calculation of vmdk3 to the comment. | ||
16 | |||
17 | In any case, VMware does not offer virtual disks more than 2TB for | ||
18 | vmdk4/vmdk3 or 64TB for the new undocumented seSparse format which is | ||
19 | not implemented yet in qemu. | ||
20 | |||
21 | Reviewed-by: Karl Heubaum <karl.heubaum@oracle.com> | ||
22 | Reviewed-by: Eyal Moscovici <eyal.moscovici@oracle.com> | ||
23 | Reviewed-by: Liran Alon <liran.alon@oracle.com> | ||
24 | Reviewed-by: Arbel Moshe <arbel.moshe@oracle.com> | ||
25 | Signed-off-by: Sam Eiderman <shmuel.eiderman@oracle.com> | ||
26 | Message-id: 20190620091057.47441-2-shmuel.eiderman@oracle.com | ||
27 | Reviewed-by: yuchenlin <yuchenlin@synology.com> | ||
7 | Reviewed-by: Max Reitz <mreitz@redhat.com> | 28 | Reviewed-by: Max Reitz <mreitz@redhat.com> |
8 | Message-Id: <20200311103004.7649-8-vsementsov@virtuozzo.com> | ||
9 | Signed-off-by: Max Reitz <mreitz@redhat.com> | 29 | Signed-off-by: Max Reitz <mreitz@redhat.com> |
10 | --- | 30 | --- |
11 | block/block-copy.c | 82 +++++++++++++++++++------------------- | 31 | block/vmdk.c | 11 ++++++++--- |
12 | include/block/block-copy.h | 4 +- | 32 | 1 file changed, 8 insertions(+), 3 deletions(-) |
13 | 2 files changed, 43 insertions(+), 43 deletions(-) | ||
14 | 33 | ||
15 | diff --git a/block/block-copy.c b/block/block-copy.c | 34 | diff --git a/block/vmdk.c b/block/vmdk.c |
16 | index XXXXXXX..XXXXXXX 100644 | 35 | index XXXXXXX..XXXXXXX 100644 |
17 | --- a/block/block-copy.c | 36 | --- a/block/vmdk.c |
18 | +++ b/block/block-copy.c | 37 | +++ b/block/vmdk.c |
19 | @@ -XXX,XX +XXX,XX @@ | 38 | @@ -XXX,XX +XXX,XX @@ static int vmdk_add_extent(BlockDriverState *bs, |
20 | #define BLOCK_COPY_MAX_MEM (128 * MiB) | 39 | return -EFBIG; |
21 | |||
22 | static BlockCopyInFlightReq *find_conflicting_inflight_req(BlockCopyState *s, | ||
23 | - int64_t start, | ||
24 | + int64_t offset, | ||
25 | int64_t bytes) | ||
26 | { | ||
27 | BlockCopyInFlightReq *req; | ||
28 | |||
29 | QLIST_FOREACH(req, &s->inflight_reqs, list) { | ||
30 | - if (start + bytes > req->start && start < req->start + req->bytes) { | ||
31 | + if (offset + bytes > req->offset && offset < req->offset + req->bytes) { | ||
32 | return req; | ||
33 | } | ||
34 | } | 40 | } |
35 | @@ -XXX,XX +XXX,XX @@ static BlockCopyInFlightReq *find_conflicting_inflight_req(BlockCopyState *s, | 41 | if (l1_size > 512 * 1024 * 1024) { |
36 | } | 42 | - /* Although with big capacity and small l1_entry_sectors, we can get a |
37 | 43 | + /* | |
38 | static void coroutine_fn block_copy_wait_inflight_reqs(BlockCopyState *s, | 44 | + * Although with big capacity and small l1_entry_sectors, we can get a |
39 | - int64_t start, | 45 | * big l1_size, we don't want unbounded value to allocate the table. |
40 | + int64_t offset, | 46 | - * Limit it to 512M, which is 16PB for default cluster and L2 table |
41 | int64_t bytes) | 47 | - * size */ |
42 | { | 48 | + * Limit it to 512M, which is: |
43 | BlockCopyInFlightReq *req; | 49 | + * 16PB - for default "Hosted Sparse Extent" (VMDK4) |
44 | 50 | + * cluster size: 64KB, L2 table size: 512 entries | |
45 | - while ((req = find_conflicting_inflight_req(s, start, bytes))) { | 51 | + * 1PB - for default "ESXi Host Sparse Extent" (VMDK3/vmfsSparse) |
46 | + while ((req = find_conflicting_inflight_req(s, offset, bytes))) { | 52 | + * cluster size: 512B, L2 table size: 4096 entries |
47 | qemu_co_queue_wait(&req->wait_queue, NULL); | 53 | + */ |
54 | error_setg(errp, "L1 size too big"); | ||
55 | return -EFBIG; | ||
48 | } | 56 | } |
49 | } | ||
50 | |||
51 | static void block_copy_inflight_req_begin(BlockCopyState *s, | ||
52 | BlockCopyInFlightReq *req, | ||
53 | - int64_t start, int64_t bytes) | ||
54 | + int64_t offset, int64_t bytes) | ||
55 | { | ||
56 | - req->start = start; | ||
57 | + req->offset = offset; | ||
58 | req->bytes = bytes; | ||
59 | qemu_co_queue_init(&req->wait_queue); | ||
60 | QLIST_INSERT_HEAD(&s->inflight_reqs, req, list); | ||
61 | @@ -XXX,XX +XXX,XX @@ void block_copy_set_progress_meter(BlockCopyState *s, ProgressMeter *pm) | ||
62 | * Returns 0 on success. | ||
63 | */ | ||
64 | static int coroutine_fn block_copy_do_copy(BlockCopyState *s, | ||
65 | - int64_t start, int64_t bytes, | ||
66 | + int64_t offset, int64_t bytes, | ||
67 | bool zeroes, bool *error_is_read) | ||
68 | { | ||
69 | int ret; | ||
70 | - int64_t nbytes = MIN(start + bytes, s->len) - start; | ||
71 | + int64_t nbytes = MIN(offset + bytes, s->len) - offset; | ||
72 | void *bounce_buffer = NULL; | ||
73 | |||
74 | - assert(start >= 0 && bytes > 0 && INT64_MAX - start >= bytes); | ||
75 | - assert(QEMU_IS_ALIGNED(start, s->cluster_size)); | ||
76 | + assert(offset >= 0 && bytes > 0 && INT64_MAX - offset >= bytes); | ||
77 | + assert(QEMU_IS_ALIGNED(offset, s->cluster_size)); | ||
78 | assert(QEMU_IS_ALIGNED(bytes, s->cluster_size)); | ||
79 | - assert(start < s->len); | ||
80 | - assert(start + bytes <= s->len || | ||
81 | - start + bytes == QEMU_ALIGN_UP(s->len, s->cluster_size)); | ||
82 | + assert(offset < s->len); | ||
83 | + assert(offset + bytes <= s->len || | ||
84 | + offset + bytes == QEMU_ALIGN_UP(s->len, s->cluster_size)); | ||
85 | assert(nbytes < INT_MAX); | ||
86 | |||
87 | if (zeroes) { | ||
88 | - ret = bdrv_co_pwrite_zeroes(s->target, start, nbytes, s->write_flags & | ||
89 | + ret = bdrv_co_pwrite_zeroes(s->target, offset, nbytes, s->write_flags & | ||
90 | ~BDRV_REQ_WRITE_COMPRESSED); | ||
91 | if (ret < 0) { | ||
92 | - trace_block_copy_write_zeroes_fail(s, start, ret); | ||
93 | + trace_block_copy_write_zeroes_fail(s, offset, ret); | ||
94 | if (error_is_read) { | ||
95 | *error_is_read = false; | ||
96 | } | ||
97 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn block_copy_do_copy(BlockCopyState *s, | ||
98 | } | ||
99 | |||
100 | if (s->use_copy_range) { | ||
101 | - ret = bdrv_co_copy_range(s->source, start, s->target, start, nbytes, | ||
102 | + ret = bdrv_co_copy_range(s->source, offset, s->target, offset, nbytes, | ||
103 | 0, s->write_flags); | ||
104 | if (ret < 0) { | ||
105 | - trace_block_copy_copy_range_fail(s, start, ret); | ||
106 | + trace_block_copy_copy_range_fail(s, offset, ret); | ||
107 | s->use_copy_range = false; | ||
108 | s->copy_size = MAX(s->cluster_size, BLOCK_COPY_MAX_BUFFER); | ||
109 | /* Fallback to read+write with allocated buffer */ | ||
110 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn block_copy_do_copy(BlockCopyState *s, | ||
111 | |||
112 | bounce_buffer = qemu_blockalign(s->source->bs, nbytes); | ||
113 | |||
114 | - ret = bdrv_co_pread(s->source, start, nbytes, bounce_buffer, 0); | ||
115 | + ret = bdrv_co_pread(s->source, offset, nbytes, bounce_buffer, 0); | ||
116 | if (ret < 0) { | ||
117 | - trace_block_copy_read_fail(s, start, ret); | ||
118 | + trace_block_copy_read_fail(s, offset, ret); | ||
119 | if (error_is_read) { | ||
120 | *error_is_read = true; | ||
121 | } | ||
122 | goto out; | ||
123 | } | ||
124 | |||
125 | - ret = bdrv_co_pwrite(s->target, start, nbytes, bounce_buffer, | ||
126 | + ret = bdrv_co_pwrite(s->target, offset, nbytes, bounce_buffer, | ||
127 | s->write_flags); | ||
128 | if (ret < 0) { | ||
129 | - trace_block_copy_write_fail(s, start, ret); | ||
130 | + trace_block_copy_write_fail(s, offset, ret); | ||
131 | if (error_is_read) { | ||
132 | *error_is_read = false; | ||
133 | } | ||
134 | @@ -XXX,XX +XXX,XX @@ int64_t block_copy_reset_unallocated(BlockCopyState *s, | ||
135 | } | ||
136 | |||
137 | int coroutine_fn block_copy(BlockCopyState *s, | ||
138 | - int64_t start, int64_t bytes, | ||
139 | + int64_t offset, int64_t bytes, | ||
140 | bool *error_is_read) | ||
141 | { | ||
142 | int ret = 0; | ||
143 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, | ||
144 | assert(bdrv_get_aio_context(s->source->bs) == | ||
145 | bdrv_get_aio_context(s->target->bs)); | ||
146 | |||
147 | - assert(QEMU_IS_ALIGNED(start, s->cluster_size)); | ||
148 | + assert(QEMU_IS_ALIGNED(offset, s->cluster_size)); | ||
149 | assert(QEMU_IS_ALIGNED(bytes, s->cluster_size)); | ||
150 | |||
151 | - block_copy_wait_inflight_reqs(s, start, bytes); | ||
152 | - block_copy_inflight_req_begin(s, &req, start, bytes); | ||
153 | + block_copy_wait_inflight_reqs(s, offset, bytes); | ||
154 | + block_copy_inflight_req_begin(s, &req, offset, bytes); | ||
155 | |||
156 | while (bytes) { | ||
157 | int64_t next_zero, cur_bytes, status_bytes; | ||
158 | |||
159 | - if (!bdrv_dirty_bitmap_get(s->copy_bitmap, start)) { | ||
160 | - trace_block_copy_skip(s, start); | ||
161 | - start += s->cluster_size; | ||
162 | + if (!bdrv_dirty_bitmap_get(s->copy_bitmap, offset)) { | ||
163 | + trace_block_copy_skip(s, offset); | ||
164 | + offset += s->cluster_size; | ||
165 | bytes -= s->cluster_size; | ||
166 | continue; /* already copied */ | ||
167 | } | ||
168 | |||
169 | cur_bytes = MIN(bytes, s->copy_size); | ||
170 | |||
171 | - next_zero = bdrv_dirty_bitmap_next_zero(s->copy_bitmap, start, | ||
172 | + next_zero = bdrv_dirty_bitmap_next_zero(s->copy_bitmap, offset, | ||
173 | cur_bytes); | ||
174 | if (next_zero >= 0) { | ||
175 | - assert(next_zero > start); /* start is dirty */ | ||
176 | - assert(next_zero < start + cur_bytes); /* no need to do MIN() */ | ||
177 | - cur_bytes = next_zero - start; | ||
178 | + assert(next_zero > offset); /* offset is dirty */ | ||
179 | + assert(next_zero < offset + cur_bytes); /* no need to do MIN() */ | ||
180 | + cur_bytes = next_zero - offset; | ||
181 | } | ||
182 | |||
183 | - ret = block_copy_block_status(s, start, cur_bytes, &status_bytes); | ||
184 | + ret = block_copy_block_status(s, offset, cur_bytes, &status_bytes); | ||
185 | if (s->skip_unallocated && !(ret & BDRV_BLOCK_ALLOCATED)) { | ||
186 | - bdrv_reset_dirty_bitmap(s->copy_bitmap, start, status_bytes); | ||
187 | + bdrv_reset_dirty_bitmap(s->copy_bitmap, offset, status_bytes); | ||
188 | progress_set_remaining(s->progress, | ||
189 | bdrv_get_dirty_count(s->copy_bitmap) + | ||
190 | s->in_flight_bytes); | ||
191 | - trace_block_copy_skip_range(s, start, status_bytes); | ||
192 | - start += status_bytes; | ||
193 | + trace_block_copy_skip_range(s, offset, status_bytes); | ||
194 | + offset += status_bytes; | ||
195 | bytes -= status_bytes; | ||
196 | continue; | ||
197 | } | ||
198 | |||
199 | cur_bytes = MIN(cur_bytes, status_bytes); | ||
200 | |||
201 | - trace_block_copy_process(s, start); | ||
202 | + trace_block_copy_process(s, offset); | ||
203 | |||
204 | - bdrv_reset_dirty_bitmap(s->copy_bitmap, start, cur_bytes); | ||
205 | + bdrv_reset_dirty_bitmap(s->copy_bitmap, offset, cur_bytes); | ||
206 | s->in_flight_bytes += cur_bytes; | ||
207 | |||
208 | co_get_from_shres(s->mem, cur_bytes); | ||
209 | - ret = block_copy_do_copy(s, start, cur_bytes, ret & BDRV_BLOCK_ZERO, | ||
210 | + ret = block_copy_do_copy(s, offset, cur_bytes, ret & BDRV_BLOCK_ZERO, | ||
211 | error_is_read); | ||
212 | co_put_to_shres(s->mem, cur_bytes); | ||
213 | s->in_flight_bytes -= cur_bytes; | ||
214 | if (ret < 0) { | ||
215 | - bdrv_set_dirty_bitmap(s->copy_bitmap, start, cur_bytes); | ||
216 | + bdrv_set_dirty_bitmap(s->copy_bitmap, offset, cur_bytes); | ||
217 | break; | ||
218 | } | ||
219 | |||
220 | progress_work_done(s->progress, cur_bytes); | ||
221 | s->progress_bytes_callback(cur_bytes, s->progress_opaque); | ||
222 | - start += cur_bytes; | ||
223 | + offset += cur_bytes; | ||
224 | bytes -= cur_bytes; | ||
225 | } | ||
226 | |||
227 | diff --git a/include/block/block-copy.h b/include/block/block-copy.h | ||
228 | index XXXXXXX..XXXXXXX 100644 | ||
229 | --- a/include/block/block-copy.h | ||
230 | +++ b/include/block/block-copy.h | ||
231 | @@ -XXX,XX +XXX,XX @@ | ||
232 | #include "qemu/co-shared-resource.h" | ||
233 | |||
234 | typedef struct BlockCopyInFlightReq { | ||
235 | - int64_t start; | ||
236 | + int64_t offset; | ||
237 | int64_t bytes; | ||
238 | QLIST_ENTRY(BlockCopyInFlightReq) list; | ||
239 | CoQueue wait_queue; /* coroutines blocked on this request */ | ||
240 | @@ -XXX,XX +XXX,XX @@ void block_copy_state_free(BlockCopyState *s); | ||
241 | int64_t block_copy_reset_unallocated(BlockCopyState *s, | ||
242 | int64_t offset, int64_t *count); | ||
243 | |||
244 | -int coroutine_fn block_copy(BlockCopyState *s, int64_t start, int64_t bytes, | ||
245 | +int coroutine_fn block_copy(BlockCopyState *s, int64_t offset, int64_t bytes, | ||
246 | bool *error_is_read); | ||
247 | |||
248 | #endif /* BLOCK_COPY_H */ | ||
249 | -- | 57 | -- |
250 | 2.24.1 | 58 | 2.21.0 |
251 | 59 | ||
252 | 60 | diff view generated by jsdifflib |
1 | From: David Edmondson <david.edmondson@oracle.com> | 1 | From: Sam Eiderman <shmuel.eiderman@oracle.com> |
---|---|---|---|
2 | 2 | ||
3 | RFC 7230 section 3.2 indicates that whitespace is permitted between | 3 | 512M of L1 entries is a very loose bound, only 32M are required to store |
4 | the field name and field value and after the field value. | 4 | the maximal supported VMDK file size of 2TB. |
5 | 5 | ||
6 | Signed-off-by: David Edmondson <david.edmondson@oracle.com> | 6 | Fixed qemu-iotest 59# - now failure occures before on impossible L1 |
7 | Message-Id: <20200224101310.101169-2-david.edmondson@oracle.com> | 7 | table size. |
8 | |||
9 | Reviewed-by: Karl Heubaum <karl.heubaum@oracle.com> | ||
10 | Reviewed-by: Eyal Moscovici <eyal.moscovici@oracle.com> | ||
11 | Reviewed-by: Liran Alon <liran.alon@oracle.com> | ||
12 | Reviewed-by: Arbel Moshe <arbel.moshe@oracle.com> | ||
13 | Signed-off-by: Sam Eiderman <shmuel.eiderman@oracle.com> | ||
14 | Message-id: 20190620091057.47441-3-shmuel.eiderman@oracle.com | ||
8 | Reviewed-by: Max Reitz <mreitz@redhat.com> | 15 | Reviewed-by: Max Reitz <mreitz@redhat.com> |
9 | Signed-off-by: Max Reitz <mreitz@redhat.com> | 16 | Signed-off-by: Max Reitz <mreitz@redhat.com> |
10 | --- | 17 | --- |
11 | block/curl.c | 31 +++++++++++++++++++++++++++---- | 18 | block/vmdk.c | 13 +++++++------ |
12 | 1 file changed, 27 insertions(+), 4 deletions(-) | 19 | tests/qemu-iotests/059.out | 2 +- |
20 | 2 files changed, 8 insertions(+), 7 deletions(-) | ||
13 | 21 | ||
14 | diff --git a/block/curl.c b/block/curl.c | 22 | diff --git a/block/vmdk.c b/block/vmdk.c |
15 | index XXXXXXX..XXXXXXX 100644 | 23 | index XXXXXXX..XXXXXXX 100644 |
16 | --- a/block/curl.c | 24 | --- a/block/vmdk.c |
17 | +++ b/block/curl.c | 25 | +++ b/block/vmdk.c |
18 | @@ -XXX,XX +XXX,XX @@ static size_t curl_header_cb(void *ptr, size_t size, size_t nmemb, void *opaque) | 26 | @@ -XXX,XX +XXX,XX @@ static int vmdk_add_extent(BlockDriverState *bs, |
19 | { | 27 | error_setg(errp, "Invalid granularity, image may be corrupt"); |
20 | BDRVCURLState *s = opaque; | 28 | return -EFBIG; |
21 | size_t realsize = size * nmemb; | ||
22 | - const char *accept_line = "Accept-Ranges: bytes"; | ||
23 | + const char *header = (char *)ptr; | ||
24 | + const char *end = header + realsize; | ||
25 | + const char *accept_ranges = "Accept-Ranges:"; | ||
26 | + const char *bytes = "bytes"; | ||
27 | |||
28 | - if (realsize >= strlen(accept_line) | ||
29 | - && strncmp((char *)ptr, accept_line, strlen(accept_line)) == 0) { | ||
30 | - s->accept_range = true; | ||
31 | + if (realsize >= strlen(accept_ranges) | ||
32 | + && strncmp(header, accept_ranges, strlen(accept_ranges)) == 0) { | ||
33 | + | ||
34 | + char *p = strchr(header, ':') + 1; | ||
35 | + | ||
36 | + /* Skip whitespace between the header name and value. */ | ||
37 | + while (p < end && *p && g_ascii_isspace(*p)) { | ||
38 | + p++; | ||
39 | + } | ||
40 | + | ||
41 | + if (end - p >= strlen(bytes) | ||
42 | + && strncmp(p, bytes, strlen(bytes)) == 0) { | ||
43 | + | ||
44 | + /* Check that there is nothing but whitespace after the value. */ | ||
45 | + p += strlen(bytes); | ||
46 | + while (p < end && *p && g_ascii_isspace(*p)) { | ||
47 | + p++; | ||
48 | + } | ||
49 | + | ||
50 | + if (p == end || !*p) { | ||
51 | + s->accept_range = true; | ||
52 | + } | ||
53 | + } | ||
54 | } | 29 | } |
55 | 30 | - if (l1_size > 512 * 1024 * 1024) { | |
56 | return realsize; | 31 | + if (l1_size > 32 * 1024 * 1024) { |
32 | /* | ||
33 | * Although with big capacity and small l1_entry_sectors, we can get a | ||
34 | * big l1_size, we don't want unbounded value to allocate the table. | ||
35 | - * Limit it to 512M, which is: | ||
36 | - * 16PB - for default "Hosted Sparse Extent" (VMDK4) | ||
37 | - * cluster size: 64KB, L2 table size: 512 entries | ||
38 | - * 1PB - for default "ESXi Host Sparse Extent" (VMDK3/vmfsSparse) | ||
39 | - * cluster size: 512B, L2 table size: 4096 entries | ||
40 | + * Limit it to 32M, which is enough to store: | ||
41 | + * 8TB - for both VMDK3 & VMDK4 with | ||
42 | + * minimal cluster size: 512B | ||
43 | + * minimal L2 table size: 512 entries | ||
44 | + * 8 TB is still more than the maximal value supported for | ||
45 | + * VMDK3 & VMDK4 which is 2TB. | ||
46 | */ | ||
47 | error_setg(errp, "L1 size too big"); | ||
48 | return -EFBIG; | ||
49 | diff --git a/tests/qemu-iotests/059.out b/tests/qemu-iotests/059.out | ||
50 | index XXXXXXX..XXXXXXX 100644 | ||
51 | --- a/tests/qemu-iotests/059.out | ||
52 | +++ b/tests/qemu-iotests/059.out | ||
53 | @@ -XXX,XX +XXX,XX @@ Offset Length Mapped to File | ||
54 | 0x140000000 0x10000 0x50000 TEST_DIR/t-s003.vmdk | ||
55 | |||
56 | === Testing afl image with a very large capacity === | ||
57 | -qemu-img: Can't get image size 'TEST_DIR/afl9.IMGFMT': File too large | ||
58 | +qemu-img: Could not open 'TEST_DIR/afl9.IMGFMT': L1 size too big | ||
59 | *** done | ||
57 | -- | 60 | -- |
58 | 2.24.1 | 61 | 2.21.0 |
59 | 62 | ||
60 | 63 | diff view generated by jsdifflib |
1 | From: Stefan Hajnoczi <stefanha@redhat.com> | 1 | From: Sam Eiderman <shmuel.eiderman@oracle.com> |
---|---|---|---|
2 | 2 | ||
3 | The qcow2 .bdrv_measure() code calculates the crypto payload offset. | 3 | Until ESXi 6.5 VMware used the vmfsSparse format for snapshots (VMDK3 in |
4 | This logic really belongs in crypto/block.c where it can be reused by | 4 | QEMU). |
5 | other image formats. | 5 | |
6 | 6 | This format was lacking in the following: | |
7 | The "luks" block driver will need this same logic in order to implement | 7 | |
8 | .bdrv_measure(), so extract the qcrypto_block_calculate_payload_offset() | 8 | * Grain directory (L1) and grain table (L2) entries were 32-bit, |
9 | function now. | 9 | allowing access to only 2TB (slightly less) of data. |
10 | 10 | * The grain size (default) was 512 bytes - leading to data | |
11 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | 11 | fragmentation and many grain tables. |
12 | Reviewed-by: Max Reitz <mreitz@redhat.com> | 12 | * For space reclamation purposes, it was necessary to find all the |
13 | Message-Id: <20200221112522.1497712-2-stefanha@redhat.com> | 13 | grains which are not pointed to by any grain table - so a reverse |
14 | mapping of "offset of grain in vmdk" to "grain table" must be | ||
15 | constructed - which takes large amounts of CPU/RAM. | ||
16 | |||
17 | The format specification can be found in VMware's documentation: | ||
18 | https://www.vmware.com/support/developer/vddk/vmdk_50_technote.pdf | ||
19 | |||
20 | In ESXi 6.5, to support snapshot files larger than 2TB, a new format was | ||
21 | introduced: SESparse (Space Efficient). | ||
22 | |||
23 | This format fixes the above issues: | ||
24 | |||
25 | * All entries are now 64-bit. | ||
26 | * The grain size (default) is 4KB. | ||
27 | * Grain directory and grain tables are now located at the beginning | ||
28 | of the file. | ||
29 | + seSparse format reserves space for all grain tables. | ||
30 | + Grain tables can be addressed using an index. | ||
31 | + Grains are located in the end of the file and can also be | ||
32 | addressed with an index. | ||
33 | - seSparse vmdks of large disks (64TB) have huge preallocated | ||
34 | headers - mainly due to L2 tables, even for empty snapshots. | ||
35 | * The header contains a reverse mapping ("backmap") of "offset of | ||
36 | grain in vmdk" to "grain table" and a bitmap ("free bitmap") which | ||
37 | specifies for each grain - whether it is allocated or not. | ||
38 | Using these data structures we can implement space reclamation | ||
39 | efficiently. | ||
40 | * Due to the fact that the header now maintains two mappings: | ||
41 | * The regular one (grain directory & grain tables) | ||
42 | * A reverse one (backmap and free bitmap) | ||
43 | These data structures can lose consistency upon crash and result | ||
44 | in a corrupted VMDK. | ||
45 | Therefore, a journal is also added to the VMDK and is replayed | ||
46 | when the VMware reopens the file after a crash. | ||
47 | |||
48 | Since ESXi 6.7 - SESparse is the only snapshot format available. | ||
49 | |||
50 | Unfortunately, VMware does not provide documentation regarding the new | ||
51 | seSparse format. | ||
52 | |||
53 | This commit is based on black-box research of the seSparse format. | ||
54 | Various in-guest block operations and their effect on the snapshot file | ||
55 | were tested. | ||
56 | |||
57 | The only VMware provided source of information (regarding the underlying | ||
58 | implementation) was a log file on the ESXi: | ||
59 | |||
60 | /var/log/hostd.log | ||
61 | |||
62 | Whenever an seSparse snapshot is created - the log is being populated | ||
63 | with seSparse records. | ||
64 | |||
65 | Relevant log records are of the form: | ||
66 | |||
67 | [...] Const Header: | ||
68 | [...] constMagic = 0xcafebabe | ||
69 | [...] version = 2.1 | ||
70 | [...] capacity = 204800 | ||
71 | [...] grainSize = 8 | ||
72 | [...] grainTableSize = 64 | ||
73 | [...] flags = 0 | ||
74 | [...] Extents: | ||
75 | [...] Header : <1 : 1> | ||
76 | [...] JournalHdr : <2 : 2> | ||
77 | [...] Journal : <2048 : 2048> | ||
78 | [...] GrainDirectory : <4096 : 2048> | ||
79 | [...] GrainTables : <6144 : 2048> | ||
80 | [...] FreeBitmap : <8192 : 2048> | ||
81 | [...] BackMap : <10240 : 2048> | ||
82 | [...] Grain : <12288 : 204800> | ||
83 | [...] Volatile Header: | ||
84 | [...] volatileMagic = 0xcafecafe | ||
85 | [...] FreeGTNumber = 0 | ||
86 | [...] nextTxnSeqNumber = 0 | ||
87 | [...] replayJournal = 0 | ||
88 | |||
89 | The sizes that are seen in the log file are in sectors. | ||
90 | Extents are of the following format: <offset : size> | ||
91 | |||
92 | This commit is a strict implementation which enforces: | ||
93 | * magics | ||
94 | * version number 2.1 | ||
95 | * grain size of 8 sectors (4KB) | ||
96 | * grain table size of 64 sectors | ||
97 | * zero flags | ||
98 | * extent locations | ||
99 | |||
100 | Additionally, this commit proivdes only a subset of the functionality | ||
101 | offered by seSparse's format: | ||
102 | * Read-only | ||
103 | * No journal replay | ||
104 | * No space reclamation | ||
105 | * No unmap support | ||
106 | |||
107 | Hence, journal header, journal, free bitmap and backmap extents are | ||
108 | unused, only the "classic" (L1 -> L2 -> data) grain access is | ||
109 | implemented. | ||
110 | |||
111 | However there are several differences in the grain access itself. | ||
112 | Grain directory (L1): | ||
113 | * Grain directory entries are indexes (not offsets) to grain | ||
114 | tables. | ||
115 | * Valid grain directory entries have their highest nibble set to | ||
116 | 0x1. | ||
117 | * Since grain tables are always located in the beginning of the | ||
118 | file - the index can fit into 32 bits - so we can use its low | ||
119 | part if it's valid. | ||
120 | Grain table (L2): | ||
121 | * Grain table entries are indexes (not offsets) to grains. | ||
122 | * If the highest nibble of the entry is: | ||
123 | 0x0: | ||
124 | The grain in not allocated. | ||
125 | The rest of the bytes are 0. | ||
126 | 0x1: | ||
127 | The grain is unmapped - guest sees a zero grain. | ||
128 | The rest of the bits point to the previously mapped grain, | ||
129 | see 0x3 case. | ||
130 | 0x2: | ||
131 | The grain is zero. | ||
132 | 0x3: | ||
133 | The grain is allocated - to get the index calculate: | ||
134 | ((entry & 0x0fff000000000000) >> 48) | | ||
135 | ((entry & 0x0000ffffffffffff) << 12) | ||
136 | * The difference between 0x1 and 0x2 is that 0x1 is an unallocated | ||
137 | grain which results from the guest using sg_unmap to unmap the | ||
138 | grain - but the grain itself still exists in the grain extent - a | ||
139 | space reclamation procedure should delete it. | ||
140 | Unmapping a zero grain has no effect (0x2 will not change to 0x1) | ||
141 | but unmapping an unallocated grain will (0x0 to 0x1) - naturally. | ||
142 | |||
143 | In order to implement seSparse some fields had to be changed to support | ||
144 | both 32-bit and 64-bit entry sizes. | ||
145 | |||
146 | Reviewed-by: Karl Heubaum <karl.heubaum@oracle.com> | ||
147 | Reviewed-by: Eyal Moscovici <eyal.moscovici@oracle.com> | ||
148 | Reviewed-by: Arbel Moshe <arbel.moshe@oracle.com> | ||
149 | Signed-off-by: Sam Eiderman <shmuel.eiderman@oracle.com> | ||
150 | Message-id: 20190620091057.47441-4-shmuel.eiderman@oracle.com | ||
14 | Signed-off-by: Max Reitz <mreitz@redhat.com> | 151 | Signed-off-by: Max Reitz <mreitz@redhat.com> |
15 | --- | 152 | --- |
16 | block/qcow2.c | 74 +++++++++++------------------------------- | 153 | block/vmdk.c | 358 ++++++++++++++++++++++++++++++++++++++++++++++++--- |
17 | crypto/block.c | 36 ++++++++++++++++++++ | 154 | 1 file changed, 342 insertions(+), 16 deletions(-) |
18 | include/crypto/block.h | 22 +++++++++++++ | 155 | |
19 | 3 files changed, 77 insertions(+), 55 deletions(-) | 156 | diff --git a/block/vmdk.c b/block/vmdk.c |
20 | |||
21 | diff --git a/block/qcow2.c b/block/qcow2.c | ||
22 | index XXXXXXX..XXXXXXX 100644 | 157 | index XXXXXXX..XXXXXXX 100644 |
23 | --- a/block/qcow2.c | 158 | --- a/block/vmdk.c |
24 | +++ b/block/qcow2.c | 159 | +++ b/block/vmdk.c |
25 | @@ -XXX,XX +XXX,XX @@ static coroutine_fn int qcow2_co_flush_to_os(BlockDriverState *bs) | 160 | @@ -XXX,XX +XXX,XX @@ typedef struct { |
161 | uint16_t compressAlgorithm; | ||
162 | } QEMU_PACKED VMDK4Header; | ||
163 | |||
164 | +typedef struct VMDKSESparseConstHeader { | ||
165 | + uint64_t magic; | ||
166 | + uint64_t version; | ||
167 | + uint64_t capacity; | ||
168 | + uint64_t grain_size; | ||
169 | + uint64_t grain_table_size; | ||
170 | + uint64_t flags; | ||
171 | + uint64_t reserved1; | ||
172 | + uint64_t reserved2; | ||
173 | + uint64_t reserved3; | ||
174 | + uint64_t reserved4; | ||
175 | + uint64_t volatile_header_offset; | ||
176 | + uint64_t volatile_header_size; | ||
177 | + uint64_t journal_header_offset; | ||
178 | + uint64_t journal_header_size; | ||
179 | + uint64_t journal_offset; | ||
180 | + uint64_t journal_size; | ||
181 | + uint64_t grain_dir_offset; | ||
182 | + uint64_t grain_dir_size; | ||
183 | + uint64_t grain_tables_offset; | ||
184 | + uint64_t grain_tables_size; | ||
185 | + uint64_t free_bitmap_offset; | ||
186 | + uint64_t free_bitmap_size; | ||
187 | + uint64_t backmap_offset; | ||
188 | + uint64_t backmap_size; | ||
189 | + uint64_t grains_offset; | ||
190 | + uint64_t grains_size; | ||
191 | + uint8_t pad[304]; | ||
192 | +} QEMU_PACKED VMDKSESparseConstHeader; | ||
193 | + | ||
194 | +typedef struct VMDKSESparseVolatileHeader { | ||
195 | + uint64_t magic; | ||
196 | + uint64_t free_gt_number; | ||
197 | + uint64_t next_txn_seq_number; | ||
198 | + uint64_t replay_journal; | ||
199 | + uint8_t pad[480]; | ||
200 | +} QEMU_PACKED VMDKSESparseVolatileHeader; | ||
201 | + | ||
202 | #define L2_CACHE_SIZE 16 | ||
203 | |||
204 | typedef struct VmdkExtent { | ||
205 | @@ -XXX,XX +XXX,XX @@ typedef struct VmdkExtent { | ||
206 | bool compressed; | ||
207 | bool has_marker; | ||
208 | bool has_zero_grain; | ||
209 | + bool sesparse; | ||
210 | + uint64_t sesparse_l2_tables_offset; | ||
211 | + uint64_t sesparse_clusters_offset; | ||
212 | + int32_t entry_size; | ||
213 | int version; | ||
214 | int64_t sectors; | ||
215 | int64_t end_sector; | ||
216 | int64_t flat_start_offset; | ||
217 | int64_t l1_table_offset; | ||
218 | int64_t l1_backup_table_offset; | ||
219 | - uint32_t *l1_table; | ||
220 | + void *l1_table; | ||
221 | uint32_t *l1_backup_table; | ||
222 | unsigned int l1_size; | ||
223 | uint32_t l1_entry_sectors; | ||
224 | |||
225 | unsigned int l2_size; | ||
226 | - uint32_t *l2_cache; | ||
227 | + void *l2_cache; | ||
228 | uint32_t l2_cache_offsets[L2_CACHE_SIZE]; | ||
229 | uint32_t l2_cache_counts[L2_CACHE_SIZE]; | ||
230 | |||
231 | @@ -XXX,XX +XXX,XX @@ static int vmdk_add_extent(BlockDriverState *bs, | ||
232 | * minimal L2 table size: 512 entries | ||
233 | * 8 TB is still more than the maximal value supported for | ||
234 | * VMDK3 & VMDK4 which is 2TB. | ||
235 | + * 64TB - for "ESXi seSparse Extent" | ||
236 | + * minimal cluster size: 512B (default is 4KB) | ||
237 | + * L2 table size: 4096 entries (const). | ||
238 | + * 64TB is more than the maximal value supported for | ||
239 | + * seSparse VMDKs (which is slightly less than 64TB) | ||
240 | */ | ||
241 | error_setg(errp, "L1 size too big"); | ||
242 | return -EFBIG; | ||
243 | @@ -XXX,XX +XXX,XX @@ static int vmdk_add_extent(BlockDriverState *bs, | ||
244 | extent->l2_size = l2_size; | ||
245 | extent->cluster_sectors = flat ? sectors : cluster_sectors; | ||
246 | extent->next_cluster_sector = ROUND_UP(nb_sectors, cluster_sectors); | ||
247 | + extent->entry_size = sizeof(uint32_t); | ||
248 | |||
249 | if (s->num_extents > 1) { | ||
250 | extent->end_sector = (*(extent - 1)).end_sector + extent->sectors; | ||
251 | @@ -XXX,XX +XXX,XX @@ static int vmdk_init_tables(BlockDriverState *bs, VmdkExtent *extent, | ||
252 | int i; | ||
253 | |||
254 | /* read the L1 table */ | ||
255 | - l1_size = extent->l1_size * sizeof(uint32_t); | ||
256 | + l1_size = extent->l1_size * extent->entry_size; | ||
257 | extent->l1_table = g_try_malloc(l1_size); | ||
258 | if (l1_size && extent->l1_table == NULL) { | ||
259 | return -ENOMEM; | ||
260 | @@ -XXX,XX +XXX,XX @@ static int vmdk_init_tables(BlockDriverState *bs, VmdkExtent *extent, | ||
261 | goto fail_l1; | ||
262 | } | ||
263 | for (i = 0; i < extent->l1_size; i++) { | ||
264 | - le32_to_cpus(&extent->l1_table[i]); | ||
265 | + if (extent->entry_size == sizeof(uint64_t)) { | ||
266 | + le64_to_cpus((uint64_t *)extent->l1_table + i); | ||
267 | + } else { | ||
268 | + assert(extent->entry_size == sizeof(uint32_t)); | ||
269 | + le32_to_cpus((uint32_t *)extent->l1_table + i); | ||
270 | + } | ||
271 | } | ||
272 | |||
273 | if (extent->l1_backup_table_offset) { | ||
274 | + assert(!extent->sesparse); | ||
275 | extent->l1_backup_table = g_try_malloc(l1_size); | ||
276 | if (l1_size && extent->l1_backup_table == NULL) { | ||
277 | ret = -ENOMEM; | ||
278 | @@ -XXX,XX +XXX,XX @@ static int vmdk_init_tables(BlockDriverState *bs, VmdkExtent *extent, | ||
279 | } | ||
280 | |||
281 | extent->l2_cache = | ||
282 | - g_new(uint32_t, extent->l2_size * L2_CACHE_SIZE); | ||
283 | + g_malloc(extent->entry_size * extent->l2_size * L2_CACHE_SIZE); | ||
284 | return 0; | ||
285 | fail_l1b: | ||
286 | g_free(extent->l1_backup_table); | ||
287 | @@ -XXX,XX +XXX,XX @@ static int vmdk_open_vmfs_sparse(BlockDriverState *bs, | ||
26 | return ret; | 288 | return ret; |
27 | } | 289 | } |
28 | 290 | ||
29 | -static ssize_t qcow2_measure_crypto_hdr_init_func(QCryptoBlock *block, | 291 | +#define SESPARSE_CONST_HEADER_MAGIC UINT64_C(0x00000000cafebabe) |
30 | - size_t headerlen, void *opaque, Error **errp) | 292 | +#define SESPARSE_VOLATILE_HEADER_MAGIC UINT64_C(0x00000000cafecafe) |
31 | -{ | 293 | + |
32 | - size_t *headerlenp = opaque; | 294 | +/* Strict checks - format not officially documented */ |
33 | - | 295 | +static int check_se_sparse_const_header(VMDKSESparseConstHeader *header, |
34 | - /* Stash away the payload size */ | 296 | + Error **errp) |
35 | - *headerlenp = headerlen; | ||
36 | - return 0; | ||
37 | -} | ||
38 | - | ||
39 | -static ssize_t qcow2_measure_crypto_hdr_write_func(QCryptoBlock *block, | ||
40 | - size_t offset, const uint8_t *buf, size_t buflen, | ||
41 | - void *opaque, Error **errp) | ||
42 | -{ | ||
43 | - /* Discard the bytes, we're not actually writing to an image */ | ||
44 | - return buflen; | ||
45 | -} | ||
46 | - | ||
47 | -/* Determine the number of bytes for the LUKS payload */ | ||
48 | -static bool qcow2_measure_luks_headerlen(QemuOpts *opts, size_t *len, | ||
49 | - Error **errp) | ||
50 | -{ | ||
51 | - QDict *opts_qdict; | ||
52 | - QDict *cryptoopts_qdict; | ||
53 | - QCryptoBlockCreateOptions *cryptoopts; | ||
54 | - QCryptoBlock *crypto; | ||
55 | - | ||
56 | - /* Extract "encrypt." options into a qdict */ | ||
57 | - opts_qdict = qemu_opts_to_qdict(opts, NULL); | ||
58 | - qdict_extract_subqdict(opts_qdict, &cryptoopts_qdict, "encrypt."); | ||
59 | - qobject_unref(opts_qdict); | ||
60 | - | ||
61 | - /* Build QCryptoBlockCreateOptions object from qdict */ | ||
62 | - qdict_put_str(cryptoopts_qdict, "format", "luks"); | ||
63 | - cryptoopts = block_crypto_create_opts_init(cryptoopts_qdict, errp); | ||
64 | - qobject_unref(cryptoopts_qdict); | ||
65 | - if (!cryptoopts) { | ||
66 | - return false; | ||
67 | - } | ||
68 | - | ||
69 | - /* Fake LUKS creation in order to determine the payload size */ | ||
70 | - crypto = qcrypto_block_create(cryptoopts, "encrypt.", | ||
71 | - qcow2_measure_crypto_hdr_init_func, | ||
72 | - qcow2_measure_crypto_hdr_write_func, | ||
73 | - len, errp); | ||
74 | - qapi_free_QCryptoBlockCreateOptions(cryptoopts); | ||
75 | - if (!crypto) { | ||
76 | - return false; | ||
77 | - } | ||
78 | - | ||
79 | - qcrypto_block_free(crypto); | ||
80 | - return true; | ||
81 | -} | ||
82 | - | ||
83 | static BlockMeasureInfo *qcow2_measure(QemuOpts *opts, BlockDriverState *in_bs, | ||
84 | Error **errp) | ||
85 | { | ||
86 | @@ -XXX,XX +XXX,XX @@ static BlockMeasureInfo *qcow2_measure(QemuOpts *opts, BlockDriverState *in_bs, | ||
87 | g_free(optstr); | ||
88 | |||
89 | if (has_luks) { | ||
90 | + g_autoptr(QCryptoBlockCreateOptions) create_opts = NULL; | ||
91 | + QDict *opts_qdict; | ||
92 | + QDict *cryptoopts; | ||
93 | size_t headerlen; | ||
94 | |||
95 | - if (!qcow2_measure_luks_headerlen(opts, &headerlen, &local_err)) { | ||
96 | + opts_qdict = qemu_opts_to_qdict(opts, NULL); | ||
97 | + qdict_extract_subqdict(opts_qdict, &cryptoopts, "encrypt."); | ||
98 | + qobject_unref(opts_qdict); | ||
99 | + | ||
100 | + qdict_put_str(cryptoopts, "format", "luks"); | ||
101 | + | ||
102 | + create_opts = block_crypto_create_opts_init(cryptoopts, errp); | ||
103 | + qobject_unref(cryptoopts); | ||
104 | + if (!create_opts) { | ||
105 | + goto err; | ||
106 | + } | ||
107 | + | ||
108 | + if (!qcrypto_block_calculate_payload_offset(create_opts, | ||
109 | + "encrypt.", | ||
110 | + &headerlen, | ||
111 | + &local_err)) { | ||
112 | goto err; | ||
113 | } | ||
114 | |||
115 | diff --git a/crypto/block.c b/crypto/block.c | ||
116 | index XXXXXXX..XXXXXXX 100644 | ||
117 | --- a/crypto/block.c | ||
118 | +++ b/crypto/block.c | ||
119 | @@ -XXX,XX +XXX,XX @@ QCryptoBlock *qcrypto_block_create(QCryptoBlockCreateOptions *options, | ||
120 | } | ||
121 | |||
122 | |||
123 | +static ssize_t qcrypto_block_headerlen_hdr_init_func(QCryptoBlock *block, | ||
124 | + size_t headerlen, void *opaque, Error **errp) | ||
125 | +{ | 297 | +{ |
126 | + size_t *headerlenp = opaque; | 298 | + header->magic = le64_to_cpu(header->magic); |
127 | + | 299 | + header->version = le64_to_cpu(header->version); |
128 | + /* Stash away the payload size */ | 300 | + header->grain_size = le64_to_cpu(header->grain_size); |
129 | + *headerlenp = headerlen; | 301 | + header->grain_table_size = le64_to_cpu(header->grain_table_size); |
302 | + header->flags = le64_to_cpu(header->flags); | ||
303 | + header->reserved1 = le64_to_cpu(header->reserved1); | ||
304 | + header->reserved2 = le64_to_cpu(header->reserved2); | ||
305 | + header->reserved3 = le64_to_cpu(header->reserved3); | ||
306 | + header->reserved4 = le64_to_cpu(header->reserved4); | ||
307 | + | ||
308 | + header->volatile_header_offset = | ||
309 | + le64_to_cpu(header->volatile_header_offset); | ||
310 | + header->volatile_header_size = le64_to_cpu(header->volatile_header_size); | ||
311 | + | ||
312 | + header->journal_header_offset = le64_to_cpu(header->journal_header_offset); | ||
313 | + header->journal_header_size = le64_to_cpu(header->journal_header_size); | ||
314 | + | ||
315 | + header->journal_offset = le64_to_cpu(header->journal_offset); | ||
316 | + header->journal_size = le64_to_cpu(header->journal_size); | ||
317 | + | ||
318 | + header->grain_dir_offset = le64_to_cpu(header->grain_dir_offset); | ||
319 | + header->grain_dir_size = le64_to_cpu(header->grain_dir_size); | ||
320 | + | ||
321 | + header->grain_tables_offset = le64_to_cpu(header->grain_tables_offset); | ||
322 | + header->grain_tables_size = le64_to_cpu(header->grain_tables_size); | ||
323 | + | ||
324 | + header->free_bitmap_offset = le64_to_cpu(header->free_bitmap_offset); | ||
325 | + header->free_bitmap_size = le64_to_cpu(header->free_bitmap_size); | ||
326 | + | ||
327 | + header->backmap_offset = le64_to_cpu(header->backmap_offset); | ||
328 | + header->backmap_size = le64_to_cpu(header->backmap_size); | ||
329 | + | ||
330 | + header->grains_offset = le64_to_cpu(header->grains_offset); | ||
331 | + header->grains_size = le64_to_cpu(header->grains_size); | ||
332 | + | ||
333 | + if (header->magic != SESPARSE_CONST_HEADER_MAGIC) { | ||
334 | + error_setg(errp, "Bad const header magic: 0x%016" PRIx64, | ||
335 | + header->magic); | ||
336 | + return -EINVAL; | ||
337 | + } | ||
338 | + | ||
339 | + if (header->version != 0x0000000200000001) { | ||
340 | + error_setg(errp, "Unsupported version: 0x%016" PRIx64, | ||
341 | + header->version); | ||
342 | + return -ENOTSUP; | ||
343 | + } | ||
344 | + | ||
345 | + if (header->grain_size != 8) { | ||
346 | + error_setg(errp, "Unsupported grain size: %" PRIu64, | ||
347 | + header->grain_size); | ||
348 | + return -ENOTSUP; | ||
349 | + } | ||
350 | + | ||
351 | + if (header->grain_table_size != 64) { | ||
352 | + error_setg(errp, "Unsupported grain table size: %" PRIu64, | ||
353 | + header->grain_table_size); | ||
354 | + return -ENOTSUP; | ||
355 | + } | ||
356 | + | ||
357 | + if (header->flags != 0) { | ||
358 | + error_setg(errp, "Unsupported flags: 0x%016" PRIx64, | ||
359 | + header->flags); | ||
360 | + return -ENOTSUP; | ||
361 | + } | ||
362 | + | ||
363 | + if (header->reserved1 != 0 || header->reserved2 != 0 || | ||
364 | + header->reserved3 != 0 || header->reserved4 != 0) { | ||
365 | + error_setg(errp, "Unsupported reserved bits:" | ||
366 | + " 0x%016" PRIx64 " 0x%016" PRIx64 | ||
367 | + " 0x%016" PRIx64 " 0x%016" PRIx64, | ||
368 | + header->reserved1, header->reserved2, | ||
369 | + header->reserved3, header->reserved4); | ||
370 | + return -ENOTSUP; | ||
371 | + } | ||
372 | + | ||
373 | + /* check that padding is 0 */ | ||
374 | + if (!buffer_is_zero(header->pad, sizeof(header->pad))) { | ||
375 | + error_setg(errp, "Unsupported non-zero const header padding"); | ||
376 | + return -ENOTSUP; | ||
377 | + } | ||
378 | + | ||
130 | + return 0; | 379 | + return 0; |
131 | +} | 380 | +} |
132 | + | 381 | + |
133 | + | 382 | +static int check_se_sparse_volatile_header(VMDKSESparseVolatileHeader *header, |
134 | +static ssize_t qcrypto_block_headerlen_hdr_write_func(QCryptoBlock *block, | 383 | + Error **errp) |
135 | + size_t offset, const uint8_t *buf, size_t buflen, | ||
136 | + void *opaque, Error **errp) | ||
137 | +{ | 384 | +{ |
138 | + /* Discard the bytes, we're not actually writing to an image */ | 385 | + header->magic = le64_to_cpu(header->magic); |
139 | + return buflen; | 386 | + header->free_gt_number = le64_to_cpu(header->free_gt_number); |
387 | + header->next_txn_seq_number = le64_to_cpu(header->next_txn_seq_number); | ||
388 | + header->replay_journal = le64_to_cpu(header->replay_journal); | ||
389 | + | ||
390 | + if (header->magic != SESPARSE_VOLATILE_HEADER_MAGIC) { | ||
391 | + error_setg(errp, "Bad volatile header magic: 0x%016" PRIx64, | ||
392 | + header->magic); | ||
393 | + return -EINVAL; | ||
394 | + } | ||
395 | + | ||
396 | + if (header->replay_journal) { | ||
397 | + error_setg(errp, "Image is dirty, Replaying journal not supported"); | ||
398 | + return -ENOTSUP; | ||
399 | + } | ||
400 | + | ||
401 | + /* check that padding is 0 */ | ||
402 | + if (!buffer_is_zero(header->pad, sizeof(header->pad))) { | ||
403 | + error_setg(errp, "Unsupported non-zero volatile header padding"); | ||
404 | + return -ENOTSUP; | ||
405 | + } | ||
406 | + | ||
407 | + return 0; | ||
140 | +} | 408 | +} |
141 | + | 409 | + |
142 | + | 410 | +static int vmdk_open_se_sparse(BlockDriverState *bs, |
143 | +bool | 411 | + BdrvChild *file, |
144 | +qcrypto_block_calculate_payload_offset(QCryptoBlockCreateOptions *create_opts, | 412 | + int flags, Error **errp) |
145 | + const char *optprefix, | ||
146 | + size_t *len, | ||
147 | + Error **errp) | ||
148 | +{ | 413 | +{ |
149 | + /* Fake LUKS creation in order to determine the payload size */ | 414 | + int ret; |
150 | + g_autoptr(QCryptoBlock) crypto = | 415 | + VMDKSESparseConstHeader const_header; |
151 | + qcrypto_block_create(create_opts, optprefix, | 416 | + VMDKSESparseVolatileHeader volatile_header; |
152 | + qcrypto_block_headerlen_hdr_init_func, | 417 | + VmdkExtent *extent; |
153 | + qcrypto_block_headerlen_hdr_write_func, | 418 | + |
154 | + len, errp); | 419 | + ret = bdrv_apply_auto_read_only(bs, |
155 | + return crypto != NULL; | 420 | + "No write support for seSparse images available", errp); |
421 | + if (ret < 0) { | ||
422 | + return ret; | ||
423 | + } | ||
424 | + | ||
425 | + assert(sizeof(const_header) == SECTOR_SIZE); | ||
426 | + | ||
427 | + ret = bdrv_pread(file, 0, &const_header, sizeof(const_header)); | ||
428 | + if (ret < 0) { | ||
429 | + bdrv_refresh_filename(file->bs); | ||
430 | + error_setg_errno(errp, -ret, | ||
431 | + "Could not read const header from file '%s'", | ||
432 | + file->bs->filename); | ||
433 | + return ret; | ||
434 | + } | ||
435 | + | ||
436 | + /* check const header */ | ||
437 | + ret = check_se_sparse_const_header(&const_header, errp); | ||
438 | + if (ret < 0) { | ||
439 | + return ret; | ||
440 | + } | ||
441 | + | ||
442 | + assert(sizeof(volatile_header) == SECTOR_SIZE); | ||
443 | + | ||
444 | + ret = bdrv_pread(file, | ||
445 | + const_header.volatile_header_offset * SECTOR_SIZE, | ||
446 | + &volatile_header, sizeof(volatile_header)); | ||
447 | + if (ret < 0) { | ||
448 | + bdrv_refresh_filename(file->bs); | ||
449 | + error_setg_errno(errp, -ret, | ||
450 | + "Could not read volatile header from file '%s'", | ||
451 | + file->bs->filename); | ||
452 | + return ret; | ||
453 | + } | ||
454 | + | ||
455 | + /* check volatile header */ | ||
456 | + ret = check_se_sparse_volatile_header(&volatile_header, errp); | ||
457 | + if (ret < 0) { | ||
458 | + return ret; | ||
459 | + } | ||
460 | + | ||
461 | + ret = vmdk_add_extent(bs, file, false, | ||
462 | + const_header.capacity, | ||
463 | + const_header.grain_dir_offset * SECTOR_SIZE, | ||
464 | + 0, | ||
465 | + const_header.grain_dir_size * | ||
466 | + SECTOR_SIZE / sizeof(uint64_t), | ||
467 | + const_header.grain_table_size * | ||
468 | + SECTOR_SIZE / sizeof(uint64_t), | ||
469 | + const_header.grain_size, | ||
470 | + &extent, | ||
471 | + errp); | ||
472 | + if (ret < 0) { | ||
473 | + return ret; | ||
474 | + } | ||
475 | + | ||
476 | + extent->sesparse = true; | ||
477 | + extent->sesparse_l2_tables_offset = const_header.grain_tables_offset; | ||
478 | + extent->sesparse_clusters_offset = const_header.grains_offset; | ||
479 | + extent->entry_size = sizeof(uint64_t); | ||
480 | + | ||
481 | + ret = vmdk_init_tables(bs, extent, errp); | ||
482 | + if (ret) { | ||
483 | + /* free extent allocated by vmdk_add_extent */ | ||
484 | + vmdk_free_last_extent(bs); | ||
485 | + } | ||
486 | + | ||
487 | + return ret; | ||
156 | +} | 488 | +} |
157 | + | 489 | + |
158 | + | 490 | static int vmdk_open_desc_file(BlockDriverState *bs, int flags, char *buf, |
159 | QCryptoBlockInfo *qcrypto_block_get_info(QCryptoBlock *block, | 491 | QDict *options, Error **errp); |
160 | Error **errp) | 492 | |
493 | @@ -XXX,XX +XXX,XX @@ static int vmdk_parse_extents(const char *desc, BlockDriverState *bs, | ||
494 | * RW [size in sectors] SPARSE "file-name.vmdk" | ||
495 | * RW [size in sectors] VMFS "file-name.vmdk" | ||
496 | * RW [size in sectors] VMFSSPARSE "file-name.vmdk" | ||
497 | + * RW [size in sectors] SESPARSE "file-name.vmdk" | ||
498 | */ | ||
499 | flat_offset = -1; | ||
500 | matches = sscanf(p, "%10s %" SCNd64 " %10s \"%511[^\n\r\"]\" %" SCNd64, | ||
501 | @@ -XXX,XX +XXX,XX @@ static int vmdk_parse_extents(const char *desc, BlockDriverState *bs, | ||
502 | |||
503 | if (sectors <= 0 || | ||
504 | (strcmp(type, "FLAT") && strcmp(type, "SPARSE") && | ||
505 | - strcmp(type, "VMFS") && strcmp(type, "VMFSSPARSE")) || | ||
506 | + strcmp(type, "VMFS") && strcmp(type, "VMFSSPARSE") && | ||
507 | + strcmp(type, "SESPARSE")) || | ||
508 | (strcmp(access, "RW"))) { | ||
509 | continue; | ||
510 | } | ||
511 | @@ -XXX,XX +XXX,XX @@ static int vmdk_parse_extents(const char *desc, BlockDriverState *bs, | ||
512 | return ret; | ||
513 | } | ||
514 | extent = &s->extents[s->num_extents - 1]; | ||
515 | + } else if (!strcmp(type, "SESPARSE")) { | ||
516 | + ret = vmdk_open_se_sparse(bs, extent_file, bs->open_flags, errp); | ||
517 | + if (ret) { | ||
518 | + bdrv_unref_child(bs, extent_file); | ||
519 | + return ret; | ||
520 | + } | ||
521 | + extent = &s->extents[s->num_extents - 1]; | ||
522 | } else { | ||
523 | error_setg(errp, "Unsupported extent type '%s'", type); | ||
524 | bdrv_unref_child(bs, extent_file); | ||
525 | @@ -XXX,XX +XXX,XX @@ static int vmdk_open_desc_file(BlockDriverState *bs, int flags, char *buf, | ||
526 | if (strcmp(ct, "monolithicFlat") && | ||
527 | strcmp(ct, "vmfs") && | ||
528 | strcmp(ct, "vmfsSparse") && | ||
529 | + strcmp(ct, "seSparse") && | ||
530 | strcmp(ct, "twoGbMaxExtentSparse") && | ||
531 | strcmp(ct, "twoGbMaxExtentFlat")) { | ||
532 | error_setg(errp, "Unsupported image type '%s'", ct); | ||
533 | @@ -XXX,XX +XXX,XX @@ static int get_cluster_offset(BlockDriverState *bs, | ||
161 | { | 534 | { |
162 | diff --git a/include/crypto/block.h b/include/crypto/block.h | 535 | unsigned int l1_index, l2_offset, l2_index; |
163 | index XXXXXXX..XXXXXXX 100644 | 536 | int min_index, i, j; |
164 | --- a/include/crypto/block.h | 537 | - uint32_t min_count, *l2_table; |
165 | +++ b/include/crypto/block.h | 538 | + uint32_t min_count; |
166 | @@ -XXX,XX +XXX,XX @@ QCryptoBlock *qcrypto_block_create(QCryptoBlockCreateOptions *options, | 539 | + void *l2_table; |
167 | Error **errp); | 540 | bool zeroed = false; |
168 | 541 | int64_t ret; | |
169 | 542 | int64_t cluster_sector; | |
170 | +/** | 543 | + unsigned int l2_size_bytes = extent->l2_size * extent->entry_size; |
171 | + * qcrypto_block_calculate_payload_offset: | 544 | |
172 | + * @create_opts: the encryption options | 545 | if (m_data) { |
173 | + * @optprefix: name prefix for options | 546 | m_data->valid = 0; |
174 | + * @len: output for number of header bytes before payload | 547 | @@ -XXX,XX +XXX,XX @@ static int get_cluster_offset(BlockDriverState *bs, |
175 | + * @errp: pointer to a NULL-initialized error object | 548 | if (l1_index >= extent->l1_size) { |
176 | + * | 549 | return VMDK_ERROR; |
177 | + * Calculate the number of header bytes before the payload in an encrypted | 550 | } |
178 | + * storage volume. The header is an area before the payload that is reserved | 551 | - l2_offset = extent->l1_table[l1_index]; |
179 | + * for encryption metadata. | 552 | + if (extent->sesparse) { |
180 | + * | 553 | + uint64_t l2_offset_u64; |
181 | + * Returns: true on success, false on error | 554 | + |
182 | + */ | 555 | + assert(extent->entry_size == sizeof(uint64_t)); |
183 | +bool | 556 | + |
184 | +qcrypto_block_calculate_payload_offset(QCryptoBlockCreateOptions *create_opts, | 557 | + l2_offset_u64 = ((uint64_t *)extent->l1_table)[l1_index]; |
185 | + const char *optprefix, | 558 | + if (l2_offset_u64 == 0) { |
186 | + size_t *len, | 559 | + l2_offset = 0; |
187 | + Error **errp); | 560 | + } else if ((l2_offset_u64 & 0xffffffff00000000) != 0x1000000000000000) { |
188 | + | 561 | + /* |
189 | + | 562 | + * Top most nibble is 0x1 if grain table is allocated. |
190 | /** | 563 | + * strict check - top most 4 bytes must be 0x10000000 since max |
191 | * qcrypto_block_get_info: | 564 | + * supported size is 64TB for disk - so no more than 64TB / 16MB |
192 | * @block: the block encryption object | 565 | + * grain directories which is smaller than uint32, |
193 | @@ -XXX,XX +XXX,XX @@ uint64_t qcrypto_block_get_sector_size(QCryptoBlock *block); | 566 | + * where 16MB is the only supported default grain table coverage. |
194 | void qcrypto_block_free(QCryptoBlock *block); | 567 | + */ |
195 | 568 | + return VMDK_ERROR; | |
196 | G_DEFINE_AUTOPTR_CLEANUP_FUNC(QCryptoBlock, qcrypto_block_free) | 569 | + } else { |
197 | +G_DEFINE_AUTOPTR_CLEANUP_FUNC(QCryptoBlockCreateOptions, | 570 | + l2_offset_u64 = l2_offset_u64 & 0x00000000ffffffff; |
198 | + qapi_free_QCryptoBlockCreateOptions) | 571 | + l2_offset_u64 = extent->sesparse_l2_tables_offset + |
199 | 572 | + l2_offset_u64 * l2_size_bytes / SECTOR_SIZE; | |
200 | #endif /* QCRYPTO_BLOCK_H */ | 573 | + if (l2_offset_u64 > 0x00000000ffffffff) { |
574 | + return VMDK_ERROR; | ||
575 | + } | ||
576 | + l2_offset = (unsigned int)(l2_offset_u64); | ||
577 | + } | ||
578 | + } else { | ||
579 | + assert(extent->entry_size == sizeof(uint32_t)); | ||
580 | + l2_offset = ((uint32_t *)extent->l1_table)[l1_index]; | ||
581 | + } | ||
582 | if (!l2_offset) { | ||
583 | return VMDK_UNALLOC; | ||
584 | } | ||
585 | @@ -XXX,XX +XXX,XX @@ static int get_cluster_offset(BlockDriverState *bs, | ||
586 | extent->l2_cache_counts[j] >>= 1; | ||
587 | } | ||
588 | } | ||
589 | - l2_table = extent->l2_cache + (i * extent->l2_size); | ||
590 | + l2_table = (char *)extent->l2_cache + (i * l2_size_bytes); | ||
591 | goto found; | ||
592 | } | ||
593 | } | ||
594 | @@ -XXX,XX +XXX,XX @@ static int get_cluster_offset(BlockDriverState *bs, | ||
595 | min_index = i; | ||
596 | } | ||
597 | } | ||
598 | - l2_table = extent->l2_cache + (min_index * extent->l2_size); | ||
599 | + l2_table = (char *)extent->l2_cache + (min_index * l2_size_bytes); | ||
600 | BLKDBG_EVENT(extent->file, BLKDBG_L2_LOAD); | ||
601 | if (bdrv_pread(extent->file, | ||
602 | (int64_t)l2_offset * 512, | ||
603 | l2_table, | ||
604 | - extent->l2_size * sizeof(uint32_t) | ||
605 | - ) != extent->l2_size * sizeof(uint32_t)) { | ||
606 | + l2_size_bytes | ||
607 | + ) != l2_size_bytes) { | ||
608 | return VMDK_ERROR; | ||
609 | } | ||
610 | |||
611 | @@ -XXX,XX +XXX,XX @@ static int get_cluster_offset(BlockDriverState *bs, | ||
612 | extent->l2_cache_counts[min_index] = 1; | ||
613 | found: | ||
614 | l2_index = ((offset >> 9) / extent->cluster_sectors) % extent->l2_size; | ||
615 | - cluster_sector = le32_to_cpu(l2_table[l2_index]); | ||
616 | |||
617 | - if (extent->has_zero_grain && cluster_sector == VMDK_GTE_ZEROED) { | ||
618 | - zeroed = true; | ||
619 | + if (extent->sesparse) { | ||
620 | + cluster_sector = le64_to_cpu(((uint64_t *)l2_table)[l2_index]); | ||
621 | + switch (cluster_sector & 0xf000000000000000) { | ||
622 | + case 0x0000000000000000: | ||
623 | + /* unallocated grain */ | ||
624 | + if (cluster_sector != 0) { | ||
625 | + return VMDK_ERROR; | ||
626 | + } | ||
627 | + break; | ||
628 | + case 0x1000000000000000: | ||
629 | + /* scsi-unmapped grain - fallthrough */ | ||
630 | + case 0x2000000000000000: | ||
631 | + /* zero grain */ | ||
632 | + zeroed = true; | ||
633 | + break; | ||
634 | + case 0x3000000000000000: | ||
635 | + /* allocated grain */ | ||
636 | + cluster_sector = (((cluster_sector & 0x0fff000000000000) >> 48) | | ||
637 | + ((cluster_sector & 0x0000ffffffffffff) << 12)); | ||
638 | + cluster_sector = extent->sesparse_clusters_offset + | ||
639 | + cluster_sector * extent->cluster_sectors; | ||
640 | + break; | ||
641 | + default: | ||
642 | + return VMDK_ERROR; | ||
643 | + } | ||
644 | + } else { | ||
645 | + cluster_sector = le32_to_cpu(((uint32_t *)l2_table)[l2_index]); | ||
646 | + | ||
647 | + if (extent->has_zero_grain && cluster_sector == VMDK_GTE_ZEROED) { | ||
648 | + zeroed = true; | ||
649 | + } | ||
650 | } | ||
651 | |||
652 | if (!cluster_sector || zeroed) { | ||
653 | if (!allocate) { | ||
654 | return zeroed ? VMDK_ZEROED : VMDK_UNALLOC; | ||
655 | } | ||
656 | + assert(!extent->sesparse); | ||
657 | |||
658 | if (extent->next_cluster_sector >= VMDK_EXTENT_MAX_SECTORS) { | ||
659 | return VMDK_ERROR; | ||
660 | @@ -XXX,XX +XXX,XX @@ static int get_cluster_offset(BlockDriverState *bs, | ||
661 | m_data->l1_index = l1_index; | ||
662 | m_data->l2_index = l2_index; | ||
663 | m_data->l2_offset = l2_offset; | ||
664 | - m_data->l2_cache_entry = &l2_table[l2_index]; | ||
665 | + m_data->l2_cache_entry = ((uint32_t *)l2_table) + l2_index; | ||
666 | } | ||
667 | } | ||
668 | *cluster_offset = cluster_sector << BDRV_SECTOR_BITS; | ||
669 | @@ -XXX,XX +XXX,XX @@ static int vmdk_pwritev(BlockDriverState *bs, uint64_t offset, | ||
670 | if (!extent) { | ||
671 | return -EIO; | ||
672 | } | ||
673 | + if (extent->sesparse) { | ||
674 | + return -ENOTSUP; | ||
675 | + } | ||
676 | offset_in_cluster = vmdk_find_offset_in_cluster(extent, offset); | ||
677 | n_bytes = MIN(bytes, extent->cluster_sectors * BDRV_SECTOR_SIZE | ||
678 | - offset_in_cluster); | ||
201 | -- | 679 | -- |
202 | 2.24.1 | 680 | 2.21.0 |
203 | 681 | ||
204 | 682 | diff view generated by jsdifflib |
1 | From: Stefan Hajnoczi <stefanha@redhat.com> | 1 | From: Pino Toscano <ptoscano@redhat.com> |
---|---|---|---|
2 | 2 | ||
3 | Add qemu-img measure support in the "luks" block driver. | 3 | Rewrite the implementation of the ssh block driver to use libssh instead |
4 | of libssh2. The libssh library has various advantages over libssh2: | ||
5 | - easier API for authentication (for example for using ssh-agent) | ||
6 | - easier API for known_hosts handling | ||
7 | - supports newer types of keys in known_hosts | ||
4 | 8 | ||
5 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | 9 | Use APIs/features available in libssh 0.8 conditionally, to support |
6 | Reviewed-by: Max Reitz <mreitz@redhat.com> | 10 | older versions (which are not recommended though). |
7 | Message-Id: <20200221112522.1497712-3-stefanha@redhat.com> | 11 | |
12 | Adjust the iotest 207 according to the different error message, and to | ||
13 | find the default key type for localhost (to properly compare the | ||
14 | fingerprint with). | ||
15 | Contributed-by: Max Reitz <mreitz@redhat.com> | ||
16 | |||
17 | Adjust the various Docker/Travis scripts to use libssh when available | ||
18 | instead of libssh2. The mingw/mxe testing is dropped for now, as there | ||
19 | are no packages for it. | ||
20 | |||
21 | Signed-off-by: Pino Toscano <ptoscano@redhat.com> | ||
22 | Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> | ||
23 | Acked-by: Alex Bennée <alex.bennee@linaro.org> | ||
24 | Message-id: 20190620200840.17655-1-ptoscano@redhat.com | ||
25 | Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> | ||
26 | Message-id: 5873173.t2JhDm7DL7@lindworm.usersys.redhat.com | ||
8 | Signed-off-by: Max Reitz <mreitz@redhat.com> | 27 | Signed-off-by: Max Reitz <mreitz@redhat.com> |
9 | --- | 28 | --- |
10 | block/crypto.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++ | 29 | configure | 65 +- |
11 | 1 file changed, 62 insertions(+) | 30 | block/Makefile.objs | 6 +- |
31 | block/ssh.c | 652 ++++++++++-------- | ||
32 | .travis.yml | 4 +- | ||
33 | block/trace-events | 14 +- | ||
34 | docs/qemu-block-drivers.texi | 2 +- | ||
35 | .../dockerfiles/debian-win32-cross.docker | 1 - | ||
36 | .../dockerfiles/debian-win64-cross.docker | 1 - | ||
37 | tests/docker/dockerfiles/fedora.docker | 4 +- | ||
38 | tests/docker/dockerfiles/ubuntu.docker | 2 +- | ||
39 | tests/docker/dockerfiles/ubuntu1804.docker | 2 +- | ||
40 | tests/qemu-iotests/207 | 54 +- | ||
41 | tests/qemu-iotests/207.out | 2 +- | ||
42 | 13 files changed, 449 insertions(+), 360 deletions(-) | ||
12 | 43 | ||
13 | diff --git a/block/crypto.c b/block/crypto.c | 44 | diff --git a/configure b/configure |
45 | index XXXXXXX..XXXXXXX 100755 | ||
46 | --- a/configure | ||
47 | +++ b/configure | ||
48 | @@ -XXX,XX +XXX,XX @@ auth_pam="" | ||
49 | vte="" | ||
50 | virglrenderer="" | ||
51 | tpm="" | ||
52 | -libssh2="" | ||
53 | +libssh="" | ||
54 | live_block_migration="yes" | ||
55 | numa="" | ||
56 | tcmalloc="no" | ||
57 | @@ -XXX,XX +XXX,XX @@ for opt do | ||
58 | ;; | ||
59 | --enable-tpm) tpm="yes" | ||
60 | ;; | ||
61 | - --disable-libssh2) libssh2="no" | ||
62 | + --disable-libssh) libssh="no" | ||
63 | ;; | ||
64 | - --enable-libssh2) libssh2="yes" | ||
65 | + --enable-libssh) libssh="yes" | ||
66 | ;; | ||
67 | --disable-live-block-migration) live_block_migration="no" | ||
68 | ;; | ||
69 | @@ -XXX,XX +XXX,XX @@ disabled with --disable-FEATURE, default is enabled if available: | ||
70 | coroutine-pool coroutine freelist (better performance) | ||
71 | glusterfs GlusterFS backend | ||
72 | tpm TPM support | ||
73 | - libssh2 ssh block device support | ||
74 | + libssh ssh block device support | ||
75 | numa libnuma support | ||
76 | libxml2 for Parallels image format | ||
77 | tcmalloc tcmalloc support | ||
78 | @@ -XXX,XX +XXX,XX @@ EOF | ||
79 | fi | ||
80 | |||
81 | ########################################## | ||
82 | -# libssh2 probe | ||
83 | -min_libssh2_version=1.2.8 | ||
84 | -if test "$libssh2" != "no" ; then | ||
85 | - if $pkg_config --atleast-version=$min_libssh2_version libssh2; then | ||
86 | - libssh2_cflags=$($pkg_config libssh2 --cflags) | ||
87 | - libssh2_libs=$($pkg_config libssh2 --libs) | ||
88 | - libssh2=yes | ||
89 | +# libssh probe | ||
90 | +if test "$libssh" != "no" ; then | ||
91 | + if $pkg_config --exists libssh; then | ||
92 | + libssh_cflags=$($pkg_config libssh --cflags) | ||
93 | + libssh_libs=$($pkg_config libssh --libs) | ||
94 | + libssh=yes | ||
95 | else | ||
96 | - if test "$libssh2" = "yes" ; then | ||
97 | - error_exit "libssh2 >= $min_libssh2_version required for --enable-libssh2" | ||
98 | + if test "$libssh" = "yes" ; then | ||
99 | + error_exit "libssh required for --enable-libssh" | ||
100 | fi | ||
101 | - libssh2=no | ||
102 | + libssh=no | ||
103 | fi | ||
104 | fi | ||
105 | |||
106 | ########################################## | ||
107 | -# libssh2_sftp_fsync probe | ||
108 | +# Check for libssh 0.8 | ||
109 | +# This is done like this instead of using the LIBSSH_VERSION_* and | ||
110 | +# SSH_VERSION_* macros because some distributions in the past shipped | ||
111 | +# snapshots of the future 0.8 from Git, and those snapshots did not | ||
112 | +# have updated version numbers (still referring to 0.7.0). | ||
113 | |||
114 | -if test "$libssh2" = "yes"; then | ||
115 | +if test "$libssh" = "yes"; then | ||
116 | cat > $TMPC <<EOF | ||
117 | -#include <stdio.h> | ||
118 | -#include <libssh2.h> | ||
119 | -#include <libssh2_sftp.h> | ||
120 | -int main(void) { | ||
121 | - LIBSSH2_SESSION *session; | ||
122 | - LIBSSH2_SFTP *sftp; | ||
123 | - LIBSSH2_SFTP_HANDLE *sftp_handle; | ||
124 | - session = libssh2_session_init (); | ||
125 | - sftp = libssh2_sftp_init (session); | ||
126 | - sftp_handle = libssh2_sftp_open (sftp, "/", 0, 0); | ||
127 | - libssh2_sftp_fsync (sftp_handle); | ||
128 | - return 0; | ||
129 | -} | ||
130 | +#include <libssh/libssh.h> | ||
131 | +int main(void) { return ssh_get_server_publickey(NULL, NULL); } | ||
132 | EOF | ||
133 | - # libssh2_cflags/libssh2_libs defined in previous test. | ||
134 | - if compile_prog "$libssh2_cflags" "$libssh2_libs" ; then | ||
135 | - QEMU_CFLAGS="-DHAS_LIBSSH2_SFTP_FSYNC $QEMU_CFLAGS" | ||
136 | + if compile_prog "$libssh_cflags" "$libssh_libs"; then | ||
137 | + libssh_cflags="-DHAVE_LIBSSH_0_8 $libssh_cflags" | ||
138 | fi | ||
139 | fi | ||
140 | |||
141 | @@ -XXX,XX +XXX,XX @@ echo "GlusterFS support $glusterfs" | ||
142 | echo "gcov $gcov_tool" | ||
143 | echo "gcov enabled $gcov" | ||
144 | echo "TPM support $tpm" | ||
145 | -echo "libssh2 support $libssh2" | ||
146 | +echo "libssh support $libssh" | ||
147 | echo "QOM debugging $qom_cast_debug" | ||
148 | echo "Live block migration $live_block_migration" | ||
149 | echo "lzo support $lzo" | ||
150 | @@ -XXX,XX +XXX,XX @@ if test "$glusterfs_iocb_has_stat" = "yes" ; then | ||
151 | echo "CONFIG_GLUSTERFS_IOCB_HAS_STAT=y" >> $config_host_mak | ||
152 | fi | ||
153 | |||
154 | -if test "$libssh2" = "yes" ; then | ||
155 | - echo "CONFIG_LIBSSH2=m" >> $config_host_mak | ||
156 | - echo "LIBSSH2_CFLAGS=$libssh2_cflags" >> $config_host_mak | ||
157 | - echo "LIBSSH2_LIBS=$libssh2_libs" >> $config_host_mak | ||
158 | +if test "$libssh" = "yes" ; then | ||
159 | + echo "CONFIG_LIBSSH=m" >> $config_host_mak | ||
160 | + echo "LIBSSH_CFLAGS=$libssh_cflags" >> $config_host_mak | ||
161 | + echo "LIBSSH_LIBS=$libssh_libs" >> $config_host_mak | ||
162 | fi | ||
163 | |||
164 | if test "$live_block_migration" = "yes" ; then | ||
165 | diff --git a/block/Makefile.objs b/block/Makefile.objs | ||
14 | index XXXXXXX..XXXXXXX 100644 | 166 | index XXXXXXX..XXXXXXX 100644 |
15 | --- a/block/crypto.c | 167 | --- a/block/Makefile.objs |
16 | +++ b/block/crypto.c | 168 | +++ b/block/Makefile.objs |
17 | @@ -XXX,XX +XXX,XX @@ static int64_t block_crypto_getlength(BlockDriverState *bs) | 169 | @@ -XXX,XX +XXX,XX @@ block-obj-$(CONFIG_CURL) += curl.o |
170 | block-obj-$(CONFIG_RBD) += rbd.o | ||
171 | block-obj-$(CONFIG_GLUSTERFS) += gluster.o | ||
172 | block-obj-$(CONFIG_VXHS) += vxhs.o | ||
173 | -block-obj-$(CONFIG_LIBSSH2) += ssh.o | ||
174 | +block-obj-$(CONFIG_LIBSSH) += ssh.o | ||
175 | block-obj-y += accounting.o dirty-bitmap.o | ||
176 | block-obj-y += write-threshold.o | ||
177 | block-obj-y += backup.o | ||
178 | @@ -XXX,XX +XXX,XX @@ rbd.o-libs := $(RBD_LIBS) | ||
179 | gluster.o-cflags := $(GLUSTERFS_CFLAGS) | ||
180 | gluster.o-libs := $(GLUSTERFS_LIBS) | ||
181 | vxhs.o-libs := $(VXHS_LIBS) | ||
182 | -ssh.o-cflags := $(LIBSSH2_CFLAGS) | ||
183 | -ssh.o-libs := $(LIBSSH2_LIBS) | ||
184 | +ssh.o-cflags := $(LIBSSH_CFLAGS) | ||
185 | +ssh.o-libs := $(LIBSSH_LIBS) | ||
186 | block-obj-dmg-bz2-$(CONFIG_BZIP2) += dmg-bz2.o | ||
187 | block-obj-$(if $(CONFIG_DMG),m,n) += $(block-obj-dmg-bz2-y) | ||
188 | dmg-bz2.o-libs := $(BZIP2_LIBS) | ||
189 | diff --git a/block/ssh.c b/block/ssh.c | ||
190 | index XXXXXXX..XXXXXXX 100644 | ||
191 | --- a/block/ssh.c | ||
192 | +++ b/block/ssh.c | ||
193 | @@ -XXX,XX +XXX,XX @@ | ||
194 | |||
195 | #include "qemu/osdep.h" | ||
196 | |||
197 | -#include <libssh2.h> | ||
198 | -#include <libssh2_sftp.h> | ||
199 | +#include <libssh/libssh.h> | ||
200 | +#include <libssh/sftp.h> | ||
201 | |||
202 | #include "block/block_int.h" | ||
203 | #include "block/qdict.h" | ||
204 | @@ -XXX,XX +XXX,XX @@ | ||
205 | #include "trace.h" | ||
206 | |||
207 | /* | ||
208 | - * TRACE_LIBSSH2=<bitmask> enables tracing in libssh2 itself. Note | ||
209 | - * that this requires that libssh2 was specially compiled with the | ||
210 | - * `./configure --enable-debug' option, so most likely you will have | ||
211 | - * to compile it yourself. The meaning of <bitmask> is described | ||
212 | - * here: http://www.libssh2.org/libssh2_trace.html | ||
213 | + * TRACE_LIBSSH=<level> enables tracing in libssh itself. | ||
214 | + * The meaning of <level> is described here: | ||
215 | + * http://api.libssh.org/master/group__libssh__log.html | ||
216 | */ | ||
217 | -#define TRACE_LIBSSH2 0 /* or try: LIBSSH2_TRACE_SFTP */ | ||
218 | +#define TRACE_LIBSSH 0 /* see: SSH_LOG_* */ | ||
219 | |||
220 | typedef struct BDRVSSHState { | ||
221 | /* Coroutine. */ | ||
222 | @@ -XXX,XX +XXX,XX @@ typedef struct BDRVSSHState { | ||
223 | |||
224 | /* SSH connection. */ | ||
225 | int sock; /* socket */ | ||
226 | - LIBSSH2_SESSION *session; /* ssh session */ | ||
227 | - LIBSSH2_SFTP *sftp; /* sftp session */ | ||
228 | - LIBSSH2_SFTP_HANDLE *sftp_handle; /* sftp remote file handle */ | ||
229 | + ssh_session session; /* ssh session */ | ||
230 | + sftp_session sftp; /* sftp session */ | ||
231 | + sftp_file sftp_handle; /* sftp remote file handle */ | ||
232 | |||
233 | - /* See ssh_seek() function below. */ | ||
234 | - int64_t offset; | ||
235 | - bool offset_op_read; | ||
236 | - | ||
237 | - /* File attributes at open. We try to keep the .filesize field | ||
238 | + /* | ||
239 | + * File attributes at open. We try to keep the .size field | ||
240 | * updated if it changes (eg by writing at the end of the file). | ||
241 | */ | ||
242 | - LIBSSH2_SFTP_ATTRIBUTES attrs; | ||
243 | + sftp_attributes attrs; | ||
244 | |||
245 | InetSocketAddress *inet; | ||
246 | |||
247 | @@ -XXX,XX +XXX,XX @@ static void ssh_state_init(BDRVSSHState *s) | ||
248 | { | ||
249 | memset(s, 0, sizeof *s); | ||
250 | s->sock = -1; | ||
251 | - s->offset = -1; | ||
252 | qemu_co_mutex_init(&s->lock); | ||
18 | } | 253 | } |
19 | 254 | ||
20 | 255 | @@ -XXX,XX +XXX,XX @@ static void ssh_state_free(BDRVSSHState *s) | |
21 | +static BlockMeasureInfo *block_crypto_measure(QemuOpts *opts, | 256 | { |
22 | + BlockDriverState *in_bs, | 257 | g_free(s->user); |
23 | + Error **errp) | 258 | |
24 | +{ | 259 | + if (s->attrs) { |
25 | + g_autoptr(QCryptoBlockCreateOptions) create_opts = NULL; | 260 | + sftp_attributes_free(s->attrs); |
26 | + Error *local_err = NULL; | 261 | + } |
27 | + BlockMeasureInfo *info; | 262 | if (s->sftp_handle) { |
28 | + uint64_t size; | 263 | - libssh2_sftp_close(s->sftp_handle); |
29 | + size_t luks_payload_size; | 264 | + sftp_close(s->sftp_handle); |
30 | + QDict *cryptoopts; | 265 | } |
266 | if (s->sftp) { | ||
267 | - libssh2_sftp_shutdown(s->sftp); | ||
268 | + sftp_free(s->sftp); | ||
269 | } | ||
270 | if (s->session) { | ||
271 | - libssh2_session_disconnect(s->session, | ||
272 | - "from qemu ssh client: " | ||
273 | - "user closed the connection"); | ||
274 | - libssh2_session_free(s->session); | ||
275 | - } | ||
276 | - if (s->sock >= 0) { | ||
277 | - close(s->sock); | ||
278 | + ssh_disconnect(s->session); | ||
279 | + ssh_free(s->session); /* This frees s->sock */ | ||
280 | } | ||
281 | } | ||
282 | |||
283 | @@ -XXX,XX +XXX,XX @@ session_error_setg(Error **errp, BDRVSSHState *s, const char *fs, ...) | ||
284 | va_end(args); | ||
285 | |||
286 | if (s->session) { | ||
287 | - char *ssh_err; | ||
288 | + const char *ssh_err; | ||
289 | int ssh_err_code; | ||
290 | |||
291 | - /* This is not an errno. See <libssh2.h>. */ | ||
292 | - ssh_err_code = libssh2_session_last_error(s->session, | ||
293 | - &ssh_err, NULL, 0); | ||
294 | - error_setg(errp, "%s: %s (libssh2 error code: %d)", | ||
295 | + /* This is not an errno. See <libssh/libssh.h>. */ | ||
296 | + ssh_err = ssh_get_error(s->session); | ||
297 | + ssh_err_code = ssh_get_error_code(s->session); | ||
298 | + error_setg(errp, "%s: %s (libssh error code: %d)", | ||
299 | msg, ssh_err, ssh_err_code); | ||
300 | } else { | ||
301 | error_setg(errp, "%s", msg); | ||
302 | @@ -XXX,XX +XXX,XX @@ sftp_error_setg(Error **errp, BDRVSSHState *s, const char *fs, ...) | ||
303 | va_end(args); | ||
304 | |||
305 | if (s->sftp) { | ||
306 | - char *ssh_err; | ||
307 | + const char *ssh_err; | ||
308 | int ssh_err_code; | ||
309 | - unsigned long sftp_err_code; | ||
310 | + int sftp_err_code; | ||
311 | |||
312 | - /* This is not an errno. See <libssh2.h>. */ | ||
313 | - ssh_err_code = libssh2_session_last_error(s->session, | ||
314 | - &ssh_err, NULL, 0); | ||
315 | - /* See <libssh2_sftp.h>. */ | ||
316 | - sftp_err_code = libssh2_sftp_last_error((s)->sftp); | ||
317 | + /* This is not an errno. See <libssh/libssh.h>. */ | ||
318 | + ssh_err = ssh_get_error(s->session); | ||
319 | + ssh_err_code = ssh_get_error_code(s->session); | ||
320 | + /* See <libssh/sftp.h>. */ | ||
321 | + sftp_err_code = sftp_get_error(s->sftp); | ||
322 | |||
323 | error_setg(errp, | ||
324 | - "%s: %s (libssh2 error code: %d, sftp error code: %lu)", | ||
325 | + "%s: %s (libssh error code: %d, sftp error code: %d)", | ||
326 | msg, ssh_err, ssh_err_code, sftp_err_code); | ||
327 | } else { | ||
328 | error_setg(errp, "%s", msg); | ||
329 | @@ -XXX,XX +XXX,XX @@ sftp_error_setg(Error **errp, BDRVSSHState *s, const char *fs, ...) | ||
330 | |||
331 | static void sftp_error_trace(BDRVSSHState *s, const char *op) | ||
332 | { | ||
333 | - char *ssh_err; | ||
334 | + const char *ssh_err; | ||
335 | int ssh_err_code; | ||
336 | - unsigned long sftp_err_code; | ||
337 | + int sftp_err_code; | ||
338 | |||
339 | - /* This is not an errno. See <libssh2.h>. */ | ||
340 | - ssh_err_code = libssh2_session_last_error(s->session, | ||
341 | - &ssh_err, NULL, 0); | ||
342 | - /* See <libssh2_sftp.h>. */ | ||
343 | - sftp_err_code = libssh2_sftp_last_error((s)->sftp); | ||
344 | + /* This is not an errno. See <libssh/libssh.h>. */ | ||
345 | + ssh_err = ssh_get_error(s->session); | ||
346 | + ssh_err_code = ssh_get_error_code(s->session); | ||
347 | + /* See <libssh/sftp.h>. */ | ||
348 | + sftp_err_code = sftp_get_error(s->sftp); | ||
349 | |||
350 | trace_sftp_error(op, ssh_err, ssh_err_code, sftp_err_code); | ||
351 | } | ||
352 | @@ -XXX,XX +XXX,XX @@ static void ssh_parse_filename(const char *filename, QDict *options, | ||
353 | parse_uri(filename, options, errp); | ||
354 | } | ||
355 | |||
356 | -static int check_host_key_knownhosts(BDRVSSHState *s, | ||
357 | - const char *host, int port, Error **errp) | ||
358 | +static int check_host_key_knownhosts(BDRVSSHState *s, Error **errp) | ||
359 | { | ||
360 | - const char *home; | ||
361 | - char *knh_file = NULL; | ||
362 | - LIBSSH2_KNOWNHOSTS *knh = NULL; | ||
363 | - struct libssh2_knownhost *found; | ||
364 | - int ret, r; | ||
365 | - const char *hostkey; | ||
366 | - size_t len; | ||
367 | - int type; | ||
368 | - | ||
369 | - hostkey = libssh2_session_hostkey(s->session, &len, &type); | ||
370 | - if (!hostkey) { | ||
371 | + int ret; | ||
372 | +#ifdef HAVE_LIBSSH_0_8 | ||
373 | + enum ssh_known_hosts_e state; | ||
374 | + int r; | ||
375 | + ssh_key pubkey; | ||
376 | + enum ssh_keytypes_e pubkey_type; | ||
377 | + unsigned char *server_hash = NULL; | ||
378 | + size_t server_hash_len; | ||
379 | + char *fingerprint = NULL; | ||
380 | + | ||
381 | + state = ssh_session_is_known_server(s->session); | ||
382 | + trace_ssh_server_status(state); | ||
383 | + | ||
384 | + switch (state) { | ||
385 | + case SSH_KNOWN_HOSTS_OK: | ||
386 | + /* OK */ | ||
387 | + trace_ssh_check_host_key_knownhosts(); | ||
388 | + break; | ||
389 | + case SSH_KNOWN_HOSTS_CHANGED: | ||
390 | ret = -EINVAL; | ||
391 | - session_error_setg(errp, s, "failed to read remote host key"); | ||
392 | + r = ssh_get_server_publickey(s->session, &pubkey); | ||
393 | + if (r == 0) { | ||
394 | + r = ssh_get_publickey_hash(pubkey, SSH_PUBLICKEY_HASH_SHA256, | ||
395 | + &server_hash, &server_hash_len); | ||
396 | + pubkey_type = ssh_key_type(pubkey); | ||
397 | + ssh_key_free(pubkey); | ||
398 | + } | ||
399 | + if (r == 0) { | ||
400 | + fingerprint = ssh_get_fingerprint_hash(SSH_PUBLICKEY_HASH_SHA256, | ||
401 | + server_hash, | ||
402 | + server_hash_len); | ||
403 | + ssh_clean_pubkey_hash(&server_hash); | ||
404 | + } | ||
405 | + if (fingerprint) { | ||
406 | + error_setg(errp, | ||
407 | + "host key (%s key with fingerprint %s) does not match " | ||
408 | + "the one in known_hosts; this may be a possible attack", | ||
409 | + ssh_key_type_to_char(pubkey_type), fingerprint); | ||
410 | + ssh_string_free_char(fingerprint); | ||
411 | + } else { | ||
412 | + error_setg(errp, | ||
413 | + "host key does not match the one in known_hosts; this " | ||
414 | + "may be a possible attack"); | ||
415 | + } | ||
416 | goto out; | ||
417 | - } | ||
418 | - | ||
419 | - knh = libssh2_knownhost_init(s->session); | ||
420 | - if (!knh) { | ||
421 | + case SSH_KNOWN_HOSTS_OTHER: | ||
422 | ret = -EINVAL; | ||
423 | - session_error_setg(errp, s, | ||
424 | - "failed to initialize known hosts support"); | ||
425 | + error_setg(errp, | ||
426 | + "host key for this server not found, another type exists"); | ||
427 | + goto out; | ||
428 | + case SSH_KNOWN_HOSTS_UNKNOWN: | ||
429 | + ret = -EINVAL; | ||
430 | + error_setg(errp, "no host key was found in known_hosts"); | ||
431 | + goto out; | ||
432 | + case SSH_KNOWN_HOSTS_NOT_FOUND: | ||
433 | + ret = -ENOENT; | ||
434 | + error_setg(errp, "known_hosts file not found"); | ||
435 | + goto out; | ||
436 | + case SSH_KNOWN_HOSTS_ERROR: | ||
437 | + ret = -EINVAL; | ||
438 | + error_setg(errp, "error while checking the host"); | ||
439 | + goto out; | ||
440 | + default: | ||
441 | + ret = -EINVAL; | ||
442 | + error_setg(errp, "error while checking for known server (%d)", state); | ||
443 | goto out; | ||
444 | } | ||
445 | +#else /* !HAVE_LIBSSH_0_8 */ | ||
446 | + int state; | ||
447 | |||
448 | - home = getenv("HOME"); | ||
449 | - if (home) { | ||
450 | - knh_file = g_strdup_printf("%s/.ssh/known_hosts", home); | ||
451 | - } else { | ||
452 | - knh_file = g_strdup_printf("/root/.ssh/known_hosts"); | ||
453 | - } | ||
454 | - | ||
455 | - /* Read all known hosts from OpenSSH-style known_hosts file. */ | ||
456 | - libssh2_knownhost_readfile(knh, knh_file, LIBSSH2_KNOWNHOST_FILE_OPENSSH); | ||
457 | + state = ssh_is_server_known(s->session); | ||
458 | + trace_ssh_server_status(state); | ||
459 | |||
460 | - r = libssh2_knownhost_checkp(knh, host, port, hostkey, len, | ||
461 | - LIBSSH2_KNOWNHOST_TYPE_PLAIN| | ||
462 | - LIBSSH2_KNOWNHOST_KEYENC_RAW, | ||
463 | - &found); | ||
464 | - switch (r) { | ||
465 | - case LIBSSH2_KNOWNHOST_CHECK_MATCH: | ||
466 | + switch (state) { | ||
467 | + case SSH_SERVER_KNOWN_OK: | ||
468 | /* OK */ | ||
469 | - trace_ssh_check_host_key_knownhosts(found->key); | ||
470 | + trace_ssh_check_host_key_knownhosts(); | ||
471 | break; | ||
472 | - case LIBSSH2_KNOWNHOST_CHECK_MISMATCH: | ||
473 | + case SSH_SERVER_KNOWN_CHANGED: | ||
474 | ret = -EINVAL; | ||
475 | - session_error_setg(errp, s, | ||
476 | - "host key does not match the one in known_hosts" | ||
477 | - " (found key %s)", found->key); | ||
478 | + error_setg(errp, | ||
479 | + "host key does not match the one in known_hosts; this " | ||
480 | + "may be a possible attack"); | ||
481 | goto out; | ||
482 | - case LIBSSH2_KNOWNHOST_CHECK_NOTFOUND: | ||
483 | + case SSH_SERVER_FOUND_OTHER: | ||
484 | ret = -EINVAL; | ||
485 | - session_error_setg(errp, s, "no host key was found in known_hosts"); | ||
486 | + error_setg(errp, | ||
487 | + "host key for this server not found, another type exists"); | ||
488 | + goto out; | ||
489 | + case SSH_SERVER_FILE_NOT_FOUND: | ||
490 | + ret = -ENOENT; | ||
491 | + error_setg(errp, "known_hosts file not found"); | ||
492 | goto out; | ||
493 | - case LIBSSH2_KNOWNHOST_CHECK_FAILURE: | ||
494 | + case SSH_SERVER_NOT_KNOWN: | ||
495 | ret = -EINVAL; | ||
496 | - session_error_setg(errp, s, | ||
497 | - "failure matching the host key with known_hosts"); | ||
498 | + error_setg(errp, "no host key was found in known_hosts"); | ||
499 | + goto out; | ||
500 | + case SSH_SERVER_ERROR: | ||
501 | + ret = -EINVAL; | ||
502 | + error_setg(errp, "server error"); | ||
503 | goto out; | ||
504 | default: | ||
505 | ret = -EINVAL; | ||
506 | - session_error_setg(errp, s, "unknown error matching the host key" | ||
507 | - " with known_hosts (%d)", r); | ||
508 | + error_setg(errp, "error while checking for known server (%d)", state); | ||
509 | goto out; | ||
510 | } | ||
511 | +#endif /* !HAVE_LIBSSH_0_8 */ | ||
512 | |||
513 | /* known_hosts checking successful. */ | ||
514 | ret = 0; | ||
515 | |||
516 | out: | ||
517 | - if (knh != NULL) { | ||
518 | - libssh2_knownhost_free(knh); | ||
519 | - } | ||
520 | - g_free(knh_file); | ||
521 | return ret; | ||
522 | } | ||
523 | |||
524 | @@ -XXX,XX +XXX,XX @@ static int compare_fingerprint(const unsigned char *fingerprint, size_t len, | ||
525 | |||
526 | static int | ||
527 | check_host_key_hash(BDRVSSHState *s, const char *hash, | ||
528 | - int hash_type, size_t fingerprint_len, Error **errp) | ||
529 | + enum ssh_publickey_hash_type type, Error **errp) | ||
530 | { | ||
531 | - const char *fingerprint; | ||
532 | - | ||
533 | - fingerprint = libssh2_hostkey_hash(s->session, hash_type); | ||
534 | - if (!fingerprint) { | ||
535 | + int r; | ||
536 | + ssh_key pubkey; | ||
537 | + unsigned char *server_hash; | ||
538 | + size_t server_hash_len; | ||
539 | + | ||
540 | +#ifdef HAVE_LIBSSH_0_8 | ||
541 | + r = ssh_get_server_publickey(s->session, &pubkey); | ||
542 | +#else | ||
543 | + r = ssh_get_publickey(s->session, &pubkey); | ||
544 | +#endif | ||
545 | + if (r != SSH_OK) { | ||
546 | session_error_setg(errp, s, "failed to read remote host key"); | ||
547 | return -EINVAL; | ||
548 | } | ||
549 | |||
550 | - if(compare_fingerprint((unsigned char *) fingerprint, fingerprint_len, | ||
551 | - hash) != 0) { | ||
552 | + r = ssh_get_publickey_hash(pubkey, type, &server_hash, &server_hash_len); | ||
553 | + ssh_key_free(pubkey); | ||
554 | + if (r != 0) { | ||
555 | + session_error_setg(errp, s, | ||
556 | + "failed reading the hash of the server SSH key"); | ||
557 | + return -EINVAL; | ||
558 | + } | ||
559 | + | ||
560 | + r = compare_fingerprint(server_hash, server_hash_len, hash); | ||
561 | + ssh_clean_pubkey_hash(&server_hash); | ||
562 | + if (r != 0) { | ||
563 | error_setg(errp, "remote host key does not match host_key_check '%s'", | ||
564 | hash); | ||
565 | return -EPERM; | ||
566 | @@ -XXX,XX +XXX,XX @@ check_host_key_hash(BDRVSSHState *s, const char *hash, | ||
567 | return 0; | ||
568 | } | ||
569 | |||
570 | -static int check_host_key(BDRVSSHState *s, const char *host, int port, | ||
571 | - SshHostKeyCheck *hkc, Error **errp) | ||
572 | +static int check_host_key(BDRVSSHState *s, SshHostKeyCheck *hkc, Error **errp) | ||
573 | { | ||
574 | SshHostKeyCheckMode mode; | ||
575 | |||
576 | @@ -XXX,XX +XXX,XX @@ static int check_host_key(BDRVSSHState *s, const char *host, int port, | ||
577 | case SSH_HOST_KEY_CHECK_MODE_HASH: | ||
578 | if (hkc->u.hash.type == SSH_HOST_KEY_CHECK_HASH_TYPE_MD5) { | ||
579 | return check_host_key_hash(s, hkc->u.hash.hash, | ||
580 | - LIBSSH2_HOSTKEY_HASH_MD5, 16, errp); | ||
581 | + SSH_PUBLICKEY_HASH_MD5, errp); | ||
582 | } else if (hkc->u.hash.type == SSH_HOST_KEY_CHECK_HASH_TYPE_SHA1) { | ||
583 | return check_host_key_hash(s, hkc->u.hash.hash, | ||
584 | - LIBSSH2_HOSTKEY_HASH_SHA1, 20, errp); | ||
585 | + SSH_PUBLICKEY_HASH_SHA1, errp); | ||
586 | } | ||
587 | g_assert_not_reached(); | ||
588 | break; | ||
589 | case SSH_HOST_KEY_CHECK_MODE_KNOWN_HOSTS: | ||
590 | - return check_host_key_knownhosts(s, host, port, errp); | ||
591 | + return check_host_key_knownhosts(s, errp); | ||
592 | default: | ||
593 | g_assert_not_reached(); | ||
594 | } | ||
595 | @@ -XXX,XX +XXX,XX @@ static int check_host_key(BDRVSSHState *s, const char *host, int port, | ||
596 | return -EINVAL; | ||
597 | } | ||
598 | |||
599 | -static int authenticate(BDRVSSHState *s, const char *user, Error **errp) | ||
600 | +static int authenticate(BDRVSSHState *s, Error **errp) | ||
601 | { | ||
602 | int r, ret; | ||
603 | - const char *userauthlist; | ||
604 | - LIBSSH2_AGENT *agent = NULL; | ||
605 | - struct libssh2_agent_publickey *identity; | ||
606 | - struct libssh2_agent_publickey *prev_identity = NULL; | ||
607 | + int method; | ||
608 | |||
609 | - userauthlist = libssh2_userauth_list(s->session, user, strlen(user)); | ||
610 | - if (strstr(userauthlist, "publickey") == NULL) { | ||
611 | + /* Try to authenticate with the "none" method. */ | ||
612 | + r = ssh_userauth_none(s->session, NULL); | ||
613 | + if (r == SSH_AUTH_ERROR) { | ||
614 | ret = -EPERM; | ||
615 | - error_setg(errp, | ||
616 | - "remote server does not support \"publickey\" authentication"); | ||
617 | + session_error_setg(errp, s, "failed to authenticate using none " | ||
618 | + "authentication"); | ||
619 | goto out; | ||
620 | - } | ||
621 | - | ||
622 | - /* Connect to ssh-agent and try each identity in turn. */ | ||
623 | - agent = libssh2_agent_init(s->session); | ||
624 | - if (!agent) { | ||
625 | - ret = -EINVAL; | ||
626 | - session_error_setg(errp, s, "failed to initialize ssh-agent support"); | ||
627 | - goto out; | ||
628 | - } | ||
629 | - if (libssh2_agent_connect(agent)) { | ||
630 | - ret = -ECONNREFUSED; | ||
631 | - session_error_setg(errp, s, "failed to connect to ssh-agent"); | ||
632 | - goto out; | ||
633 | - } | ||
634 | - if (libssh2_agent_list_identities(agent)) { | ||
635 | - ret = -EINVAL; | ||
636 | - session_error_setg(errp, s, | ||
637 | - "failed requesting identities from ssh-agent"); | ||
638 | + } else if (r == SSH_AUTH_SUCCESS) { | ||
639 | + /* Authenticated! */ | ||
640 | + ret = 0; | ||
641 | goto out; | ||
642 | } | ||
643 | |||
644 | - for(;;) { | ||
645 | - r = libssh2_agent_get_identity(agent, &identity, prev_identity); | ||
646 | - if (r == 1) { /* end of list */ | ||
647 | - break; | ||
648 | - } | ||
649 | - if (r < 0) { | ||
650 | + method = ssh_userauth_list(s->session, NULL); | ||
651 | + trace_ssh_auth_methods(method); | ||
31 | + | 652 | + |
32 | + /* | 653 | + /* |
33 | + * Preallocation mode doesn't affect size requirements but we must consume | 654 | + * Try to authenticate with publickey, using the ssh-agent |
34 | + * the option. | 655 | + * if available. |
35 | + */ | 656 | + */ |
36 | + g_free(qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC)); | 657 | + if (method & SSH_AUTH_METHOD_PUBLICKEY) { |
37 | + | 658 | + r = ssh_userauth_publickey_auto(s->session, NULL, NULL); |
38 | + size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0); | 659 | + if (r == SSH_AUTH_ERROR) { |
39 | + | 660 | ret = -EINVAL; |
40 | + if (in_bs) { | 661 | - session_error_setg(errp, s, |
41 | + int64_t ssize = bdrv_getlength(in_bs); | 662 | - "failed to obtain identity from ssh-agent"); |
42 | + | 663 | + session_error_setg(errp, s, "failed to authenticate using " |
43 | + if (ssize < 0) { | 664 | + "publickey authentication"); |
44 | + error_setg_errno(&local_err, -ssize, | 665 | goto out; |
45 | + "Unable to get image virtual_size"); | 666 | - } |
667 | - r = libssh2_agent_userauth(agent, user, identity); | ||
668 | - if (r == 0) { | ||
669 | + } else if (r == SSH_AUTH_SUCCESS) { | ||
670 | /* Authenticated! */ | ||
671 | ret = 0; | ||
672 | goto out; | ||
673 | } | ||
674 | - /* Failed to authenticate with this identity, try the next one. */ | ||
675 | - prev_identity = identity; | ||
676 | } | ||
677 | |||
678 | ret = -EPERM; | ||
679 | @@ -XXX,XX +XXX,XX @@ static int authenticate(BDRVSSHState *s, const char *user, Error **errp) | ||
680 | "and the identities held by your ssh-agent"); | ||
681 | |||
682 | out: | ||
683 | - if (agent != NULL) { | ||
684 | - /* Note: libssh2 implementation implicitly calls | ||
685 | - * libssh2_agent_disconnect if necessary. | ||
686 | - */ | ||
687 | - libssh2_agent_free(agent); | ||
688 | - } | ||
689 | - | ||
690 | return ret; | ||
691 | } | ||
692 | |||
693 | @@ -XXX,XX +XXX,XX @@ static int connect_to_ssh(BDRVSSHState *s, BlockdevOptionsSsh *opts, | ||
694 | int ssh_flags, int creat_mode, Error **errp) | ||
695 | { | ||
696 | int r, ret; | ||
697 | - long port = 0; | ||
698 | + unsigned int port = 0; | ||
699 | + int new_sock = -1; | ||
700 | |||
701 | if (opts->has_user) { | ||
702 | s->user = g_strdup(opts->user); | ||
703 | @@ -XXX,XX +XXX,XX @@ static int connect_to_ssh(BDRVSSHState *s, BlockdevOptionsSsh *opts, | ||
704 | s->inet = opts->server; | ||
705 | opts->server = NULL; | ||
706 | |||
707 | - if (qemu_strtol(s->inet->port, NULL, 10, &port) < 0) { | ||
708 | + if (qemu_strtoui(s->inet->port, NULL, 10, &port) < 0) { | ||
709 | error_setg(errp, "Use only numeric port value"); | ||
710 | ret = -EINVAL; | ||
711 | goto err; | ||
712 | } | ||
713 | |||
714 | /* Open the socket and connect. */ | ||
715 | - s->sock = inet_connect_saddr(s->inet, errp); | ||
716 | - if (s->sock < 0) { | ||
717 | + new_sock = inet_connect_saddr(s->inet, errp); | ||
718 | + if (new_sock < 0) { | ||
719 | ret = -EIO; | ||
720 | goto err; | ||
721 | } | ||
722 | |||
723 | + /* | ||
724 | + * Try to disable the Nagle algorithm on TCP sockets to reduce latency, | ||
725 | + * but do not fail if it cannot be disabled. | ||
726 | + */ | ||
727 | + r = socket_set_nodelay(new_sock); | ||
728 | + if (r < 0) { | ||
729 | + warn_report("can't set TCP_NODELAY for the ssh server %s: %s", | ||
730 | + s->inet->host, strerror(errno)); | ||
731 | + } | ||
732 | + | ||
733 | /* Create SSH session. */ | ||
734 | - s->session = libssh2_session_init(); | ||
735 | + s->session = ssh_new(); | ||
736 | if (!s->session) { | ||
737 | ret = -EINVAL; | ||
738 | - session_error_setg(errp, s, "failed to initialize libssh2 session"); | ||
739 | + session_error_setg(errp, s, "failed to initialize libssh session"); | ||
740 | goto err; | ||
741 | } | ||
742 | |||
743 | -#if TRACE_LIBSSH2 != 0 | ||
744 | - libssh2_trace(s->session, TRACE_LIBSSH2); | ||
745 | -#endif | ||
746 | + /* | ||
747 | + * Make sure we are in blocking mode during the connection and | ||
748 | + * authentication phases. | ||
749 | + */ | ||
750 | + ssh_set_blocking(s->session, 1); | ||
751 | |||
752 | - r = libssh2_session_handshake(s->session, s->sock); | ||
753 | - if (r != 0) { | ||
754 | + r = ssh_options_set(s->session, SSH_OPTIONS_USER, s->user); | ||
755 | + if (r < 0) { | ||
756 | + ret = -EINVAL; | ||
757 | + session_error_setg(errp, s, | ||
758 | + "failed to set the user in the libssh session"); | ||
759 | + goto err; | ||
760 | + } | ||
761 | + | ||
762 | + r = ssh_options_set(s->session, SSH_OPTIONS_HOST, s->inet->host); | ||
763 | + if (r < 0) { | ||
764 | + ret = -EINVAL; | ||
765 | + session_error_setg(errp, s, | ||
766 | + "failed to set the host in the libssh session"); | ||
767 | + goto err; | ||
768 | + } | ||
769 | + | ||
770 | + if (port > 0) { | ||
771 | + r = ssh_options_set(s->session, SSH_OPTIONS_PORT, &port); | ||
772 | + if (r < 0) { | ||
773 | + ret = -EINVAL; | ||
774 | + session_error_setg(errp, s, | ||
775 | + "failed to set the port in the libssh session"); | ||
46 | + goto err; | 776 | + goto err; |
47 | + } | 777 | + } |
48 | + | ||
49 | + size = ssize; | ||
50 | + } | 778 | + } |
51 | + | 779 | + |
52 | + cryptoopts = qemu_opts_to_qdict_filtered(opts, NULL, | 780 | + r = ssh_options_set(s->session, SSH_OPTIONS_COMPRESSION, "none"); |
53 | + &block_crypto_create_opts_luks, true); | 781 | + if (r < 0) { |
54 | + qdict_put_str(cryptoopts, "format", "luks"); | 782 | + ret = -EINVAL; |
55 | + create_opts = block_crypto_create_opts_init(cryptoopts, &local_err); | 783 | + session_error_setg(errp, s, |
56 | + qobject_unref(cryptoopts); | 784 | + "failed to disable the compression in the libssh " |
57 | + if (!create_opts) { | 785 | + "session"); |
58 | + goto err; | 786 | + goto err; |
59 | + } | 787 | + } |
60 | + | 788 | + |
61 | + if (!qcrypto_block_calculate_payload_offset(create_opts, NULL, | 789 | + /* Read ~/.ssh/config. */ |
62 | + &luks_payload_size, | 790 | + r = ssh_options_parse_config(s->session, NULL); |
63 | + &local_err)) { | 791 | + if (r < 0) { |
792 | + ret = -EINVAL; | ||
793 | + session_error_setg(errp, s, "failed to parse ~/.ssh/config"); | ||
64 | + goto err; | 794 | + goto err; |
65 | + } | 795 | + } |
66 | + | 796 | + |
67 | + /* | 797 | + r = ssh_options_set(s->session, SSH_OPTIONS_FD, &new_sock); |
68 | + * Unallocated blocks are still encrypted so allocation status makes no | 798 | + if (r < 0) { |
69 | + * difference to the file size. | 799 | + ret = -EINVAL; |
70 | + */ | 800 | + session_error_setg(errp, s, |
71 | + info = g_new(BlockMeasureInfo, 1); | 801 | + "failed to set the socket in the libssh session"); |
72 | + info->fully_allocated = luks_payload_size + size; | 802 | + goto err; |
73 | + info->required = luks_payload_size + size; | 803 | + } |
74 | + return info; | 804 | + /* libssh took ownership of the socket. */ |
75 | + | 805 | + s->sock = new_sock; |
76 | +err: | 806 | + new_sock = -1; |
77 | + error_propagate(errp, local_err); | 807 | + |
78 | + return NULL; | 808 | + /* Connect. */ |
79 | +} | 809 | + r = ssh_connect(s->session); |
80 | + | 810 | + if (r != SSH_OK) { |
81 | + | 811 | ret = -EINVAL; |
82 | static int block_crypto_probe_luks(const uint8_t *buf, | 812 | session_error_setg(errp, s, "failed to establish SSH session"); |
83 | int buf_size, | 813 | goto err; |
84 | const char *filename) { | 814 | } |
85 | @@ -XXX,XX +XXX,XX @@ static BlockDriver bdrv_crypto_luks = { | 815 | |
86 | .bdrv_co_preadv = block_crypto_co_preadv, | 816 | /* Check the remote host's key against known_hosts. */ |
87 | .bdrv_co_pwritev = block_crypto_co_pwritev, | 817 | - ret = check_host_key(s, s->inet->host, port, opts->host_key_check, errp); |
88 | .bdrv_getlength = block_crypto_getlength, | 818 | + ret = check_host_key(s, opts->host_key_check, errp); |
89 | + .bdrv_measure = block_crypto_measure, | 819 | if (ret < 0) { |
90 | .bdrv_get_info = block_crypto_get_info_luks, | 820 | goto err; |
91 | .bdrv_get_specific_info = block_crypto_get_specific_info_luks, | 821 | } |
822 | |||
823 | /* Authenticate. */ | ||
824 | - ret = authenticate(s, s->user, errp); | ||
825 | + ret = authenticate(s, errp); | ||
826 | if (ret < 0) { | ||
827 | goto err; | ||
828 | } | ||
829 | |||
830 | /* Start SFTP. */ | ||
831 | - s->sftp = libssh2_sftp_init(s->session); | ||
832 | + s->sftp = sftp_new(s->session); | ||
833 | if (!s->sftp) { | ||
834 | - session_error_setg(errp, s, "failed to initialize sftp handle"); | ||
835 | + session_error_setg(errp, s, "failed to create sftp handle"); | ||
836 | + ret = -EINVAL; | ||
837 | + goto err; | ||
838 | + } | ||
839 | + | ||
840 | + r = sftp_init(s->sftp); | ||
841 | + if (r < 0) { | ||
842 | + sftp_error_setg(errp, s, "failed to initialize sftp handle"); | ||
843 | ret = -EINVAL; | ||
844 | goto err; | ||
845 | } | ||
846 | |||
847 | /* Open the remote file. */ | ||
848 | trace_ssh_connect_to_ssh(opts->path, ssh_flags, creat_mode); | ||
849 | - s->sftp_handle = libssh2_sftp_open(s->sftp, opts->path, ssh_flags, | ||
850 | - creat_mode); | ||
851 | + s->sftp_handle = sftp_open(s->sftp, opts->path, ssh_flags, creat_mode); | ||
852 | if (!s->sftp_handle) { | ||
853 | - session_error_setg(errp, s, "failed to open remote file '%s'", | ||
854 | - opts->path); | ||
855 | + sftp_error_setg(errp, s, "failed to open remote file '%s'", | ||
856 | + opts->path); | ||
857 | ret = -EINVAL; | ||
858 | goto err; | ||
859 | } | ||
860 | |||
861 | - r = libssh2_sftp_fstat(s->sftp_handle, &s->attrs); | ||
862 | - if (r < 0) { | ||
863 | + /* Make sure the SFTP file is handled in blocking mode. */ | ||
864 | + sftp_file_set_blocking(s->sftp_handle); | ||
865 | + | ||
866 | + s->attrs = sftp_fstat(s->sftp_handle); | ||
867 | + if (!s->attrs) { | ||
868 | sftp_error_setg(errp, s, "failed to read file attributes"); | ||
869 | return -EINVAL; | ||
870 | } | ||
871 | @@ -XXX,XX +XXX,XX @@ static int connect_to_ssh(BDRVSSHState *s, BlockdevOptionsSsh *opts, | ||
872 | return 0; | ||
873 | |||
874 | err: | ||
875 | + if (s->attrs) { | ||
876 | + sftp_attributes_free(s->attrs); | ||
877 | + } | ||
878 | + s->attrs = NULL; | ||
879 | if (s->sftp_handle) { | ||
880 | - libssh2_sftp_close(s->sftp_handle); | ||
881 | + sftp_close(s->sftp_handle); | ||
882 | } | ||
883 | s->sftp_handle = NULL; | ||
884 | if (s->sftp) { | ||
885 | - libssh2_sftp_shutdown(s->sftp); | ||
886 | + sftp_free(s->sftp); | ||
887 | } | ||
888 | s->sftp = NULL; | ||
889 | if (s->session) { | ||
890 | - libssh2_session_disconnect(s->session, | ||
891 | - "from qemu ssh client: " | ||
892 | - "error opening connection"); | ||
893 | - libssh2_session_free(s->session); | ||
894 | + ssh_disconnect(s->session); | ||
895 | + ssh_free(s->session); | ||
896 | } | ||
897 | s->session = NULL; | ||
898 | + s->sock = -1; | ||
899 | + if (new_sock >= 0) { | ||
900 | + close(new_sock); | ||
901 | + } | ||
902 | |||
903 | return ret; | ||
904 | } | ||
905 | @@ -XXX,XX +XXX,XX @@ static int ssh_file_open(BlockDriverState *bs, QDict *options, int bdrv_flags, | ||
906 | |||
907 | ssh_state_init(s); | ||
908 | |||
909 | - ssh_flags = LIBSSH2_FXF_READ; | ||
910 | + ssh_flags = 0; | ||
911 | if (bdrv_flags & BDRV_O_RDWR) { | ||
912 | - ssh_flags |= LIBSSH2_FXF_WRITE; | ||
913 | + ssh_flags |= O_RDWR; | ||
914 | + } else { | ||
915 | + ssh_flags |= O_RDONLY; | ||
916 | } | ||
917 | |||
918 | opts = ssh_parse_options(options, errp); | ||
919 | @@ -XXX,XX +XXX,XX @@ static int ssh_file_open(BlockDriverState *bs, QDict *options, int bdrv_flags, | ||
920 | } | ||
921 | |||
922 | /* Go non-blocking. */ | ||
923 | - libssh2_session_set_blocking(s->session, 0); | ||
924 | + ssh_set_blocking(s->session, 0); | ||
925 | |||
926 | qapi_free_BlockdevOptionsSsh(opts); | ||
927 | |||
928 | return 0; | ||
929 | |||
930 | err: | ||
931 | - if (s->sock >= 0) { | ||
932 | - close(s->sock); | ||
933 | - } | ||
934 | - s->sock = -1; | ||
935 | - | ||
936 | qapi_free_BlockdevOptionsSsh(opts); | ||
937 | |||
938 | return ret; | ||
939 | @@ -XXX,XX +XXX,XX @@ static int ssh_grow_file(BDRVSSHState *s, int64_t offset, Error **errp) | ||
940 | { | ||
941 | ssize_t ret; | ||
942 | char c[1] = { '\0' }; | ||
943 | - int was_blocking = libssh2_session_get_blocking(s->session); | ||
944 | + int was_blocking = ssh_is_blocking(s->session); | ||
945 | |||
946 | /* offset must be strictly greater than the current size so we do | ||
947 | * not overwrite anything */ | ||
948 | - assert(offset > 0 && offset > s->attrs.filesize); | ||
949 | + assert(offset > 0 && offset > s->attrs->size); | ||
950 | |||
951 | - libssh2_session_set_blocking(s->session, 1); | ||
952 | + ssh_set_blocking(s->session, 1); | ||
953 | |||
954 | - libssh2_sftp_seek64(s->sftp_handle, offset - 1); | ||
955 | - ret = libssh2_sftp_write(s->sftp_handle, c, 1); | ||
956 | + sftp_seek64(s->sftp_handle, offset - 1); | ||
957 | + ret = sftp_write(s->sftp_handle, c, 1); | ||
958 | |||
959 | - libssh2_session_set_blocking(s->session, was_blocking); | ||
960 | + ssh_set_blocking(s->session, was_blocking); | ||
961 | |||
962 | if (ret < 0) { | ||
963 | sftp_error_setg(errp, s, "Failed to grow file"); | ||
964 | return -EIO; | ||
965 | } | ||
966 | |||
967 | - s->attrs.filesize = offset; | ||
968 | + s->attrs->size = offset; | ||
969 | return 0; | ||
970 | } | ||
971 | |||
972 | @@ -XXX,XX +XXX,XX @@ static int ssh_co_create(BlockdevCreateOptions *options, Error **errp) | ||
973 | ssh_state_init(&s); | ||
974 | |||
975 | ret = connect_to_ssh(&s, opts->location, | ||
976 | - LIBSSH2_FXF_READ|LIBSSH2_FXF_WRITE| | ||
977 | - LIBSSH2_FXF_CREAT|LIBSSH2_FXF_TRUNC, | ||
978 | + O_RDWR | O_CREAT | O_TRUNC, | ||
979 | 0644, errp); | ||
980 | if (ret < 0) { | ||
981 | goto fail; | ||
982 | @@ -XXX,XX +XXX,XX @@ static int ssh_has_zero_init(BlockDriverState *bs) | ||
983 | /* Assume false, unless we can positively prove it's true. */ | ||
984 | int has_zero_init = 0; | ||
985 | |||
986 | - if (s->attrs.flags & LIBSSH2_SFTP_ATTR_PERMISSIONS) { | ||
987 | - if (s->attrs.permissions & LIBSSH2_SFTP_S_IFREG) { | ||
988 | - has_zero_init = 1; | ||
989 | - } | ||
990 | + if (s->attrs->type == SSH_FILEXFER_TYPE_REGULAR) { | ||
991 | + has_zero_init = 1; | ||
992 | } | ||
993 | |||
994 | return has_zero_init; | ||
995 | @@ -XXX,XX +XXX,XX @@ static coroutine_fn void co_yield(BDRVSSHState *s, BlockDriverState *bs) | ||
996 | .co = qemu_coroutine_self() | ||
997 | }; | ||
998 | |||
999 | - r = libssh2_session_block_directions(s->session); | ||
1000 | + r = ssh_get_poll_flags(s->session); | ||
1001 | |||
1002 | - if (r & LIBSSH2_SESSION_BLOCK_INBOUND) { | ||
1003 | + if (r & SSH_READ_PENDING) { | ||
1004 | rd_handler = restart_coroutine; | ||
1005 | } | ||
1006 | - if (r & LIBSSH2_SESSION_BLOCK_OUTBOUND) { | ||
1007 | + if (r & SSH_WRITE_PENDING) { | ||
1008 | wr_handler = restart_coroutine; | ||
1009 | } | ||
1010 | |||
1011 | @@ -XXX,XX +XXX,XX @@ static coroutine_fn void co_yield(BDRVSSHState *s, BlockDriverState *bs) | ||
1012 | trace_ssh_co_yield_back(s->sock); | ||
1013 | } | ||
1014 | |||
1015 | -/* SFTP has a function `libssh2_sftp_seek64' which seeks to a position | ||
1016 | - * in the remote file. Notice that it just updates a field in the | ||
1017 | - * sftp_handle structure, so there is no network traffic and it cannot | ||
1018 | - * fail. | ||
1019 | - * | ||
1020 | - * However, `libssh2_sftp_seek64' does have a catastrophic effect on | ||
1021 | - * performance since it causes the handle to throw away all in-flight | ||
1022 | - * reads and buffered readahead data. Therefore this function tries | ||
1023 | - * to be intelligent about when to call the underlying libssh2 function. | ||
1024 | - */ | ||
1025 | -#define SSH_SEEK_WRITE 0 | ||
1026 | -#define SSH_SEEK_READ 1 | ||
1027 | -#define SSH_SEEK_FORCE 2 | ||
1028 | - | ||
1029 | -static void ssh_seek(BDRVSSHState *s, int64_t offset, int flags) | ||
1030 | -{ | ||
1031 | - bool op_read = (flags & SSH_SEEK_READ) != 0; | ||
1032 | - bool force = (flags & SSH_SEEK_FORCE) != 0; | ||
1033 | - | ||
1034 | - if (force || op_read != s->offset_op_read || offset != s->offset) { | ||
1035 | - trace_ssh_seek(offset); | ||
1036 | - libssh2_sftp_seek64(s->sftp_handle, offset); | ||
1037 | - s->offset = offset; | ||
1038 | - s->offset_op_read = op_read; | ||
1039 | - } | ||
1040 | -} | ||
1041 | - | ||
1042 | static coroutine_fn int ssh_read(BDRVSSHState *s, BlockDriverState *bs, | ||
1043 | int64_t offset, size_t size, | ||
1044 | QEMUIOVector *qiov) | ||
1045 | @@ -XXX,XX +XXX,XX @@ static coroutine_fn int ssh_read(BDRVSSHState *s, BlockDriverState *bs, | ||
1046 | |||
1047 | trace_ssh_read(offset, size); | ||
1048 | |||
1049 | - ssh_seek(s, offset, SSH_SEEK_READ); | ||
1050 | + trace_ssh_seek(offset); | ||
1051 | + sftp_seek64(s->sftp_handle, offset); | ||
1052 | |||
1053 | /* This keeps track of the current iovec element ('i'), where we | ||
1054 | * will write to next ('buf'), and the end of the current iovec | ||
1055 | @@ -XXX,XX +XXX,XX @@ static coroutine_fn int ssh_read(BDRVSSHState *s, BlockDriverState *bs, | ||
1056 | buf = i->iov_base; | ||
1057 | end_of_vec = i->iov_base + i->iov_len; | ||
1058 | |||
1059 | - /* libssh2 has a hard-coded limit of 2000 bytes per request, | ||
1060 | - * although it will also do readahead behind our backs. Therefore | ||
1061 | - * we may have to do repeated reads here until we have read 'size' | ||
1062 | - * bytes. | ||
1063 | - */ | ||
1064 | for (got = 0; got < size; ) { | ||
1065 | + size_t request_read_size; | ||
1066 | again: | ||
1067 | - trace_ssh_read_buf(buf, end_of_vec - buf); | ||
1068 | - r = libssh2_sftp_read(s->sftp_handle, buf, end_of_vec - buf); | ||
1069 | - trace_ssh_read_return(r); | ||
1070 | + /* | ||
1071 | + * The size of SFTP packets is limited to 32K bytes, so limit | ||
1072 | + * the amount of data requested to 16K, as libssh currently | ||
1073 | + * does not handle multiple requests on its own. | ||
1074 | + */ | ||
1075 | + request_read_size = MIN(end_of_vec - buf, 16384); | ||
1076 | + trace_ssh_read_buf(buf, end_of_vec - buf, request_read_size); | ||
1077 | + r = sftp_read(s->sftp_handle, buf, request_read_size); | ||
1078 | + trace_ssh_read_return(r, sftp_get_error(s->sftp)); | ||
1079 | |||
1080 | - if (r == LIBSSH2_ERROR_EAGAIN || r == LIBSSH2_ERROR_TIMEOUT) { | ||
1081 | + if (r == SSH_AGAIN) { | ||
1082 | co_yield(s, bs); | ||
1083 | goto again; | ||
1084 | } | ||
1085 | - if (r < 0) { | ||
1086 | - sftp_error_trace(s, "read"); | ||
1087 | - s->offset = -1; | ||
1088 | - return -EIO; | ||
1089 | - } | ||
1090 | - if (r == 0) { | ||
1091 | + if (r == SSH_EOF || (r == 0 && sftp_get_error(s->sftp) == SSH_FX_EOF)) { | ||
1092 | /* EOF: Short read so pad the buffer with zeroes and return it. */ | ||
1093 | qemu_iovec_memset(qiov, got, 0, size - got); | ||
1094 | return 0; | ||
1095 | } | ||
1096 | + if (r <= 0) { | ||
1097 | + sftp_error_trace(s, "read"); | ||
1098 | + return -EIO; | ||
1099 | + } | ||
1100 | |||
1101 | got += r; | ||
1102 | buf += r; | ||
1103 | - s->offset += r; | ||
1104 | if (buf >= end_of_vec && got < size) { | ||
1105 | i++; | ||
1106 | buf = i->iov_base; | ||
1107 | @@ -XXX,XX +XXX,XX @@ static int ssh_write(BDRVSSHState *s, BlockDriverState *bs, | ||
1108 | |||
1109 | trace_ssh_write(offset, size); | ||
1110 | |||
1111 | - ssh_seek(s, offset, SSH_SEEK_WRITE); | ||
1112 | + trace_ssh_seek(offset); | ||
1113 | + sftp_seek64(s->sftp_handle, offset); | ||
1114 | |||
1115 | /* This keeps track of the current iovec element ('i'), where we | ||
1116 | * will read from next ('buf'), and the end of the current iovec | ||
1117 | @@ -XXX,XX +XXX,XX @@ static int ssh_write(BDRVSSHState *s, BlockDriverState *bs, | ||
1118 | end_of_vec = i->iov_base + i->iov_len; | ||
1119 | |||
1120 | for (written = 0; written < size; ) { | ||
1121 | + size_t request_write_size; | ||
1122 | again: | ||
1123 | - trace_ssh_write_buf(buf, end_of_vec - buf); | ||
1124 | - r = libssh2_sftp_write(s->sftp_handle, buf, end_of_vec - buf); | ||
1125 | - trace_ssh_write_return(r); | ||
1126 | + /* | ||
1127 | + * Avoid too large data packets, as libssh currently does not | ||
1128 | + * handle multiple requests on its own. | ||
1129 | + */ | ||
1130 | + request_write_size = MIN(end_of_vec - buf, 131072); | ||
1131 | + trace_ssh_write_buf(buf, end_of_vec - buf, request_write_size); | ||
1132 | + r = sftp_write(s->sftp_handle, buf, request_write_size); | ||
1133 | + trace_ssh_write_return(r, sftp_get_error(s->sftp)); | ||
1134 | |||
1135 | - if (r == LIBSSH2_ERROR_EAGAIN || r == LIBSSH2_ERROR_TIMEOUT) { | ||
1136 | + if (r == SSH_AGAIN) { | ||
1137 | co_yield(s, bs); | ||
1138 | goto again; | ||
1139 | } | ||
1140 | if (r < 0) { | ||
1141 | sftp_error_trace(s, "write"); | ||
1142 | - s->offset = -1; | ||
1143 | return -EIO; | ||
1144 | } | ||
1145 | - /* The libssh2 API is very unclear about this. A comment in | ||
1146 | - * the code says "nothing was acked, and no EAGAIN was | ||
1147 | - * received!" which apparently means that no data got sent | ||
1148 | - * out, and the underlying channel didn't return any EAGAIN | ||
1149 | - * indication. I think this is a bug in either libssh2 or | ||
1150 | - * OpenSSH (server-side). In any case, forcing a seek (to | ||
1151 | - * discard libssh2 internal buffers), and then trying again | ||
1152 | - * works for me. | ||
1153 | - */ | ||
1154 | - if (r == 0) { | ||
1155 | - ssh_seek(s, offset + written, SSH_SEEK_WRITE|SSH_SEEK_FORCE); | ||
1156 | - co_yield(s, bs); | ||
1157 | - goto again; | ||
1158 | - } | ||
1159 | |||
1160 | written += r; | ||
1161 | buf += r; | ||
1162 | - s->offset += r; | ||
1163 | if (buf >= end_of_vec && written < size) { | ||
1164 | i++; | ||
1165 | buf = i->iov_base; | ||
1166 | end_of_vec = i->iov_base + i->iov_len; | ||
1167 | } | ||
1168 | |||
1169 | - if (offset + written > s->attrs.filesize) | ||
1170 | - s->attrs.filesize = offset + written; | ||
1171 | + if (offset + written > s->attrs->size) { | ||
1172 | + s->attrs->size = offset + written; | ||
1173 | + } | ||
1174 | } | ||
1175 | |||
1176 | return 0; | ||
1177 | @@ -XXX,XX +XXX,XX @@ static void unsafe_flush_warning(BDRVSSHState *s, const char *what) | ||
1178 | } | ||
1179 | } | ||
1180 | |||
1181 | -#ifdef HAS_LIBSSH2_SFTP_FSYNC | ||
1182 | +#ifdef HAVE_LIBSSH_0_8 | ||
1183 | |||
1184 | static coroutine_fn int ssh_flush(BDRVSSHState *s, BlockDriverState *bs) | ||
1185 | { | ||
1186 | int r; | ||
1187 | |||
1188 | trace_ssh_flush(); | ||
1189 | + | ||
1190 | + if (!sftp_extension_supported(s->sftp, "fsync@openssh.com", "1")) { | ||
1191 | + unsafe_flush_warning(s, "OpenSSH >= 6.3"); | ||
1192 | + return 0; | ||
1193 | + } | ||
1194 | again: | ||
1195 | - r = libssh2_sftp_fsync(s->sftp_handle); | ||
1196 | - if (r == LIBSSH2_ERROR_EAGAIN || r == LIBSSH2_ERROR_TIMEOUT) { | ||
1197 | + r = sftp_fsync(s->sftp_handle); | ||
1198 | + if (r == SSH_AGAIN) { | ||
1199 | co_yield(s, bs); | ||
1200 | goto again; | ||
1201 | } | ||
1202 | - if (r == LIBSSH2_ERROR_SFTP_PROTOCOL && | ||
1203 | - libssh2_sftp_last_error(s->sftp) == LIBSSH2_FX_OP_UNSUPPORTED) { | ||
1204 | - unsafe_flush_warning(s, "OpenSSH >= 6.3"); | ||
1205 | - return 0; | ||
1206 | - } | ||
1207 | if (r < 0) { | ||
1208 | sftp_error_trace(s, "fsync"); | ||
1209 | return -EIO; | ||
1210 | @@ -XXX,XX +XXX,XX @@ static coroutine_fn int ssh_co_flush(BlockDriverState *bs) | ||
1211 | return ret; | ||
1212 | } | ||
1213 | |||
1214 | -#else /* !HAS_LIBSSH2_SFTP_FSYNC */ | ||
1215 | +#else /* !HAVE_LIBSSH_0_8 */ | ||
1216 | |||
1217 | static coroutine_fn int ssh_co_flush(BlockDriverState *bs) | ||
1218 | { | ||
1219 | BDRVSSHState *s = bs->opaque; | ||
1220 | |||
1221 | - unsafe_flush_warning(s, "libssh2 >= 1.4.4"); | ||
1222 | + unsafe_flush_warning(s, "libssh >= 0.8.0"); | ||
1223 | return 0; | ||
1224 | } | ||
1225 | |||
1226 | -#endif /* !HAS_LIBSSH2_SFTP_FSYNC */ | ||
1227 | +#endif /* !HAVE_LIBSSH_0_8 */ | ||
1228 | |||
1229 | static int64_t ssh_getlength(BlockDriverState *bs) | ||
1230 | { | ||
1231 | BDRVSSHState *s = bs->opaque; | ||
1232 | int64_t length; | ||
1233 | |||
1234 | - /* Note we cannot make a libssh2 call here. */ | ||
1235 | - length = (int64_t) s->attrs.filesize; | ||
1236 | + /* Note we cannot make a libssh call here. */ | ||
1237 | + length = (int64_t) s->attrs->size; | ||
1238 | trace_ssh_getlength(length); | ||
1239 | |||
1240 | return length; | ||
1241 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn ssh_co_truncate(BlockDriverState *bs, int64_t offset, | ||
1242 | return -ENOTSUP; | ||
1243 | } | ||
1244 | |||
1245 | - if (offset < s->attrs.filesize) { | ||
1246 | + if (offset < s->attrs->size) { | ||
1247 | error_setg(errp, "ssh driver does not support shrinking files"); | ||
1248 | return -ENOTSUP; | ||
1249 | } | ||
1250 | |||
1251 | - if (offset == s->attrs.filesize) { | ||
1252 | + if (offset == s->attrs->size) { | ||
1253 | return 0; | ||
1254 | } | ||
1255 | |||
1256 | @@ -XXX,XX +XXX,XX @@ static void bdrv_ssh_init(void) | ||
1257 | { | ||
1258 | int r; | ||
1259 | |||
1260 | - r = libssh2_init(0); | ||
1261 | + r = ssh_init(); | ||
1262 | if (r != 0) { | ||
1263 | - fprintf(stderr, "libssh2 initialization failed, %d\n", r); | ||
1264 | + fprintf(stderr, "libssh initialization failed, %d\n", r); | ||
1265 | exit(EXIT_FAILURE); | ||
1266 | } | ||
1267 | |||
1268 | +#if TRACE_LIBSSH != 0 | ||
1269 | + ssh_set_log_level(TRACE_LIBSSH); | ||
1270 | +#endif | ||
1271 | + | ||
1272 | bdrv_register(&bdrv_ssh); | ||
1273 | } | ||
1274 | |||
1275 | diff --git a/.travis.yml b/.travis.yml | ||
1276 | index XXXXXXX..XXXXXXX 100644 | ||
1277 | --- a/.travis.yml | ||
1278 | +++ b/.travis.yml | ||
1279 | @@ -XXX,XX +XXX,XX @@ addons: | ||
1280 | - libseccomp-dev | ||
1281 | - libspice-protocol-dev | ||
1282 | - libspice-server-dev | ||
1283 | - - libssh2-1-dev | ||
1284 | + - libssh-dev | ||
1285 | - liburcu-dev | ||
1286 | - libusb-1.0-0-dev | ||
1287 | - libvte-2.91-dev | ||
1288 | @@ -XXX,XX +XXX,XX @@ matrix: | ||
1289 | - libseccomp-dev | ||
1290 | - libspice-protocol-dev | ||
1291 | - libspice-server-dev | ||
1292 | - - libssh2-1-dev | ||
1293 | + - libssh-dev | ||
1294 | - liburcu-dev | ||
1295 | - libusb-1.0-0-dev | ||
1296 | - libvte-2.91-dev | ||
1297 | diff --git a/block/trace-events b/block/trace-events | ||
1298 | index XXXXXXX..XXXXXXX 100644 | ||
1299 | --- a/block/trace-events | ||
1300 | +++ b/block/trace-events | ||
1301 | @@ -XXX,XX +XXX,XX @@ nbd_client_connect_success(const char *export_name) "export '%s'" | ||
1302 | # ssh.c | ||
1303 | ssh_restart_coroutine(void *co) "co=%p" | ||
1304 | ssh_flush(void) "fsync" | ||
1305 | -ssh_check_host_key_knownhosts(const char *key) "host key OK: %s" | ||
1306 | +ssh_check_host_key_knownhosts(void) "host key OK" | ||
1307 | ssh_connect_to_ssh(char *path, int flags, int mode) "opening file %s flags=0x%x creat_mode=0%o" | ||
1308 | ssh_co_yield(int sock, void *rd_handler, void *wr_handler) "s->sock=%d rd_handler=%p wr_handler=%p" | ||
1309 | ssh_co_yield_back(int sock) "s->sock=%d - back" | ||
1310 | ssh_getlength(int64_t length) "length=%" PRIi64 | ||
1311 | ssh_co_create_opts(uint64_t size) "total_size=%" PRIu64 | ||
1312 | ssh_read(int64_t offset, size_t size) "offset=%" PRIi64 " size=%zu" | ||
1313 | -ssh_read_buf(void *buf, size_t size) "sftp_read buf=%p size=%zu" | ||
1314 | -ssh_read_return(ssize_t ret) "sftp_read returned %zd" | ||
1315 | +ssh_read_buf(void *buf, size_t size, size_t actual_size) "sftp_read buf=%p size=%zu (actual size=%zu)" | ||
1316 | +ssh_read_return(ssize_t ret, int sftp_err) "sftp_read returned %zd (sftp error=%d)" | ||
1317 | ssh_write(int64_t offset, size_t size) "offset=%" PRIi64 " size=%zu" | ||
1318 | -ssh_write_buf(void *buf, size_t size) "sftp_write buf=%p size=%zu" | ||
1319 | -ssh_write_return(ssize_t ret) "sftp_write returned %zd" | ||
1320 | +ssh_write_buf(void *buf, size_t size, size_t actual_size) "sftp_write buf=%p size=%zu (actual size=%zu)" | ||
1321 | +ssh_write_return(ssize_t ret, int sftp_err) "sftp_write returned %zd (sftp error=%d)" | ||
1322 | ssh_seek(int64_t offset) "seeking to offset=%" PRIi64 | ||
1323 | +ssh_auth_methods(int methods) "auth methods=0x%x" | ||
1324 | +ssh_server_status(int status) "server status=%d" | ||
1325 | |||
1326 | # curl.c | ||
1327 | curl_timer_cb(long timeout_ms) "timer callback timeout_ms %ld" | ||
1328 | @@ -XXX,XX +XXX,XX @@ sheepdog_snapshot_create(const char *sn_name, const char *id) "%s %s" | ||
1329 | sheepdog_snapshot_create_inode(const char *name, uint32_t snap, uint32_t vdi) "s->inode: name %s snap_id 0x%" PRIx32 " vdi 0x%" PRIx32 | ||
1330 | |||
1331 | # ssh.c | ||
1332 | -sftp_error(const char *op, const char *ssh_err, int ssh_err_code, unsigned long sftp_err_code) "%s failed: %s (libssh2 error code: %d, sftp error code: %lu)" | ||
1333 | +sftp_error(const char *op, const char *ssh_err, int ssh_err_code, int sftp_err_code) "%s failed: %s (libssh error code: %d, sftp error code: %d)" | ||
1334 | diff --git a/docs/qemu-block-drivers.texi b/docs/qemu-block-drivers.texi | ||
1335 | index XXXXXXX..XXXXXXX 100644 | ||
1336 | --- a/docs/qemu-block-drivers.texi | ||
1337 | +++ b/docs/qemu-block-drivers.texi | ||
1338 | @@ -XXX,XX +XXX,XX @@ print a warning when @code{fsync} is not supported: | ||
1339 | |||
1340 | warning: ssh server @code{ssh.example.com:22} does not support fsync | ||
1341 | |||
1342 | -With sufficiently new versions of libssh2 and OpenSSH, @code{fsync} is | ||
1343 | +With sufficiently new versions of libssh and OpenSSH, @code{fsync} is | ||
1344 | supported. | ||
1345 | |||
1346 | @node disk_images_nvme | ||
1347 | diff --git a/tests/docker/dockerfiles/debian-win32-cross.docker b/tests/docker/dockerfiles/debian-win32-cross.docker | ||
1348 | index XXXXXXX..XXXXXXX 100644 | ||
1349 | --- a/tests/docker/dockerfiles/debian-win32-cross.docker | ||
1350 | +++ b/tests/docker/dockerfiles/debian-win32-cross.docker | ||
1351 | @@ -XXX,XX +XXX,XX @@ RUN DEBIAN_FRONTEND=noninteractive eatmydata \ | ||
1352 | mxe-$TARGET-w64-mingw32.shared-curl \ | ||
1353 | mxe-$TARGET-w64-mingw32.shared-glib \ | ||
1354 | mxe-$TARGET-w64-mingw32.shared-libgcrypt \ | ||
1355 | - mxe-$TARGET-w64-mingw32.shared-libssh2 \ | ||
1356 | mxe-$TARGET-w64-mingw32.shared-libusb1 \ | ||
1357 | mxe-$TARGET-w64-mingw32.shared-lzo \ | ||
1358 | mxe-$TARGET-w64-mingw32.shared-nettle \ | ||
1359 | diff --git a/tests/docker/dockerfiles/debian-win64-cross.docker b/tests/docker/dockerfiles/debian-win64-cross.docker | ||
1360 | index XXXXXXX..XXXXXXX 100644 | ||
1361 | --- a/tests/docker/dockerfiles/debian-win64-cross.docker | ||
1362 | +++ b/tests/docker/dockerfiles/debian-win64-cross.docker | ||
1363 | @@ -XXX,XX +XXX,XX @@ RUN DEBIAN_FRONTEND=noninteractive eatmydata \ | ||
1364 | mxe-$TARGET-w64-mingw32.shared-curl \ | ||
1365 | mxe-$TARGET-w64-mingw32.shared-glib \ | ||
1366 | mxe-$TARGET-w64-mingw32.shared-libgcrypt \ | ||
1367 | - mxe-$TARGET-w64-mingw32.shared-libssh2 \ | ||
1368 | mxe-$TARGET-w64-mingw32.shared-libusb1 \ | ||
1369 | mxe-$TARGET-w64-mingw32.shared-lzo \ | ||
1370 | mxe-$TARGET-w64-mingw32.shared-nettle \ | ||
1371 | diff --git a/tests/docker/dockerfiles/fedora.docker b/tests/docker/dockerfiles/fedora.docker | ||
1372 | index XXXXXXX..XXXXXXX 100644 | ||
1373 | --- a/tests/docker/dockerfiles/fedora.docker | ||
1374 | +++ b/tests/docker/dockerfiles/fedora.docker | ||
1375 | @@ -XXX,XX +XXX,XX @@ ENV PACKAGES \ | ||
1376 | libpng-devel \ | ||
1377 | librbd-devel \ | ||
1378 | libseccomp-devel \ | ||
1379 | - libssh2-devel \ | ||
1380 | + libssh-devel \ | ||
1381 | libubsan \ | ||
1382 | libusbx-devel \ | ||
1383 | libxml2-devel \ | ||
1384 | @@ -XXX,XX +XXX,XX @@ ENV PACKAGES \ | ||
1385 | mingw32-gtk3 \ | ||
1386 | mingw32-libjpeg-turbo \ | ||
1387 | mingw32-libpng \ | ||
1388 | - mingw32-libssh2 \ | ||
1389 | mingw32-libtasn1 \ | ||
1390 | mingw32-nettle \ | ||
1391 | mingw32-pixman \ | ||
1392 | @@ -XXX,XX +XXX,XX @@ ENV PACKAGES \ | ||
1393 | mingw64-gtk3 \ | ||
1394 | mingw64-libjpeg-turbo \ | ||
1395 | mingw64-libpng \ | ||
1396 | - mingw64-libssh2 \ | ||
1397 | mingw64-libtasn1 \ | ||
1398 | mingw64-nettle \ | ||
1399 | mingw64-pixman \ | ||
1400 | diff --git a/tests/docker/dockerfiles/ubuntu.docker b/tests/docker/dockerfiles/ubuntu.docker | ||
1401 | index XXXXXXX..XXXXXXX 100644 | ||
1402 | --- a/tests/docker/dockerfiles/ubuntu.docker | ||
1403 | +++ b/tests/docker/dockerfiles/ubuntu.docker | ||
1404 | @@ -XXX,XX +XXX,XX @@ ENV PACKAGES flex bison \ | ||
1405 | libsnappy-dev \ | ||
1406 | libspice-protocol-dev \ | ||
1407 | libspice-server-dev \ | ||
1408 | - libssh2-1-dev \ | ||
1409 | + libssh-dev \ | ||
1410 | libusb-1.0-0-dev \ | ||
1411 | libusbredirhost-dev \ | ||
1412 | libvdeplug-dev \ | ||
1413 | diff --git a/tests/docker/dockerfiles/ubuntu1804.docker b/tests/docker/dockerfiles/ubuntu1804.docker | ||
1414 | index XXXXXXX..XXXXXXX 100644 | ||
1415 | --- a/tests/docker/dockerfiles/ubuntu1804.docker | ||
1416 | +++ b/tests/docker/dockerfiles/ubuntu1804.docker | ||
1417 | @@ -XXX,XX +XXX,XX @@ ENV PACKAGES flex bison \ | ||
1418 | libsnappy-dev \ | ||
1419 | libspice-protocol-dev \ | ||
1420 | libspice-server-dev \ | ||
1421 | - libssh2-1-dev \ | ||
1422 | + libssh-dev \ | ||
1423 | libusb-1.0-0-dev \ | ||
1424 | libusbredirhost-dev \ | ||
1425 | libvdeplug-dev \ | ||
1426 | diff --git a/tests/qemu-iotests/207 b/tests/qemu-iotests/207 | ||
1427 | index XXXXXXX..XXXXXXX 100755 | ||
1428 | --- a/tests/qemu-iotests/207 | ||
1429 | +++ b/tests/qemu-iotests/207 | ||
1430 | @@ -XXX,XX +XXX,XX @@ with iotests.FilePath('t.img') as disk_path, \ | ||
1431 | |||
1432 | iotests.img_info_log(remote_path) | ||
1433 | |||
1434 | - md5_key = subprocess.check_output( | ||
1435 | - 'ssh-keyscan -t rsa 127.0.0.1 2>/dev/null | grep -v "\\^#" | ' + | ||
1436 | - 'cut -d" " -f3 | base64 -d | md5sum -b | cut -d" " -f1', | ||
1437 | - shell=True).rstrip().decode('ascii') | ||
1438 | + keys = subprocess.check_output( | ||
1439 | + 'ssh-keyscan 127.0.0.1 2>/dev/null | grep -v "\\^#" | ' + | ||
1440 | + 'cut -d" " -f3', | ||
1441 | + shell=True).rstrip().decode('ascii').split('\n') | ||
1442 | + | ||
1443 | + # Mappings of base64 representations to digests | ||
1444 | + md5_keys = {} | ||
1445 | + sha1_keys = {} | ||
1446 | + | ||
1447 | + for key in keys: | ||
1448 | + md5_keys[key] = subprocess.check_output( | ||
1449 | + 'echo %s | base64 -d | md5sum -b | cut -d" " -f1' % key, | ||
1450 | + shell=True).rstrip().decode('ascii') | ||
1451 | + | ||
1452 | + sha1_keys[key] = subprocess.check_output( | ||
1453 | + 'echo %s | base64 -d | sha1sum -b | cut -d" " -f1' % key, | ||
1454 | + shell=True).rstrip().decode('ascii') | ||
1455 | |||
1456 | vm.launch() | ||
1457 | + | ||
1458 | + # Find correct key first | ||
1459 | + matching_key = None | ||
1460 | + for key in keys: | ||
1461 | + result = vm.qmp('blockdev-add', | ||
1462 | + driver='ssh', node_name='node0', path=disk_path, | ||
1463 | + server={ | ||
1464 | + 'host': '127.0.0.1', | ||
1465 | + 'port': '22', | ||
1466 | + }, host_key_check={ | ||
1467 | + 'mode': 'hash', | ||
1468 | + 'type': 'md5', | ||
1469 | + 'hash': md5_keys[key], | ||
1470 | + }) | ||
1471 | + | ||
1472 | + if 'error' not in result: | ||
1473 | + vm.qmp('blockdev-del', node_name='node0') | ||
1474 | + matching_key = key | ||
1475 | + break | ||
1476 | + | ||
1477 | + if matching_key is None: | ||
1478 | + vm.shutdown() | ||
1479 | + iotests.notrun('Did not find a key that fits 127.0.0.1') | ||
1480 | + | ||
1481 | blockdev_create(vm, { 'driver': 'ssh', | ||
1482 | 'location': { | ||
1483 | 'path': disk_path, | ||
1484 | @@ -XXX,XX +XXX,XX @@ with iotests.FilePath('t.img') as disk_path, \ | ||
1485 | 'host-key-check': { | ||
1486 | 'mode': 'hash', | ||
1487 | 'type': 'md5', | ||
1488 | - 'hash': md5_key, | ||
1489 | + 'hash': md5_keys[matching_key], | ||
1490 | } | ||
1491 | }, | ||
1492 | 'size': 8388608 }) | ||
1493 | @@ -XXX,XX +XXX,XX @@ with iotests.FilePath('t.img') as disk_path, \ | ||
1494 | |||
1495 | iotests.img_info_log(remote_path) | ||
1496 | |||
1497 | - sha1_key = subprocess.check_output( | ||
1498 | - 'ssh-keyscan -t rsa 127.0.0.1 2>/dev/null | grep -v "\\^#" | ' + | ||
1499 | - 'cut -d" " -f3 | base64 -d | sha1sum -b | cut -d" " -f1', | ||
1500 | - shell=True).rstrip().decode('ascii') | ||
1501 | - | ||
1502 | vm.launch() | ||
1503 | blockdev_create(vm, { 'driver': 'ssh', | ||
1504 | 'location': { | ||
1505 | @@ -XXX,XX +XXX,XX @@ with iotests.FilePath('t.img') as disk_path, \ | ||
1506 | 'host-key-check': { | ||
1507 | 'mode': 'hash', | ||
1508 | 'type': 'sha1', | ||
1509 | - 'hash': sha1_key, | ||
1510 | + 'hash': sha1_keys[matching_key], | ||
1511 | } | ||
1512 | }, | ||
1513 | 'size': 4194304 }) | ||
1514 | diff --git a/tests/qemu-iotests/207.out b/tests/qemu-iotests/207.out | ||
1515 | index XXXXXXX..XXXXXXX 100644 | ||
1516 | --- a/tests/qemu-iotests/207.out | ||
1517 | +++ b/tests/qemu-iotests/207.out | ||
1518 | @@ -XXX,XX +XXX,XX @@ virtual size: 4 MiB (4194304 bytes) | ||
1519 | |||
1520 | {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "ssh", "location": {"host-key-check": {"mode": "none"}, "path": "/this/is/not/an/existing/path", "server": {"host": "127.0.0.1", "port": "22"}}, "size": 4194304}}} | ||
1521 | {"return": {}} | ||
1522 | -Job failed: failed to open remote file '/this/is/not/an/existing/path': Failed opening remote file (libssh2 error code: -31) | ||
1523 | +Job failed: failed to open remote file '/this/is/not/an/existing/path': SFTP server: No such file (libssh error code: 1, sftp error code: 2) | ||
1524 | {"execute": "job-dismiss", "arguments": {"id": "job0"}} | ||
1525 | {"return": {}} | ||
92 | 1526 | ||
93 | -- | 1527 | -- |
94 | 2.24.1 | 1528 | 2.21.0 |
95 | 1529 | ||
96 | 1530 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Stefan Hajnoczi <stefanha@redhat.com> | ||
2 | 1 | ||
3 | In most qemu-img sub-commands the --object option only makes sense when | ||
4 | there is a filename. qemu-img measure is an exception because objects | ||
5 | may be referenced from the image creation options instead of an existing | ||
6 | image file. Allow --object without a filename. | ||
7 | |||
8 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
9 | Reviewed-by: Max Reitz <mreitz@redhat.com> | ||
10 | Message-Id: <20200221112522.1497712-4-stefanha@redhat.com> | ||
11 | Signed-off-by: Max Reitz <mreitz@redhat.com> | ||
12 | --- | ||
13 | qemu-img.c | 6 ++---- | ||
14 | tests/qemu-iotests/178 | 2 +- | ||
15 | tests/qemu-iotests/178.out.qcow2 | 8 ++++---- | ||
16 | tests/qemu-iotests/178.out.raw | 8 ++++---- | ||
17 | 4 files changed, 11 insertions(+), 13 deletions(-) | ||
18 | |||
19 | diff --git a/qemu-img.c b/qemu-img.c | ||
20 | index XXXXXXX..XXXXXXX 100644 | ||
21 | --- a/qemu-img.c | ||
22 | +++ b/qemu-img.c | ||
23 | @@ -XXX,XX +XXX,XX @@ static int img_measure(int argc, char **argv) | ||
24 | filename = argv[optind]; | ||
25 | } | ||
26 | |||
27 | - if (!filename && | ||
28 | - (object_opts || image_opts || fmt || snapshot_name || sn_opts)) { | ||
29 | - error_report("--object, --image-opts, -f, and -l " | ||
30 | - "require a filename argument."); | ||
31 | + if (!filename && (image_opts || fmt || snapshot_name || sn_opts)) { | ||
32 | + error_report("--image-opts, -f, and -l require a filename argument."); | ||
33 | goto out; | ||
34 | } | ||
35 | if (filename && img_size != UINT64_MAX) { | ||
36 | diff --git a/tests/qemu-iotests/178 b/tests/qemu-iotests/178 | ||
37 | index XXXXXXX..XXXXXXX 100755 | ||
38 | --- a/tests/qemu-iotests/178 | ||
39 | +++ b/tests/qemu-iotests/178 | ||
40 | @@ -XXX,XX +XXX,XX @@ _make_test_img 1G | ||
41 | $QEMU_IMG measure # missing arguments | ||
42 | $QEMU_IMG measure --size 2G "$TEST_IMG" # only one allowed | ||
43 | $QEMU_IMG measure "$TEST_IMG" a # only one filename allowed | ||
44 | -$QEMU_IMG measure --object secret,id=sec0,data=MTIzNDU2,format=base64 # missing filename | ||
45 | +$QEMU_IMG measure --object secret,id=sec0,data=MTIzNDU2,format=base64 # size or filename needed | ||
46 | $QEMU_IMG measure --image-opts # missing filename | ||
47 | $QEMU_IMG measure -f qcow2 # missing filename | ||
48 | $QEMU_IMG measure -l snap1 # missing filename | ||
49 | diff --git a/tests/qemu-iotests/178.out.qcow2 b/tests/qemu-iotests/178.out.qcow2 | ||
50 | index XXXXXXX..XXXXXXX 100644 | ||
51 | --- a/tests/qemu-iotests/178.out.qcow2 | ||
52 | +++ b/tests/qemu-iotests/178.out.qcow2 | ||
53 | @@ -XXX,XX +XXX,XX @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=1073741824 | ||
54 | qemu-img: Either --size N or one filename must be specified. | ||
55 | qemu-img: --size N cannot be used together with a filename. | ||
56 | qemu-img: At most one filename argument is allowed. | ||
57 | -qemu-img: --object, --image-opts, -f, and -l require a filename argument. | ||
58 | -qemu-img: --object, --image-opts, -f, and -l require a filename argument. | ||
59 | -qemu-img: --object, --image-opts, -f, and -l require a filename argument. | ||
60 | -qemu-img: --object, --image-opts, -f, and -l require a filename argument. | ||
61 | +qemu-img: Either --size N or one filename must be specified. | ||
62 | +qemu-img: --image-opts, -f, and -l require a filename argument. | ||
63 | +qemu-img: --image-opts, -f, and -l require a filename argument. | ||
64 | +qemu-img: --image-opts, -f, and -l require a filename argument. | ||
65 | qemu-img: Invalid option list: , | ||
66 | qemu-img: Invalid parameter 'snapshot.foo' | ||
67 | qemu-img: Failed in parsing snapshot param 'snapshot.foo' | ||
68 | diff --git a/tests/qemu-iotests/178.out.raw b/tests/qemu-iotests/178.out.raw | ||
69 | index XXXXXXX..XXXXXXX 100644 | ||
70 | --- a/tests/qemu-iotests/178.out.raw | ||
71 | +++ b/tests/qemu-iotests/178.out.raw | ||
72 | @@ -XXX,XX +XXX,XX @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=1073741824 | ||
73 | qemu-img: Either --size N or one filename must be specified. | ||
74 | qemu-img: --size N cannot be used together with a filename. | ||
75 | qemu-img: At most one filename argument is allowed. | ||
76 | -qemu-img: --object, --image-opts, -f, and -l require a filename argument. | ||
77 | -qemu-img: --object, --image-opts, -f, and -l require a filename argument. | ||
78 | -qemu-img: --object, --image-opts, -f, and -l require a filename argument. | ||
79 | -qemu-img: --object, --image-opts, -f, and -l require a filename argument. | ||
80 | +qemu-img: Either --size N or one filename must be specified. | ||
81 | +qemu-img: --image-opts, -f, and -l require a filename argument. | ||
82 | +qemu-img: --image-opts, -f, and -l require a filename argument. | ||
83 | +qemu-img: --image-opts, -f, and -l require a filename argument. | ||
84 | qemu-img: Invalid option list: , | ||
85 | qemu-img: Invalid parameter 'snapshot.foo' | ||
86 | qemu-img: Failed in parsing snapshot param 'snapshot.foo' | ||
87 | -- | ||
88 | 2.24.1 | ||
89 | |||
90 | diff view generated by jsdifflib |
1 | From: David Edmondson <david.edmondson@oracle.com> | 1 | Tests should place their files into the test directory. This includes |
---|---|---|---|
2 | Unix sockets. 205 currently fails to do so, which prevents it from | ||
3 | being run concurrently. | ||
2 | 4 | ||
3 | RFC 7230 section 3.2 indicates that HTTP header field names are case | 5 | Signed-off-by: Max Reitz <mreitz@redhat.com> |
4 | insensitive. | 6 | Message-id: 20190618210238.9524-1-mreitz@redhat.com |
5 | 7 | Reviewed-by: Eric Blake <eblake@redhat.com> | |
6 | Signed-off-by: David Edmondson <david.edmondson@oracle.com> | ||
7 | Message-Id: <20200224101310.101169-3-david.edmondson@oracle.com> | ||
8 | Reviewed-by: Max Reitz <mreitz@redhat.com> | ||
9 | Signed-off-by: Max Reitz <mreitz@redhat.com> | 8 | Signed-off-by: Max Reitz <mreitz@redhat.com> |
10 | --- | 9 | --- |
11 | block/curl.c | 5 +++-- | 10 | tests/qemu-iotests/205 | 2 +- |
12 | 1 file changed, 3 insertions(+), 2 deletions(-) | 11 | 1 file changed, 1 insertion(+), 1 deletion(-) |
13 | 12 | ||
14 | diff --git a/block/curl.c b/block/curl.c | 13 | diff --git a/tests/qemu-iotests/205 b/tests/qemu-iotests/205 |
15 | index XXXXXXX..XXXXXXX 100644 | 14 | index XXXXXXX..XXXXXXX 100755 |
16 | --- a/block/curl.c | 15 | --- a/tests/qemu-iotests/205 |
17 | +++ b/block/curl.c | 16 | +++ b/tests/qemu-iotests/205 |
18 | @@ -XXX,XX +XXX,XX @@ static size_t curl_header_cb(void *ptr, size_t size, size_t nmemb, void *opaque) | 17 | @@ -XXX,XX +XXX,XX @@ import iotests |
19 | size_t realsize = size * nmemb; | 18 | import time |
20 | const char *header = (char *)ptr; | 19 | from iotests import qemu_img_create, qemu_io, filter_qemu_io, QemuIoInteractive |
21 | const char *end = header + realsize; | 20 | |
22 | - const char *accept_ranges = "Accept-Ranges:"; | 21 | -nbd_sock = 'nbd_sock' |
23 | + const char *accept_ranges = "accept-ranges:"; | 22 | +nbd_sock = os.path.join(iotests.test_dir, 'nbd_sock') |
24 | const char *bytes = "bytes"; | 23 | nbd_uri = 'nbd+unix:///exp?socket=' + nbd_sock |
25 | 24 | disk = os.path.join(iotests.test_dir, 'disk') | |
26 | if (realsize >= strlen(accept_ranges) | ||
27 | - && strncmp(header, accept_ranges, strlen(accept_ranges)) == 0) { | ||
28 | + && g_ascii_strncasecmp(header, accept_ranges, | ||
29 | + strlen(accept_ranges)) == 0) { | ||
30 | |||
31 | char *p = strchr(header, ':') + 1; | ||
32 | 25 | ||
33 | -- | 26 | -- |
34 | 2.24.1 | 27 | 2.21.0 |
35 | 28 | ||
36 | 29 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Eric Blake <eblake@redhat.com> | ||
2 | 1 | ||
3 | Tests 261 and 272 fail on RHEL 7 with coreutils 8.22, since od | ||
4 | --endian was not added until coreutils 8.23. Fix this by manually | ||
5 | constructing the final value one byte at a time. | ||
6 | |||
7 | Fixes: fc8ba423 | ||
8 | Reported-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com> | ||
9 | Signed-off-by: Eric Blake <eblake@redhat.com> | ||
10 | Reviewed-by: Max Reitz <mreitz@redhat.com> | ||
11 | Message-Id: <20200226125424.481840-1-eblake@redhat.com> | ||
12 | Signed-off-by: Max Reitz <mreitz@redhat.com> | ||
13 | --- | ||
14 | tests/qemu-iotests/common.rc | 22 +++++++++++++++++----- | ||
15 | 1 file changed, 17 insertions(+), 5 deletions(-) | ||
16 | |||
17 | diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc | ||
18 | index XXXXXXX..XXXXXXX 100644 | ||
19 | --- a/tests/qemu-iotests/common.rc | ||
20 | +++ b/tests/qemu-iotests/common.rc | ||
21 | @@ -XXX,XX +XXX,XX @@ poke_file() | ||
22 | # peek_file_le 'test.img' 512 2 => 65534 | ||
23 | peek_file_le() | ||
24 | { | ||
25 | - # Wrap in echo $() to strip spaces | ||
26 | - echo $(od -j"$2" -N"$3" --endian=little -An -vtu"$3" "$1") | ||
27 | + local val=0 shift=0 byte | ||
28 | + | ||
29 | + # coreutils' od --endian is not portable, so manually assemble bytes. | ||
30 | + for byte in $(od -j"$2" -N"$3" -An -v -tu1 "$1"); do | ||
31 | + val=$(( val | (byte << shift) )) | ||
32 | + shift=$((shift + 8)) | ||
33 | + done | ||
34 | + printf %llu $val | ||
35 | } | ||
36 | |||
37 | # peek_file_be 'test.img' 512 2 => 65279 | ||
38 | peek_file_be() | ||
39 | { | ||
40 | - # Wrap in echo $() to strip spaces | ||
41 | - echo $(od -j"$2" -N"$3" --endian=big -An -vtu"$3" "$1") | ||
42 | + local val=0 byte | ||
43 | + | ||
44 | + # coreutils' od --endian is not portable, so manually assemble bytes. | ||
45 | + for byte in $(od -j"$2" -N"$3" -An -v -tu1 "$1"); do | ||
46 | + val=$(( (val << 8) | byte )) | ||
47 | + done | ||
48 | + printf %llu $val | ||
49 | } | ||
50 | |||
51 | -# peek_file_raw 'test.img' 512 2 => '\xff\xfe' | ||
52 | +# peek_file_raw 'test.img' 512 2 => '\xff\xfe'. Do not use if the raw data | ||
53 | +# is likely to contain \0 or trailing \n. | ||
54 | peek_file_raw() | ||
55 | { | ||
56 | dd if="$1" bs=1 skip="$2" count="$3" status=none | ||
57 | -- | ||
58 | 2.24.1 | ||
59 | |||
60 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Pan Nengyuan <pannengyuan@huawei.com> | ||
2 | 1 | ||
3 | 'crypto_opts' forgot to free in qcow2_close(), this patch fix the bellow leak stack: | ||
4 | |||
5 | Direct leak of 24 byte(s) in 1 object(s) allocated from: | ||
6 | #0 0x7f0edd81f970 in __interceptor_calloc (/lib64/libasan.so.5+0xef970) | ||
7 | #1 0x7f0edc6d149d in g_malloc0 (/lib64/libglib-2.0.so.0+0x5249d) | ||
8 | #2 0x55d7eaede63d in qobject_input_start_struct /mnt/sdb/qemu-new/qemu_test/qemu/qapi/qobject-input-visitor.c:295 | ||
9 | #3 0x55d7eaed78b8 in visit_start_struct /mnt/sdb/qemu-new/qemu_test/qemu/qapi/qapi-visit-core.c:49 | ||
10 | #4 0x55d7eaf5140b in visit_type_QCryptoBlockOpenOptions qapi/qapi-visit-crypto.c:290 | ||
11 | #5 0x55d7eae43af3 in block_crypto_open_opts_init /mnt/sdb/qemu-new/qemu_test/qemu/block/crypto.c:163 | ||
12 | #6 0x55d7eacd2924 in qcow2_update_options_prepare /mnt/sdb/qemu-new/qemu_test/qemu/block/qcow2.c:1148 | ||
13 | #7 0x55d7eacd33f7 in qcow2_update_options /mnt/sdb/qemu-new/qemu_test/qemu/block/qcow2.c:1232 | ||
14 | #8 0x55d7eacd9680 in qcow2_do_open /mnt/sdb/qemu-new/qemu_test/qemu/block/qcow2.c:1512 | ||
15 | #9 0x55d7eacdc55e in qcow2_open_entry /mnt/sdb/qemu-new/qemu_test/qemu/block/qcow2.c:1792 | ||
16 | #10 0x55d7eacdc8fe in qcow2_open /mnt/sdb/qemu-new/qemu_test/qemu/block/qcow2.c:1819 | ||
17 | #11 0x55d7eac3742d in bdrv_open_driver /mnt/sdb/qemu-new/qemu_test/qemu/block.c:1317 | ||
18 | #12 0x55d7eac3e990 in bdrv_open_common /mnt/sdb/qemu-new/qemu_test/qemu/block.c:1575 | ||
19 | #13 0x55d7eac4442c in bdrv_open_inherit /mnt/sdb/qemu-new/qemu_test/qemu/block.c:3126 | ||
20 | #14 0x55d7eac45c3f in bdrv_open /mnt/sdb/qemu-new/qemu_test/qemu/block.c:3219 | ||
21 | #15 0x55d7ead8e8a4 in blk_new_open /mnt/sdb/qemu-new/qemu_test/qemu/block/block-backend.c:397 | ||
22 | #16 0x55d7eacde74c in qcow2_co_create /mnt/sdb/qemu-new/qemu_test/qemu/block/qcow2.c:3534 | ||
23 | #17 0x55d7eacdfa6d in qcow2_co_create_opts /mnt/sdb/qemu-new/qemu_test/qemu/block/qcow2.c:3668 | ||
24 | #18 0x55d7eac1c678 in bdrv_create_co_entry /mnt/sdb/qemu-new/qemu_test/qemu/block.c:485 | ||
25 | #19 0x55d7eb0024d2 in coroutine_trampoline /mnt/sdb/qemu-new/qemu_test/qemu/util/coroutine-ucontext.c:115 | ||
26 | |||
27 | Reported-by: Euler Robot <euler.robot@huawei.com> | ||
28 | Signed-off-by: Pan Nengyuan <pannengyuan@huawei.com> | ||
29 | Reviewed-by: Max Reitz <mreitz@redhat.com> | ||
30 | Message-Id: <20200227012950.12256-2-pannengyuan@huawei.com> | ||
31 | Signed-off-by: Max Reitz <mreitz@redhat.com> | ||
32 | --- | ||
33 | block/qcow2.c | 1 + | ||
34 | 1 file changed, 1 insertion(+) | ||
35 | |||
36 | diff --git a/block/qcow2.c b/block/qcow2.c | ||
37 | index XXXXXXX..XXXXXXX 100644 | ||
38 | --- a/block/qcow2.c | ||
39 | +++ b/block/qcow2.c | ||
40 | @@ -XXX,XX +XXX,XX @@ static void qcow2_close(BlockDriverState *bs) | ||
41 | |||
42 | qcrypto_block_free(s->crypto); | ||
43 | s->crypto = NULL; | ||
44 | + qapi_free_QCryptoBlockOpenOptions(s->crypto_opts); | ||
45 | |||
46 | g_free(s->unknown_header_fields); | ||
47 | cleanup_unknown_header_ext(bs); | ||
48 | -- | ||
49 | 2.24.1 | ||
50 | |||
51 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Pan Nengyuan <pannengyuan@huawei.com> | ||
2 | 1 | ||
3 | collect_image_check() is called twice in img_check(), the filename/format will be alloced without free the original memory. | ||
4 | It is not a big deal since the process will exit anyway, but seems like a clean code and it will remove the warning spotted by asan. | ||
5 | |||
6 | Reported-by: Euler Robot <euler.robot@huawei.com> | ||
7 | Signed-off-by: Pan Nengyuan <pannengyuan@huawei.com> | ||
8 | Message-Id: <20200227012950.12256-3-pannengyuan@huawei.com> | ||
9 | Signed-off-by: Max Reitz <mreitz@redhat.com> | ||
10 | --- | ||
11 | qemu-img.c | 2 ++ | ||
12 | 1 file changed, 2 insertions(+) | ||
13 | |||
14 | diff --git a/qemu-img.c b/qemu-img.c | ||
15 | index XXXXXXX..XXXXXXX 100644 | ||
16 | --- a/qemu-img.c | ||
17 | +++ b/qemu-img.c | ||
18 | @@ -XXX,XX +XXX,XX @@ static int img_check(int argc, char **argv) | ||
19 | check->corruptions_fixed); | ||
20 | } | ||
21 | |||
22 | + qapi_free_ImageCheck(check); | ||
23 | + check = g_new0(ImageCheck, 1); | ||
24 | ret = collect_image_check(bs, check, filename, fmt, 0); | ||
25 | |||
26 | check->leaks_fixed = leaks_fixed; | ||
27 | -- | ||
28 | 2.24.1 | ||
29 | |||
30 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
2 | 1 | ||
3 | On success path we return what inflate() returns instead of 0. And it | ||
4 | most probably works for Z_STREAM_END as it is positive, but is | ||
5 | definitely broken for Z_BUF_ERROR. | ||
6 | |||
7 | While being here, switch to errno return code, to be closer to | ||
8 | qcow2_compress API (and usual expectations). | ||
9 | |||
10 | Revert condition in if to be more positive. Drop dead initialization of | ||
11 | ret. | ||
12 | |||
13 | Cc: qemu-stable@nongnu.org # v4.0 | ||
14 | Fixes: 341926ab83e2b | ||
15 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
16 | Message-Id: <20200302150930.16218-1-vsementsov@virtuozzo.com> | ||
17 | Reviewed-by: Alberto Garcia <berto@igalia.com> | ||
18 | Reviewed-by: Ján Tomko <jtomko@redhat.com> | ||
19 | Signed-off-by: Max Reitz <mreitz@redhat.com> | ||
20 | --- | ||
21 | block/qcow2-threads.c | 12 +++++++----- | ||
22 | 1 file changed, 7 insertions(+), 5 deletions(-) | ||
23 | |||
24 | diff --git a/block/qcow2-threads.c b/block/qcow2-threads.c | ||
25 | index XXXXXXX..XXXXXXX 100644 | ||
26 | --- a/block/qcow2-threads.c | ||
27 | +++ b/block/qcow2-threads.c | ||
28 | @@ -XXX,XX +XXX,XX @@ static ssize_t qcow2_compress(void *dest, size_t dest_size, | ||
29 | * @src - source buffer, @src_size bytes | ||
30 | * | ||
31 | * Returns: 0 on success | ||
32 | - * -1 on fail | ||
33 | + * -EIO on fail | ||
34 | */ | ||
35 | static ssize_t qcow2_decompress(void *dest, size_t dest_size, | ||
36 | const void *src, size_t src_size) | ||
37 | { | ||
38 | - int ret = 0; | ||
39 | + int ret; | ||
40 | z_stream strm; | ||
41 | |||
42 | memset(&strm, 0, sizeof(strm)); | ||
43 | @@ -XXX,XX +XXX,XX @@ static ssize_t qcow2_decompress(void *dest, size_t dest_size, | ||
44 | |||
45 | ret = inflateInit2(&strm, -12); | ||
46 | if (ret != Z_OK) { | ||
47 | - return -1; | ||
48 | + return -EIO; | ||
49 | } | ||
50 | |||
51 | ret = inflate(&strm, Z_FINISH); | ||
52 | - if ((ret != Z_STREAM_END && ret != Z_BUF_ERROR) || strm.avail_out != 0) { | ||
53 | + if ((ret == Z_STREAM_END || ret == Z_BUF_ERROR) && strm.avail_out == 0) { | ||
54 | /* | ||
55 | * We approve Z_BUF_ERROR because we need @dest buffer to be filled, but | ||
56 | * @src buffer may be processed partly (because in qcow2 we know size of | ||
57 | * compressed data with precision of one sector) | ||
58 | */ | ||
59 | - ret = -1; | ||
60 | + ret = 0; | ||
61 | + } else { | ||
62 | + ret = -EIO; | ||
63 | } | ||
64 | |||
65 | inflateEnd(&strm); | ||
66 | -- | ||
67 | 2.24.1 | ||
68 | |||
69 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
2 | 1 | ||
3 | We need it in separate to pass to the block-copy object in the next | ||
4 | commit. | ||
5 | |||
6 | Cc: qemu-stable@nongnu.org | ||
7 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
8 | Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com> | ||
9 | Reviewed-by: Max Reitz <mreitz@redhat.com> | ||
10 | Message-Id: <20200311103004.7649-2-vsementsov@virtuozzo.com> | ||
11 | Signed-off-by: Max Reitz <mreitz@redhat.com> | ||
12 | --- | ||
13 | blockjob.c | 16 +++++----- | ||
14 | include/qemu/job.h | 11 ++----- | ||
15 | include/qemu/progress_meter.h | 58 +++++++++++++++++++++++++++++++++++ | ||
16 | job-qmp.c | 4 +-- | ||
17 | job.c | 6 ++-- | ||
18 | qemu-img.c | 6 ++-- | ||
19 | 6 files changed, 76 insertions(+), 25 deletions(-) | ||
20 | create mode 100644 include/qemu/progress_meter.h | ||
21 | |||
22 | diff --git a/blockjob.c b/blockjob.c | ||
23 | index XXXXXXX..XXXXXXX 100644 | ||
24 | --- a/blockjob.c | ||
25 | +++ b/blockjob.c | ||
26 | @@ -XXX,XX +XXX,XX @@ BlockJobInfo *block_job_query(BlockJob *job, Error **errp) | ||
27 | info->device = g_strdup(job->job.id); | ||
28 | info->busy = atomic_read(&job->job.busy); | ||
29 | info->paused = job->job.pause_count > 0; | ||
30 | - info->offset = job->job.progress_current; | ||
31 | - info->len = job->job.progress_total; | ||
32 | + info->offset = job->job.progress.current; | ||
33 | + info->len = job->job.progress.total; | ||
34 | info->speed = job->speed; | ||
35 | info->io_status = job->iostatus; | ||
36 | info->ready = job_is_ready(&job->job), | ||
37 | @@ -XXX,XX +XXX,XX @@ static void block_job_event_cancelled(Notifier *n, void *opaque) | ||
38 | |||
39 | qapi_event_send_block_job_cancelled(job_type(&job->job), | ||
40 | job->job.id, | ||
41 | - job->job.progress_total, | ||
42 | - job->job.progress_current, | ||
43 | + job->job.progress.total, | ||
44 | + job->job.progress.current, | ||
45 | job->speed); | ||
46 | } | ||
47 | |||
48 | @@ -XXX,XX +XXX,XX @@ static void block_job_event_completed(Notifier *n, void *opaque) | ||
49 | |||
50 | qapi_event_send_block_job_completed(job_type(&job->job), | ||
51 | job->job.id, | ||
52 | - job->job.progress_total, | ||
53 | - job->job.progress_current, | ||
54 | + job->job.progress.total, | ||
55 | + job->job.progress.current, | ||
56 | job->speed, | ||
57 | !!msg, | ||
58 | msg); | ||
59 | @@ -XXX,XX +XXX,XX @@ static void block_job_event_ready(Notifier *n, void *opaque) | ||
60 | |||
61 | qapi_event_send_block_job_ready(job_type(&job->job), | ||
62 | job->job.id, | ||
63 | - job->job.progress_total, | ||
64 | - job->job.progress_current, | ||
65 | + job->job.progress.total, | ||
66 | + job->job.progress.current, | ||
67 | job->speed); | ||
68 | } | ||
69 | |||
70 | diff --git a/include/qemu/job.h b/include/qemu/job.h | ||
71 | index XXXXXXX..XXXXXXX 100644 | ||
72 | --- a/include/qemu/job.h | ||
73 | +++ b/include/qemu/job.h | ||
74 | @@ -XXX,XX +XXX,XX @@ | ||
75 | |||
76 | #include "qapi/qapi-types-job.h" | ||
77 | #include "qemu/queue.h" | ||
78 | +#include "qemu/progress_meter.h" | ||
79 | #include "qemu/coroutine.h" | ||
80 | #include "block/aio.h" | ||
81 | |||
82 | @@ -XXX,XX +XXX,XX @@ typedef struct Job { | ||
83 | /** True if this job should automatically dismiss itself */ | ||
84 | bool auto_dismiss; | ||
85 | |||
86 | - /** | ||
87 | - * Current progress. The unit is arbitrary as long as the ratio between | ||
88 | - * progress_current and progress_total represents the estimated percentage | ||
89 | - * of work already done. | ||
90 | - */ | ||
91 | - int64_t progress_current; | ||
92 | - | ||
93 | - /** Estimated progress_current value at the completion of the job */ | ||
94 | - int64_t progress_total; | ||
95 | + ProgressMeter progress; | ||
96 | |||
97 | /** | ||
98 | * Return code from @run and/or @prepare callback(s). | ||
99 | diff --git a/include/qemu/progress_meter.h b/include/qemu/progress_meter.h | ||
100 | new file mode 100644 | ||
101 | index XXXXXXX..XXXXXXX | ||
102 | --- /dev/null | ||
103 | +++ b/include/qemu/progress_meter.h | ||
104 | @@ -XXX,XX +XXX,XX @@ | ||
105 | +/* | ||
106 | + * Helper functionality for some process progress tracking. | ||
107 | + * | ||
108 | + * Copyright (c) 2011 IBM Corp. | ||
109 | + * Copyright (c) 2012, 2018 Red Hat, Inc. | ||
110 | + * Copyright (c) 2020 Virtuozzo International GmbH | ||
111 | + * | ||
112 | + * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
113 | + * of this software and associated documentation files (the "Software"), to deal | ||
114 | + * in the Software without restriction, including without limitation the rights | ||
115 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
116 | + * copies of the Software, and to permit persons to whom the Software is | ||
117 | + * furnished to do so, subject to the following conditions: | ||
118 | + * | ||
119 | + * The above copyright notice and this permission notice shall be included in | ||
120 | + * all copies or substantial portions of the Software. | ||
121 | + * | ||
122 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
123 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
124 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
125 | + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
126 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
127 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
128 | + * THE SOFTWARE. | ||
129 | + */ | ||
130 | + | ||
131 | +#ifndef QEMU_PROGRESS_METER_H | ||
132 | +#define QEMU_PROGRESS_METER_H | ||
133 | + | ||
134 | +typedef struct ProgressMeter { | ||
135 | + /** | ||
136 | + * Current progress. The unit is arbitrary as long as the ratio between | ||
137 | + * current and total represents the estimated percentage | ||
138 | + * of work already done. | ||
139 | + */ | ||
140 | + uint64_t current; | ||
141 | + | ||
142 | + /** Estimated current value at the completion of the process */ | ||
143 | + uint64_t total; | ||
144 | +} ProgressMeter; | ||
145 | + | ||
146 | +static inline void progress_work_done(ProgressMeter *pm, uint64_t done) | ||
147 | +{ | ||
148 | + pm->current += done; | ||
149 | +} | ||
150 | + | ||
151 | +static inline void progress_set_remaining(ProgressMeter *pm, uint64_t remaining) | ||
152 | +{ | ||
153 | + pm->total = pm->current + remaining; | ||
154 | +} | ||
155 | + | ||
156 | +static inline void progress_increase_remaining(ProgressMeter *pm, | ||
157 | + uint64_t delta) | ||
158 | +{ | ||
159 | + pm->total += delta; | ||
160 | +} | ||
161 | + | ||
162 | +#endif /* QEMU_PROGRESS_METER_H */ | ||
163 | diff --git a/job-qmp.c b/job-qmp.c | ||
164 | index XXXXXXX..XXXXXXX 100644 | ||
165 | --- a/job-qmp.c | ||
166 | +++ b/job-qmp.c | ||
167 | @@ -XXX,XX +XXX,XX @@ static JobInfo *job_query_single(Job *job, Error **errp) | ||
168 | .id = g_strdup(job->id), | ||
169 | .type = job_type(job), | ||
170 | .status = job->status, | ||
171 | - .current_progress = job->progress_current, | ||
172 | - .total_progress = job->progress_total, | ||
173 | + .current_progress = job->progress.current, | ||
174 | + .total_progress = job->progress.total, | ||
175 | .has_error = !!job->err, | ||
176 | .error = job->err ? \ | ||
177 | g_strdup(error_get_pretty(job->err)) : NULL, | ||
178 | diff --git a/job.c b/job.c | ||
179 | index XXXXXXX..XXXXXXX 100644 | ||
180 | --- a/job.c | ||
181 | +++ b/job.c | ||
182 | @@ -XXX,XX +XXX,XX @@ void job_unref(Job *job) | ||
183 | |||
184 | void job_progress_update(Job *job, uint64_t done) | ||
185 | { | ||
186 | - job->progress_current += done; | ||
187 | + progress_work_done(&job->progress, done); | ||
188 | } | ||
189 | |||
190 | void job_progress_set_remaining(Job *job, uint64_t remaining) | ||
191 | { | ||
192 | - job->progress_total = job->progress_current + remaining; | ||
193 | + progress_set_remaining(&job->progress, remaining); | ||
194 | } | ||
195 | |||
196 | void job_progress_increase_remaining(Job *job, uint64_t delta) | ||
197 | { | ||
198 | - job->progress_total += delta; | ||
199 | + progress_increase_remaining(&job->progress, delta); | ||
200 | } | ||
201 | |||
202 | void job_event_cancelled(Job *job) | ||
203 | diff --git a/qemu-img.c b/qemu-img.c | ||
204 | index XXXXXXX..XXXXXXX 100644 | ||
205 | --- a/qemu-img.c | ||
206 | +++ b/qemu-img.c | ||
207 | @@ -XXX,XX +XXX,XX @@ static void run_block_job(BlockJob *job, Error **errp) | ||
208 | do { | ||
209 | float progress = 0.0f; | ||
210 | aio_poll(aio_context, true); | ||
211 | - if (job->job.progress_total) { | ||
212 | - progress = (float)job->job.progress_current / | ||
213 | - job->job.progress_total * 100.f; | ||
214 | + if (job->job.progress.total) { | ||
215 | + progress = (float)job->job.progress.current / | ||
216 | + job->job.progress.total * 100.f; | ||
217 | } | ||
218 | qemu_progress_print(progress, 0); | ||
219 | } while (!job_is_ready(&job->job) && !job_is_completed(&job->job)); | ||
220 | -- | ||
221 | 2.24.1 | ||
222 | |||
223 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
2 | 1 | ||
3 | Assume we have two regions, A and B, and region B is in-flight now, | ||
4 | region A is not yet touched, but it is unallocated and should be | ||
5 | skipped. | ||
6 | |||
7 | Correspondingly, as progress we have | ||
8 | |||
9 | total = A + B | ||
10 | current = 0 | ||
11 | |||
12 | If we reset unallocated region A and call progress_reset_callback, | ||
13 | it will calculate 0 bytes dirty in the bitmap and call | ||
14 | job_progress_set_remaining, which will set | ||
15 | |||
16 | total = current + 0 = 0 + 0 = 0 | ||
17 | |||
18 | So, B bytes are actually removed from total accounting. When job | ||
19 | finishes we'll have | ||
20 | |||
21 | total = 0 | ||
22 | current = B | ||
23 | |||
24 | , which doesn't sound good. | ||
25 | |||
26 | This is because we didn't considered in-flight bytes, actually when | ||
27 | calculating remaining, we should have set (in_flight + dirty_bytes) | ||
28 | as remaining, not only dirty_bytes. | ||
29 | |||
30 | To fix it, let's refactor progress calculation, moving it to block-copy | ||
31 | itself instead of fixing callback. And, of course, track in_flight | ||
32 | bytes count. | ||
33 | |||
34 | We still have to keep one callback, to maintain backup job bytes_read | ||
35 | calculation, but it will go on soon, when we turn the whole backup | ||
36 | process into one block_copy call. | ||
37 | |||
38 | Cc: qemu-stable@nongnu.org | ||
39 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
40 | Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com> | ||
41 | Message-Id: <20200311103004.7649-3-vsementsov@virtuozzo.com> | ||
42 | Signed-off-by: Max Reitz <mreitz@redhat.com> | ||
43 | --- | ||
44 | block/backup.c | 13 ++----------- | ||
45 | block/block-copy.c | 16 ++++++++++++---- | ||
46 | include/block/block-copy.h | 15 +++++---------- | ||
47 | 3 files changed, 19 insertions(+), 25 deletions(-) | ||
48 | |||
49 | diff --git a/block/backup.c b/block/backup.c | ||
50 | index XXXXXXX..XXXXXXX 100644 | ||
51 | --- a/block/backup.c | ||
52 | +++ b/block/backup.c | ||
53 | @@ -XXX,XX +XXX,XX @@ static void backup_progress_bytes_callback(int64_t bytes, void *opaque) | ||
54 | BackupBlockJob *s = opaque; | ||
55 | |||
56 | s->bytes_read += bytes; | ||
57 | - job_progress_update(&s->common.job, bytes); | ||
58 | -} | ||
59 | - | ||
60 | -static void backup_progress_reset_callback(void *opaque) | ||
61 | -{ | ||
62 | - BackupBlockJob *s = opaque; | ||
63 | - uint64_t estimate = bdrv_get_dirty_count(s->bcs->copy_bitmap); | ||
64 | - | ||
65 | - job_progress_set_remaining(&s->common.job, estimate); | ||
66 | } | ||
67 | |||
68 | static int coroutine_fn backup_do_cow(BackupBlockJob *job, | ||
69 | @@ -XXX,XX +XXX,XX @@ BlockJob *backup_job_create(const char *job_id, BlockDriverState *bs, | ||
70 | job->cluster_size = cluster_size; | ||
71 | job->len = len; | ||
72 | |||
73 | - block_copy_set_callbacks(bcs, backup_progress_bytes_callback, | ||
74 | - backup_progress_reset_callback, job); | ||
75 | + block_copy_set_progress_callback(bcs, backup_progress_bytes_callback, job); | ||
76 | + block_copy_set_progress_meter(bcs, &job->common.job.progress); | ||
77 | |||
78 | /* Required permissions are already taken by backup-top target */ | ||
79 | block_job_add_bdrv(&job->common, "target", target, 0, BLK_PERM_ALL, | ||
80 | diff --git a/block/block-copy.c b/block/block-copy.c | ||
81 | index XXXXXXX..XXXXXXX 100644 | ||
82 | --- a/block/block-copy.c | ||
83 | +++ b/block/block-copy.c | ||
84 | @@ -XXX,XX +XXX,XX @@ BlockCopyState *block_copy_state_new(BdrvChild *source, BdrvChild *target, | ||
85 | return s; | ||
86 | } | ||
87 | |||
88 | -void block_copy_set_callbacks( | ||
89 | +void block_copy_set_progress_callback( | ||
90 | BlockCopyState *s, | ||
91 | ProgressBytesCallbackFunc progress_bytes_callback, | ||
92 | - ProgressResetCallbackFunc progress_reset_callback, | ||
93 | void *progress_opaque) | ||
94 | { | ||
95 | s->progress_bytes_callback = progress_bytes_callback; | ||
96 | - s->progress_reset_callback = progress_reset_callback; | ||
97 | s->progress_opaque = progress_opaque; | ||
98 | } | ||
99 | |||
100 | +void block_copy_set_progress_meter(BlockCopyState *s, ProgressMeter *pm) | ||
101 | +{ | ||
102 | + s->progress = pm; | ||
103 | +} | ||
104 | + | ||
105 | /* | ||
106 | * block_copy_do_copy | ||
107 | * | ||
108 | @@ -XXX,XX +XXX,XX @@ int64_t block_copy_reset_unallocated(BlockCopyState *s, | ||
109 | |||
110 | if (!ret) { | ||
111 | bdrv_reset_dirty_bitmap(s->copy_bitmap, offset, bytes); | ||
112 | - s->progress_reset_callback(s->progress_opaque); | ||
113 | + progress_set_remaining(s->progress, | ||
114 | + bdrv_get_dirty_count(s->copy_bitmap) + | ||
115 | + s->in_flight_bytes); | ||
116 | } | ||
117 | |||
118 | *count = bytes; | ||
119 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, | ||
120 | trace_block_copy_process(s, start); | ||
121 | |||
122 | bdrv_reset_dirty_bitmap(s->copy_bitmap, start, chunk_end - start); | ||
123 | + s->in_flight_bytes += chunk_end - start; | ||
124 | |||
125 | co_get_from_shres(s->mem, chunk_end - start); | ||
126 | ret = block_copy_do_copy(s, start, chunk_end, error_is_read); | ||
127 | co_put_to_shres(s->mem, chunk_end - start); | ||
128 | + s->in_flight_bytes -= chunk_end - start; | ||
129 | if (ret < 0) { | ||
130 | bdrv_set_dirty_bitmap(s->copy_bitmap, start, chunk_end - start); | ||
131 | break; | ||
132 | } | ||
133 | |||
134 | + progress_work_done(s->progress, chunk_end - start); | ||
135 | s->progress_bytes_callback(chunk_end - start, s->progress_opaque); | ||
136 | start = chunk_end; | ||
137 | ret = 0; | ||
138 | diff --git a/include/block/block-copy.h b/include/block/block-copy.h | ||
139 | index XXXXXXX..XXXXXXX 100644 | ||
140 | --- a/include/block/block-copy.h | ||
141 | +++ b/include/block/block-copy.h | ||
142 | @@ -XXX,XX +XXX,XX @@ typedef struct BlockCopyInFlightReq { | ||
143 | } BlockCopyInFlightReq; | ||
144 | |||
145 | typedef void (*ProgressBytesCallbackFunc)(int64_t bytes, void *opaque); | ||
146 | -typedef void (*ProgressResetCallbackFunc)(void *opaque); | ||
147 | typedef struct BlockCopyState { | ||
148 | /* | ||
149 | * BdrvChild objects are not owned or managed by block-copy. They are | ||
150 | @@ -XXX,XX +XXX,XX @@ typedef struct BlockCopyState { | ||
151 | BdrvChild *source; | ||
152 | BdrvChild *target; | ||
153 | BdrvDirtyBitmap *copy_bitmap; | ||
154 | + int64_t in_flight_bytes; | ||
155 | int64_t cluster_size; | ||
156 | bool use_copy_range; | ||
157 | int64_t copy_size; | ||
158 | @@ -XXX,XX +XXX,XX @@ typedef struct BlockCopyState { | ||
159 | */ | ||
160 | bool skip_unallocated; | ||
161 | |||
162 | + ProgressMeter *progress; | ||
163 | /* progress_bytes_callback: called when some copying progress is done. */ | ||
164 | ProgressBytesCallbackFunc progress_bytes_callback; | ||
165 | - | ||
166 | - /* | ||
167 | - * progress_reset_callback: called when some bytes reset from copy_bitmap | ||
168 | - * (see @skip_unallocated above). The callee is assumed to recalculate how | ||
169 | - * many bytes remain based on the dirty bit count of copy_bitmap. | ||
170 | - */ | ||
171 | - ProgressResetCallbackFunc progress_reset_callback; | ||
172 | void *progress_opaque; | ||
173 | |||
174 | SharedResource *mem; | ||
175 | @@ -XXX,XX +XXX,XX @@ BlockCopyState *block_copy_state_new(BdrvChild *source, BdrvChild *target, | ||
176 | BdrvRequestFlags write_flags, | ||
177 | Error **errp); | ||
178 | |||
179 | -void block_copy_set_callbacks( | ||
180 | +void block_copy_set_progress_callback( | ||
181 | BlockCopyState *s, | ||
182 | ProgressBytesCallbackFunc progress_bytes_callback, | ||
183 | - ProgressResetCallbackFunc progress_reset_callback, | ||
184 | void *progress_opaque); | ||
185 | |||
186 | +void block_copy_set_progress_meter(BlockCopyState *s, ProgressMeter *pm); | ||
187 | + | ||
188 | void block_copy_state_free(BlockCopyState *s); | ||
189 | |||
190 | int64_t block_copy_reset_unallocated(BlockCopyState *s, | ||
191 | -- | ||
192 | 2.24.1 | ||
193 | |||
194 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
2 | 1 | ||
3 | In block_copy_do_copy we fallback to read+write if copy_range failed. | ||
4 | In this case copy_size is larger than defined for buffered IO, and | ||
5 | there is corresponding commit. Still, backup copies data cluster by | ||
6 | cluster, and most of requests are limited to one cluster anyway, so the | ||
7 | only source of this one bad-limited request is copy-before-write | ||
8 | operation. | ||
9 | |||
10 | Further patch will move backup to use block_copy directly, than for | ||
11 | cases where copy_range is not supported, first request will be | ||
12 | oversized in each backup. It's not good, let's change it now. | ||
13 | |||
14 | Fix is simple: just limit first copy_range request like buffer-based | ||
15 | request. If it succeed, set larger copy_range limit. | ||
16 | |||
17 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
18 | Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com> | ||
19 | Reviewed-by: Max Reitz <mreitz@redhat.com> | ||
20 | Message-Id: <20200311103004.7649-4-vsementsov@virtuozzo.com> | ||
21 | Signed-off-by: Max Reitz <mreitz@redhat.com> | ||
22 | --- | ||
23 | block/block-copy.c | 41 +++++++++++++++++++++++++++++++---------- | ||
24 | 1 file changed, 31 insertions(+), 10 deletions(-) | ||
25 | |||
26 | diff --git a/block/block-copy.c b/block/block-copy.c | ||
27 | index XXXXXXX..XXXXXXX 100644 | ||
28 | --- a/block/block-copy.c | ||
29 | +++ b/block/block-copy.c | ||
30 | @@ -XXX,XX +XXX,XX @@ void block_copy_state_free(BlockCopyState *s) | ||
31 | g_free(s); | ||
32 | } | ||
33 | |||
34 | +static uint32_t block_copy_max_transfer(BdrvChild *source, BdrvChild *target) | ||
35 | +{ | ||
36 | + return MIN_NON_ZERO(INT_MAX, | ||
37 | + MIN_NON_ZERO(source->bs->bl.max_transfer, | ||
38 | + target->bs->bl.max_transfer)); | ||
39 | +} | ||
40 | + | ||
41 | BlockCopyState *block_copy_state_new(BdrvChild *source, BdrvChild *target, | ||
42 | int64_t cluster_size, | ||
43 | BdrvRequestFlags write_flags, Error **errp) | ||
44 | { | ||
45 | BlockCopyState *s; | ||
46 | BdrvDirtyBitmap *copy_bitmap; | ||
47 | - uint32_t max_transfer = | ||
48 | - MIN_NON_ZERO(INT_MAX, | ||
49 | - MIN_NON_ZERO(source->bs->bl.max_transfer, | ||
50 | - target->bs->bl.max_transfer)); | ||
51 | |||
52 | copy_bitmap = bdrv_create_dirty_bitmap(source->bs, cluster_size, NULL, | ||
53 | errp); | ||
54 | @@ -XXX,XX +XXX,XX @@ BlockCopyState *block_copy_state_new(BdrvChild *source, BdrvChild *target, | ||
55 | .mem = shres_create(BLOCK_COPY_MAX_MEM), | ||
56 | }; | ||
57 | |||
58 | - if (max_transfer < cluster_size) { | ||
59 | + if (block_copy_max_transfer(source, target) < cluster_size) { | ||
60 | /* | ||
61 | * copy_range does not respect max_transfer. We don't want to bother | ||
62 | * with requests smaller than block-copy cluster size, so fallback to | ||
63 | @@ -XXX,XX +XXX,XX @@ BlockCopyState *block_copy_state_new(BdrvChild *source, BdrvChild *target, | ||
64 | s->copy_size = cluster_size; | ||
65 | } else { | ||
66 | /* | ||
67 | - * copy_range does not respect max_transfer (it's a TODO), so we factor | ||
68 | - * that in here. | ||
69 | + * We enable copy-range, but keep small copy_size, until first | ||
70 | + * successful copy_range (look at block_copy_do_copy). | ||
71 | */ | ||
72 | s->use_copy_range = true; | ||
73 | - s->copy_size = MIN(MAX(cluster_size, BLOCK_COPY_MAX_COPY_RANGE), | ||
74 | - QEMU_ALIGN_DOWN(max_transfer, cluster_size)); | ||
75 | + s->copy_size = MAX(s->cluster_size, BLOCK_COPY_MAX_BUFFER); | ||
76 | } | ||
77 | |||
78 | QLIST_INIT(&s->inflight_reqs); | ||
79 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn block_copy_do_copy(BlockCopyState *s, | ||
80 | s->copy_size = MAX(s->cluster_size, BLOCK_COPY_MAX_BUFFER); | ||
81 | /* Fallback to read+write with allocated buffer */ | ||
82 | } else { | ||
83 | + if (s->use_copy_range) { | ||
84 | + /* | ||
85 | + * Successful copy-range. Now increase copy_size. copy_range | ||
86 | + * does not respect max_transfer (it's a TODO), so we factor | ||
87 | + * that in here. | ||
88 | + * | ||
89 | + * Note: we double-check s->use_copy_range for the case when | ||
90 | + * parallel block-copy request unsets it during previous | ||
91 | + * bdrv_co_copy_range call. | ||
92 | + */ | ||
93 | + s->copy_size = | ||
94 | + MIN(MAX(s->cluster_size, BLOCK_COPY_MAX_COPY_RANGE), | ||
95 | + QEMU_ALIGN_DOWN(block_copy_max_transfer(s->source, | ||
96 | + s->target), | ||
97 | + s->cluster_size)); | ||
98 | + } | ||
99 | goto out; | ||
100 | } | ||
101 | } | ||
102 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn block_copy_do_copy(BlockCopyState *s, | ||
103 | /* | ||
104 | * In case of failed copy_range request above, we may proceed with buffered | ||
105 | * request larger than BLOCK_COPY_MAX_BUFFER. Still, further requests will | ||
106 | - * be properly limited, so don't care too much. | ||
107 | + * be properly limited, so don't care too much. Moreover the most likely | ||
108 | + * case (copy_range is unsupported for the configuration, so the very first | ||
109 | + * copy_range request fails) is handled by setting large copy_size only | ||
110 | + * after first successful copy_range. | ||
111 | */ | ||
112 | |||
113 | bounce_buffer = qemu_blockalign(s->source->bs, nbytes); | ||
114 | -- | ||
115 | 2.24.1 | ||
116 | |||
117 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
2 | 1 | ||
3 | Use bdrv_block_status_above to chose effective chunk size and to handle | ||
4 | zeroes effectively. | ||
5 | |||
6 | This substitutes checking for just being allocated or not, and drops | ||
7 | old code path for it. Assistance by backup job is dropped too, as | ||
8 | caching block-status information is more difficult than just caching | ||
9 | is-allocated information in our dirty bitmap, and backup job is not | ||
10 | good place for this caching anyway. | ||
11 | |||
12 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
13 | Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com> | ||
14 | Reviewed-by: Max Reitz <mreitz@redhat.com> | ||
15 | Message-Id: <20200311103004.7649-5-vsementsov@virtuozzo.com> | ||
16 | Signed-off-by: Max Reitz <mreitz@redhat.com> | ||
17 | --- | ||
18 | block/block-copy.c | 73 +++++++++++++++++++++++++++++++++++++--------- | ||
19 | block/trace-events | 1 + | ||
20 | 2 files changed, 61 insertions(+), 13 deletions(-) | ||
21 | |||
22 | diff --git a/block/block-copy.c b/block/block-copy.c | ||
23 | index XXXXXXX..XXXXXXX 100644 | ||
24 | --- a/block/block-copy.c | ||
25 | +++ b/block/block-copy.c | ||
26 | @@ -XXX,XX +XXX,XX @@ void block_copy_set_progress_meter(BlockCopyState *s, ProgressMeter *pm) | ||
27 | */ | ||
28 | static int coroutine_fn block_copy_do_copy(BlockCopyState *s, | ||
29 | int64_t start, int64_t end, | ||
30 | - bool *error_is_read) | ||
31 | + bool zeroes, bool *error_is_read) | ||
32 | { | ||
33 | int ret; | ||
34 | int nbytes = MIN(end, s->len) - start; | ||
35 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn block_copy_do_copy(BlockCopyState *s, | ||
36 | assert(QEMU_IS_ALIGNED(end, s->cluster_size)); | ||
37 | assert(end < s->len || end == QEMU_ALIGN_UP(s->len, s->cluster_size)); | ||
38 | |||
39 | + if (zeroes) { | ||
40 | + ret = bdrv_co_pwrite_zeroes(s->target, start, nbytes, s->write_flags & | ||
41 | + ~BDRV_REQ_WRITE_COMPRESSED); | ||
42 | + if (ret < 0) { | ||
43 | + trace_block_copy_write_zeroes_fail(s, start, ret); | ||
44 | + if (error_is_read) { | ||
45 | + *error_is_read = false; | ||
46 | + } | ||
47 | + } | ||
48 | + return ret; | ||
49 | + } | ||
50 | + | ||
51 | if (s->use_copy_range) { | ||
52 | ret = bdrv_co_copy_range(s->source, start, s->target, start, nbytes, | ||
53 | 0, s->write_flags); | ||
54 | @@ -XXX,XX +XXX,XX @@ out: | ||
55 | return ret; | ||
56 | } | ||
57 | |||
58 | +static int block_copy_block_status(BlockCopyState *s, int64_t offset, | ||
59 | + int64_t bytes, int64_t *pnum) | ||
60 | +{ | ||
61 | + int64_t num; | ||
62 | + BlockDriverState *base; | ||
63 | + int ret; | ||
64 | + | ||
65 | + if (s->skip_unallocated && s->source->bs->backing) { | ||
66 | + base = s->source->bs->backing->bs; | ||
67 | + } else { | ||
68 | + base = NULL; | ||
69 | + } | ||
70 | + | ||
71 | + ret = bdrv_block_status_above(s->source->bs, base, offset, bytes, &num, | ||
72 | + NULL, NULL); | ||
73 | + if (ret < 0 || num < s->cluster_size) { | ||
74 | + /* | ||
75 | + * On error or if failed to obtain large enough chunk just fallback to | ||
76 | + * copy one cluster. | ||
77 | + */ | ||
78 | + num = s->cluster_size; | ||
79 | + ret = BDRV_BLOCK_ALLOCATED | BDRV_BLOCK_DATA; | ||
80 | + } else if (offset + num == s->len) { | ||
81 | + num = QEMU_ALIGN_UP(num, s->cluster_size); | ||
82 | + } else { | ||
83 | + num = QEMU_ALIGN_DOWN(num, s->cluster_size); | ||
84 | + } | ||
85 | + | ||
86 | + *pnum = num; | ||
87 | + return ret; | ||
88 | +} | ||
89 | + | ||
90 | /* | ||
91 | * Check if the cluster starting at offset is allocated or not. | ||
92 | * return via pnum the number of contiguous clusters sharing this allocation. | ||
93 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, | ||
94 | { | ||
95 | int ret = 0; | ||
96 | int64_t end = bytes + start; /* bytes */ | ||
97 | - int64_t status_bytes; | ||
98 | BlockCopyInFlightReq req; | ||
99 | |||
100 | /* | ||
101 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, | ||
102 | block_copy_inflight_req_begin(s, &req, start, end); | ||
103 | |||
104 | while (start < end) { | ||
105 | - int64_t next_zero, chunk_end; | ||
106 | + int64_t next_zero, chunk_end, status_bytes; | ||
107 | |||
108 | if (!bdrv_dirty_bitmap_get(s->copy_bitmap, start)) { | ||
109 | trace_block_copy_skip(s, start); | ||
110 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, | ||
111 | chunk_end = next_zero; | ||
112 | } | ||
113 | |||
114 | - if (s->skip_unallocated) { | ||
115 | - ret = block_copy_reset_unallocated(s, start, &status_bytes); | ||
116 | - if (ret == 0) { | ||
117 | - trace_block_copy_skip_range(s, start, status_bytes); | ||
118 | - start += status_bytes; | ||
119 | - continue; | ||
120 | - } | ||
121 | - /* Clamp to known allocated region */ | ||
122 | - chunk_end = MIN(chunk_end, start + status_bytes); | ||
123 | + ret = block_copy_block_status(s, start, chunk_end - start, | ||
124 | + &status_bytes); | ||
125 | + if (s->skip_unallocated && !(ret & BDRV_BLOCK_ALLOCATED)) { | ||
126 | + bdrv_reset_dirty_bitmap(s->copy_bitmap, start, status_bytes); | ||
127 | + progress_set_remaining(s->progress, | ||
128 | + bdrv_get_dirty_count(s->copy_bitmap) + | ||
129 | + s->in_flight_bytes); | ||
130 | + trace_block_copy_skip_range(s, start, status_bytes); | ||
131 | + start += status_bytes; | ||
132 | + continue; | ||
133 | } | ||
134 | |||
135 | + chunk_end = MIN(chunk_end, start + status_bytes); | ||
136 | + | ||
137 | trace_block_copy_process(s, start); | ||
138 | |||
139 | bdrv_reset_dirty_bitmap(s->copy_bitmap, start, chunk_end - start); | ||
140 | s->in_flight_bytes += chunk_end - start; | ||
141 | |||
142 | co_get_from_shres(s->mem, chunk_end - start); | ||
143 | - ret = block_copy_do_copy(s, start, chunk_end, error_is_read); | ||
144 | + ret = block_copy_do_copy(s, start, chunk_end, ret & BDRV_BLOCK_ZERO, | ||
145 | + error_is_read); | ||
146 | co_put_to_shres(s->mem, chunk_end - start); | ||
147 | s->in_flight_bytes -= chunk_end - start; | ||
148 | if (ret < 0) { | ||
149 | diff --git a/block/trace-events b/block/trace-events | ||
150 | index XXXXXXX..XXXXXXX 100644 | ||
151 | --- a/block/trace-events | ||
152 | +++ b/block/trace-events | ||
153 | @@ -XXX,XX +XXX,XX @@ block_copy_process(void *bcs, int64_t start) "bcs %p start %"PRId64 | ||
154 | block_copy_copy_range_fail(void *bcs, int64_t start, int ret) "bcs %p start %"PRId64" ret %d" | ||
155 | block_copy_read_fail(void *bcs, int64_t start, int ret) "bcs %p start %"PRId64" ret %d" | ||
156 | block_copy_write_fail(void *bcs, int64_t start, int ret) "bcs %p start %"PRId64" ret %d" | ||
157 | +block_copy_write_zeroes_fail(void *bcs, int64_t start, int ret) "bcs %p start %"PRId64" ret %d" | ||
158 | |||
159 | # ../blockdev.c | ||
160 | qmp_block_job_cancel(void *job) "job %p" | ||
161 | -- | ||
162 | 2.24.1 | ||
163 | |||
164 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
2 | 1 | ||
3 | Split find_conflicting_inflight_req to be used separately. | ||
4 | |||
5 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
6 | Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com> | ||
7 | Reviewed-by: Max Reitz <mreitz@redhat.com> | ||
8 | Message-Id: <20200311103004.7649-6-vsementsov@virtuozzo.com> | ||
9 | Signed-off-by: Max Reitz <mreitz@redhat.com> | ||
10 | --- | ||
11 | block/block-copy.c | 31 +++++++++++++++++++------------ | ||
12 | 1 file changed, 19 insertions(+), 12 deletions(-) | ||
13 | |||
14 | diff --git a/block/block-copy.c b/block/block-copy.c | ||
15 | index XXXXXXX..XXXXXXX 100644 | ||
16 | --- a/block/block-copy.c | ||
17 | +++ b/block/block-copy.c | ||
18 | @@ -XXX,XX +XXX,XX @@ | ||
19 | #define BLOCK_COPY_MAX_BUFFER (1 * MiB) | ||
20 | #define BLOCK_COPY_MAX_MEM (128 * MiB) | ||
21 | |||
22 | +static BlockCopyInFlightReq *find_conflicting_inflight_req(BlockCopyState *s, | ||
23 | + int64_t start, | ||
24 | + int64_t end) | ||
25 | +{ | ||
26 | + BlockCopyInFlightReq *req; | ||
27 | + | ||
28 | + QLIST_FOREACH(req, &s->inflight_reqs, list) { | ||
29 | + if (end > req->start_byte && start < req->end_byte) { | ||
30 | + return req; | ||
31 | + } | ||
32 | + } | ||
33 | + | ||
34 | + return NULL; | ||
35 | +} | ||
36 | + | ||
37 | static void coroutine_fn block_copy_wait_inflight_reqs(BlockCopyState *s, | ||
38 | int64_t start, | ||
39 | int64_t end) | ||
40 | { | ||
41 | BlockCopyInFlightReq *req; | ||
42 | - bool waited; | ||
43 | - | ||
44 | - do { | ||
45 | - waited = false; | ||
46 | - QLIST_FOREACH(req, &s->inflight_reqs, list) { | ||
47 | - if (end > req->start_byte && start < req->end_byte) { | ||
48 | - qemu_co_queue_wait(&req->wait_queue, NULL); | ||
49 | - waited = true; | ||
50 | - break; | ||
51 | - } | ||
52 | - } | ||
53 | - } while (waited); | ||
54 | + | ||
55 | + while ((req = find_conflicting_inflight_req(s, start, end))) { | ||
56 | + qemu_co_queue_wait(&req->wait_queue, NULL); | ||
57 | + } | ||
58 | } | ||
59 | |||
60 | static void block_copy_inflight_req_begin(BlockCopyState *s, | ||
61 | -- | ||
62 | 2.24.1 | ||
63 | |||
64 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
2 | 1 | ||
3 | We have a lot of "chunk_end - start" invocations, let's switch to | ||
4 | bytes/cur_bytes scheme instead. | ||
5 | |||
6 | While being here, improve check on block_copy_do_copy parameters to not | ||
7 | overflow when calculating nbytes and use int64_t for bytes in | ||
8 | block_copy for consistency. | ||
9 | |||
10 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
11 | Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com> | ||
12 | Reviewed-by: Max Reitz <mreitz@redhat.com> | ||
13 | Message-Id: <20200311103004.7649-7-vsementsov@virtuozzo.com> | ||
14 | Signed-off-by: Max Reitz <mreitz@redhat.com> | ||
15 | --- | ||
16 | block/block-copy.c | 78 ++++++++++++++++++++------------------ | ||
17 | include/block/block-copy.h | 6 +-- | ||
18 | 2 files changed, 44 insertions(+), 40 deletions(-) | ||
19 | |||
20 | diff --git a/block/block-copy.c b/block/block-copy.c | ||
21 | index XXXXXXX..XXXXXXX 100644 | ||
22 | --- a/block/block-copy.c | ||
23 | +++ b/block/block-copy.c | ||
24 | @@ -XXX,XX +XXX,XX @@ | ||
25 | |||
26 | static BlockCopyInFlightReq *find_conflicting_inflight_req(BlockCopyState *s, | ||
27 | int64_t start, | ||
28 | - int64_t end) | ||
29 | + int64_t bytes) | ||
30 | { | ||
31 | BlockCopyInFlightReq *req; | ||
32 | |||
33 | QLIST_FOREACH(req, &s->inflight_reqs, list) { | ||
34 | - if (end > req->start_byte && start < req->end_byte) { | ||
35 | + if (start + bytes > req->start && start < req->start + req->bytes) { | ||
36 | return req; | ||
37 | } | ||
38 | } | ||
39 | @@ -XXX,XX +XXX,XX @@ static BlockCopyInFlightReq *find_conflicting_inflight_req(BlockCopyState *s, | ||
40 | |||
41 | static void coroutine_fn block_copy_wait_inflight_reqs(BlockCopyState *s, | ||
42 | int64_t start, | ||
43 | - int64_t end) | ||
44 | + int64_t bytes) | ||
45 | { | ||
46 | BlockCopyInFlightReq *req; | ||
47 | |||
48 | - while ((req = find_conflicting_inflight_req(s, start, end))) { | ||
49 | + while ((req = find_conflicting_inflight_req(s, start, bytes))) { | ||
50 | qemu_co_queue_wait(&req->wait_queue, NULL); | ||
51 | } | ||
52 | } | ||
53 | |||
54 | static void block_copy_inflight_req_begin(BlockCopyState *s, | ||
55 | BlockCopyInFlightReq *req, | ||
56 | - int64_t start, int64_t end) | ||
57 | + int64_t start, int64_t bytes) | ||
58 | { | ||
59 | - req->start_byte = start; | ||
60 | - req->end_byte = end; | ||
61 | + req->start = start; | ||
62 | + req->bytes = bytes; | ||
63 | qemu_co_queue_init(&req->wait_queue); | ||
64 | QLIST_INSERT_HEAD(&s->inflight_reqs, req, list); | ||
65 | } | ||
66 | @@ -XXX,XX +XXX,XX @@ void block_copy_set_progress_meter(BlockCopyState *s, ProgressMeter *pm) | ||
67 | /* | ||
68 | * block_copy_do_copy | ||
69 | * | ||
70 | - * Do copy of cluser-aligned chunk. @end is allowed to exceed s->len only to | ||
71 | - * cover last cluster when s->len is not aligned to clusters. | ||
72 | + * Do copy of cluster-aligned chunk. Requested region is allowed to exceed | ||
73 | + * s->len only to cover last cluster when s->len is not aligned to clusters. | ||
74 | * | ||
75 | * No sync here: nor bitmap neighter intersecting requests handling, only copy. | ||
76 | * | ||
77 | * Returns 0 on success. | ||
78 | */ | ||
79 | static int coroutine_fn block_copy_do_copy(BlockCopyState *s, | ||
80 | - int64_t start, int64_t end, | ||
81 | + int64_t start, int64_t bytes, | ||
82 | bool zeroes, bool *error_is_read) | ||
83 | { | ||
84 | int ret; | ||
85 | - int nbytes = MIN(end, s->len) - start; | ||
86 | + int64_t nbytes = MIN(start + bytes, s->len) - start; | ||
87 | void *bounce_buffer = NULL; | ||
88 | |||
89 | + assert(start >= 0 && bytes > 0 && INT64_MAX - start >= bytes); | ||
90 | assert(QEMU_IS_ALIGNED(start, s->cluster_size)); | ||
91 | - assert(QEMU_IS_ALIGNED(end, s->cluster_size)); | ||
92 | - assert(end < s->len || end == QEMU_ALIGN_UP(s->len, s->cluster_size)); | ||
93 | + assert(QEMU_IS_ALIGNED(bytes, s->cluster_size)); | ||
94 | + assert(start < s->len); | ||
95 | + assert(start + bytes <= s->len || | ||
96 | + start + bytes == QEMU_ALIGN_UP(s->len, s->cluster_size)); | ||
97 | + assert(nbytes < INT_MAX); | ||
98 | |||
99 | if (zeroes) { | ||
100 | ret = bdrv_co_pwrite_zeroes(s->target, start, nbytes, s->write_flags & | ||
101 | @@ -XXX,XX +XXX,XX @@ int64_t block_copy_reset_unallocated(BlockCopyState *s, | ||
102 | } | ||
103 | |||
104 | int coroutine_fn block_copy(BlockCopyState *s, | ||
105 | - int64_t start, uint64_t bytes, | ||
106 | + int64_t start, int64_t bytes, | ||
107 | bool *error_is_read) | ||
108 | { | ||
109 | int ret = 0; | ||
110 | - int64_t end = bytes + start; /* bytes */ | ||
111 | BlockCopyInFlightReq req; | ||
112 | |||
113 | /* | ||
114 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, | ||
115 | bdrv_get_aio_context(s->target->bs)); | ||
116 | |||
117 | assert(QEMU_IS_ALIGNED(start, s->cluster_size)); | ||
118 | - assert(QEMU_IS_ALIGNED(end, s->cluster_size)); | ||
119 | + assert(QEMU_IS_ALIGNED(bytes, s->cluster_size)); | ||
120 | |||
121 | block_copy_wait_inflight_reqs(s, start, bytes); | ||
122 | - block_copy_inflight_req_begin(s, &req, start, end); | ||
123 | + block_copy_inflight_req_begin(s, &req, start, bytes); | ||
124 | |||
125 | - while (start < end) { | ||
126 | - int64_t next_zero, chunk_end, status_bytes; | ||
127 | + while (bytes) { | ||
128 | + int64_t next_zero, cur_bytes, status_bytes; | ||
129 | |||
130 | if (!bdrv_dirty_bitmap_get(s->copy_bitmap, start)) { | ||
131 | trace_block_copy_skip(s, start); | ||
132 | start += s->cluster_size; | ||
133 | + bytes -= s->cluster_size; | ||
134 | continue; /* already copied */ | ||
135 | } | ||
136 | |||
137 | - chunk_end = MIN(end, start + s->copy_size); | ||
138 | + cur_bytes = MIN(bytes, s->copy_size); | ||
139 | |||
140 | next_zero = bdrv_dirty_bitmap_next_zero(s->copy_bitmap, start, | ||
141 | - chunk_end - start); | ||
142 | + cur_bytes); | ||
143 | if (next_zero >= 0) { | ||
144 | assert(next_zero > start); /* start is dirty */ | ||
145 | - assert(next_zero < chunk_end); /* no need to do MIN() */ | ||
146 | - chunk_end = next_zero; | ||
147 | + assert(next_zero < start + cur_bytes); /* no need to do MIN() */ | ||
148 | + cur_bytes = next_zero - start; | ||
149 | } | ||
150 | |||
151 | - ret = block_copy_block_status(s, start, chunk_end - start, | ||
152 | - &status_bytes); | ||
153 | + ret = block_copy_block_status(s, start, cur_bytes, &status_bytes); | ||
154 | if (s->skip_unallocated && !(ret & BDRV_BLOCK_ALLOCATED)) { | ||
155 | bdrv_reset_dirty_bitmap(s->copy_bitmap, start, status_bytes); | ||
156 | progress_set_remaining(s->progress, | ||
157 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn block_copy(BlockCopyState *s, | ||
158 | s->in_flight_bytes); | ||
159 | trace_block_copy_skip_range(s, start, status_bytes); | ||
160 | start += status_bytes; | ||
161 | + bytes -= status_bytes; | ||
162 | continue; | ||
163 | } | ||
164 | |||
165 | - chunk_end = MIN(chunk_end, start + status_bytes); | ||
166 | + cur_bytes = MIN(cur_bytes, status_bytes); | ||
167 | |||
168 | trace_block_copy_process(s, start); | ||
169 | |||
170 | - bdrv_reset_dirty_bitmap(s->copy_bitmap, start, chunk_end - start); | ||
171 | - s->in_flight_bytes += chunk_end - start; | ||
172 | + bdrv_reset_dirty_bitmap(s->copy_bitmap, start, cur_bytes); | ||
173 | + s->in_flight_bytes += cur_bytes; | ||
174 | |||
175 | - co_get_from_shres(s->mem, chunk_end - start); | ||
176 | - ret = block_copy_do_copy(s, start, chunk_end, ret & BDRV_BLOCK_ZERO, | ||
177 | + co_get_from_shres(s->mem, cur_bytes); | ||
178 | + ret = block_copy_do_copy(s, start, cur_bytes, ret & BDRV_BLOCK_ZERO, | ||
179 | error_is_read); | ||
180 | - co_put_to_shres(s->mem, chunk_end - start); | ||
181 | - s->in_flight_bytes -= chunk_end - start; | ||
182 | + co_put_to_shres(s->mem, cur_bytes); | ||
183 | + s->in_flight_bytes -= cur_bytes; | ||
184 | if (ret < 0) { | ||
185 | - bdrv_set_dirty_bitmap(s->copy_bitmap, start, chunk_end - start); | ||
186 | + bdrv_set_dirty_bitmap(s->copy_bitmap, start, cur_bytes); | ||
187 | break; | ||
188 | } | ||
189 | |||
190 | - progress_work_done(s->progress, chunk_end - start); | ||
191 | - s->progress_bytes_callback(chunk_end - start, s->progress_opaque); | ||
192 | - start = chunk_end; | ||
193 | - ret = 0; | ||
194 | + progress_work_done(s->progress, cur_bytes); | ||
195 | + s->progress_bytes_callback(cur_bytes, s->progress_opaque); | ||
196 | + start += cur_bytes; | ||
197 | + bytes -= cur_bytes; | ||
198 | } | ||
199 | |||
200 | block_copy_inflight_req_end(&req); | ||
201 | diff --git a/include/block/block-copy.h b/include/block/block-copy.h | ||
202 | index XXXXXXX..XXXXXXX 100644 | ||
203 | --- a/include/block/block-copy.h | ||
204 | +++ b/include/block/block-copy.h | ||
205 | @@ -XXX,XX +XXX,XX @@ | ||
206 | #include "qemu/co-shared-resource.h" | ||
207 | |||
208 | typedef struct BlockCopyInFlightReq { | ||
209 | - int64_t start_byte; | ||
210 | - int64_t end_byte; | ||
211 | + int64_t start; | ||
212 | + int64_t bytes; | ||
213 | QLIST_ENTRY(BlockCopyInFlightReq) list; | ||
214 | CoQueue wait_queue; /* coroutines blocked on this request */ | ||
215 | } BlockCopyInFlightReq; | ||
216 | @@ -XXX,XX +XXX,XX @@ void block_copy_state_free(BlockCopyState *s); | ||
217 | int64_t block_copy_reset_unallocated(BlockCopyState *s, | ||
218 | int64_t offset, int64_t *count); | ||
219 | |||
220 | -int coroutine_fn block_copy(BlockCopyState *s, int64_t start, uint64_t bytes, | ||
221 | +int coroutine_fn block_copy(BlockCopyState *s, int64_t start, int64_t bytes, | ||
222 | bool *error_is_read); | ||
223 | |||
224 | #endif /* BLOCK_COPY_H */ | ||
225 | -- | ||
226 | 2.24.1 | ||
227 | |||
228 | diff view generated by jsdifflib |