2 * Multifd zlib compression implementation
4 * Copyright (c) 2020 Red Hat Inc
7 * Juan Quintela <quintela@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
16 #include "exec/ramblock.h"
17 #include "exec/target_page.h"
18 #include "qapi/error.h"
19 #include "migration.h"
24 /* stream for compression */
26 /* compressed buffer */
28 /* size of compressed buffer */
30 /* uncompressed buffer of size qemu_target_page_size() */
34 /* Multifd zlib compression */
37 * zlib_send_setup: setup send side
39 * Setup each channel with zlib compression.
41 * Returns 0 for success or -1 for error
43 * @p: Params for the channel that we are using
44 * @errp: pointer to an error
46 static int zlib_send_setup(MultiFDSendParams
*p
, Error
**errp
)
48 struct zlib_data
*z
= g_new0(struct zlib_data
, 1);
49 z_stream
*zs
= &z
->zs
;
55 if (deflateInit(zs
, migrate_multifd_zlib_level()) != Z_OK
) {
56 err_msg
= "deflate init failed";
59 /* This is the maxium size of the compressed buffer */
60 z
->zbuff_len
= compressBound(MULTIFD_PACKET_SIZE
);
61 z
->zbuff
= g_try_malloc(z
->zbuff_len
);
63 err_msg
= "out of memory for zbuff";
66 z
->buf
= g_try_malloc(qemu_target_page_size());
68 err_msg
= "out of memory for buf";
80 error_setg(errp
, "multifd %u: %s", p
->id
, err_msg
);
85 * zlib_send_cleanup: cleanup send side
87 * Close the channel and return memory.
89 * @p: Params for the channel that we are using
90 * @errp: pointer to an error
92 static void zlib_send_cleanup(MultiFDSendParams
*p
, Error
**errp
)
94 struct zlib_data
*z
= p
->data
;
106 * zlib_send_prepare: prepare date to be able to send
108 * Create a compressed buffer with all the pages that we are going to
111 * Returns 0 for success or -1 for error
113 * @p: Params for the channel that we are using
114 * @errp: pointer to an error
116 static int zlib_send_prepare(MultiFDSendParams
*p
, Error
**errp
)
118 struct zlib_data
*z
= p
->data
;
119 z_stream
*zs
= &z
->zs
;
120 uint32_t out_size
= 0;
124 for (i
= 0; i
< p
->normal_num
; i
++) {
125 uint32_t available
= z
->zbuff_len
- out_size
;
126 int flush
= Z_NO_FLUSH
;
128 if (i
== p
->normal_num
- 1) {
129 flush
= Z_SYNC_FLUSH
;
133 * Since the VM might be running, the page may be changing concurrently
134 * with compression. zlib does not guarantee that this is safe,
135 * therefore copy the page before calling deflate().
137 memcpy(z
->buf
, p
->pages
->block
->host
+ p
->normal
[i
], p
->page_size
);
138 zs
->avail_in
= p
->page_size
;
139 zs
->next_in
= z
->buf
;
141 zs
->avail_out
= available
;
142 zs
->next_out
= z
->zbuff
+ out_size
;
145 * Welcome to deflate semantics
147 * We need to loop while:
149 * - there are stuff to be compressed
150 * - there are output space free
153 ret
= deflate(zs
, flush
);
154 } while (ret
== Z_OK
&& zs
->avail_in
&& zs
->avail_out
);
155 if (ret
== Z_OK
&& zs
->avail_in
) {
156 error_setg(errp
, "multifd %u: deflate failed to compress all input",
161 error_setg(errp
, "multifd %u: deflate returned %d instead of Z_OK",
165 out_size
+= available
- zs
->avail_out
;
167 p
->iov
[p
->iovs_num
].iov_base
= z
->zbuff
;
168 p
->iov
[p
->iovs_num
].iov_len
= out_size
;
170 p
->next_packet_size
= out_size
;
171 p
->flags
|= MULTIFD_FLAG_ZLIB
;
177 * zlib_recv_setup: setup receive side
179 * Create the compressed channel and buffer.
181 * Returns 0 for success or -1 for error
183 * @p: Params for the channel that we are using
184 * @errp: pointer to an error
186 static int zlib_recv_setup(MultiFDRecvParams
*p
, Error
**errp
)
188 struct zlib_data
*z
= g_new0(struct zlib_data
, 1);
189 z_stream
*zs
= &z
->zs
;
196 zs
->next_in
= Z_NULL
;
197 if (inflateInit(zs
) != Z_OK
) {
198 error_setg(errp
, "multifd %u: inflate init failed", p
->id
);
201 /* To be safe, we reserve twice the size of the packet */
202 z
->zbuff_len
= MULTIFD_PACKET_SIZE
* 2;
203 z
->zbuff
= g_try_malloc(z
->zbuff_len
);
206 error_setg(errp
, "multifd %u: out of memory for zbuff", p
->id
);
213 * zlib_recv_cleanup: setup receive side
215 * For no compression this function does nothing.
217 * @p: Params for the channel that we are using
219 static void zlib_recv_cleanup(MultiFDRecvParams
*p
)
221 struct zlib_data
*z
= p
->data
;
231 * zlib_recv_pages: read the data from the channel into actual pages
233 * Read the compressed buffer, and uncompress it into the actual
236 * Returns 0 for success or -1 for error
238 * @p: Params for the channel that we are using
239 * @errp: pointer to an error
241 static int zlib_recv_pages(MultiFDRecvParams
*p
, Error
**errp
)
243 struct zlib_data
*z
= p
->data
;
244 z_stream
*zs
= &z
->zs
;
245 uint32_t in_size
= p
->next_packet_size
;
246 /* we measure the change of total_out */
247 uint32_t out_size
= zs
->total_out
;
248 uint32_t expected_size
= p
->normal_num
* p
->page_size
;
249 uint32_t flags
= p
->flags
& MULTIFD_FLAG_COMPRESSION_MASK
;
253 if (flags
!= MULTIFD_FLAG_ZLIB
) {
254 error_setg(errp
, "multifd %u: flags received %x flags expected %x",
255 p
->id
, flags
, MULTIFD_FLAG_ZLIB
);
258 ret
= qio_channel_read_all(p
->c
, (void *)z
->zbuff
, in_size
, errp
);
264 zs
->avail_in
= in_size
;
265 zs
->next_in
= z
->zbuff
;
267 for (i
= 0; i
< p
->normal_num
; i
++) {
268 int flush
= Z_NO_FLUSH
;
269 unsigned long start
= zs
->total_out
;
271 if (i
== p
->normal_num
- 1) {
272 flush
= Z_SYNC_FLUSH
;
275 zs
->avail_out
= p
->page_size
;
276 zs
->next_out
= p
->host
+ p
->normal
[i
];
279 * Welcome to inflate semantics
281 * We need to loop while:
283 * - there are input available
284 * - we haven't completed a full page
287 ret
= inflate(zs
, flush
);
288 } while (ret
== Z_OK
&& zs
->avail_in
289 && (zs
->total_out
- start
) < p
->page_size
);
290 if (ret
== Z_OK
&& (zs
->total_out
- start
) < p
->page_size
) {
291 error_setg(errp
, "multifd %u: inflate generated too few output",
296 error_setg(errp
, "multifd %u: inflate returned %d instead of Z_OK",
301 out_size
= zs
->total_out
- out_size
;
302 if (out_size
!= expected_size
) {
303 error_setg(errp
, "multifd %u: packet size received %u size expected %u",
304 p
->id
, out_size
, expected_size
);
310 static MultiFDMethods multifd_zlib_ops
= {
311 .send_setup
= zlib_send_setup
,
312 .send_cleanup
= zlib_send_cleanup
,
313 .send_prepare
= zlib_send_prepare
,
314 .recv_setup
= zlib_recv_setup
,
315 .recv_cleanup
= zlib_recv_cleanup
,
316 .recv_pages
= zlib_recv_pages
319 static void multifd_zlib_register(void)
321 multifd_register_ops(MULTIFD_COMPRESSION_ZLIB
, &multifd_zlib_ops
);
324 migration_init(multifd_zlib_register
);