]> git.proxmox.com Git - mirror_qemu.git/blame - migration/multifd-zlib.c
Replace qemu_real_host_page variables with inlined functions
[mirror_qemu.git] / migration / multifd-zlib.c
CommitLineData
7ec2c2b3
JQ
1/*
2 * Multifd zlib compression implementation
3 *
4 * Copyright (c) 2020 Red Hat Inc
5 *
6 * Authors:
7 * Juan Quintela <quintela@redhat.com>
8 *
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.
11 */
12
13#include "qemu/osdep.h"
14#include <zlib.h>
15#include "qemu/rcu.h"
a5ed2294 16#include "exec/ramblock.h"
7ec2c2b3
JQ
17#include "exec/target_page.h"
18#include "qapi/error.h"
19#include "migration.h"
20#include "trace.h"
21#include "multifd.h"
22
23struct zlib_data {
24 /* stream for compression */
25 z_stream zs;
26 /* compressed buffer */
27 uint8_t *zbuff;
28 /* size of compressed buffer */
29 uint32_t zbuff_len;
30};
31
32/* Multifd zlib compression */
33
34/**
35 * zlib_send_setup: setup send side
36 *
37 * Setup each channel with zlib compression.
38 *
39 * Returns 0 for success or -1 for error
40 *
41 * @p: Params for the channel that we are using
42 * @errp: pointer to an error
43 */
44static int zlib_send_setup(MultiFDSendParams *p, Error **errp)
45{
b21e2380 46 struct zlib_data *z = g_new0(struct zlib_data, 1);
7ec2c2b3
JQ
47 z_stream *zs = &z->zs;
48
49 zs->zalloc = Z_NULL;
50 zs->zfree = Z_NULL;
51 zs->opaque = Z_NULL;
52 if (deflateInit(zs, migrate_multifd_zlib_level()) != Z_OK) {
53 g_free(z);
04e11404 54 error_setg(errp, "multifd %u: deflate init failed", p->id);
7ec2c2b3
JQ
55 return -1;
56 }
fc670522
JQ
57 /* This is the maxium size of the compressed buffer */
58 z->zbuff_len = compressBound(MULTIFD_PACKET_SIZE);
7ec2c2b3
JQ
59 z->zbuff = g_try_malloc(z->zbuff_len);
60 if (!z->zbuff) {
61 deflateEnd(&z->zs);
62 g_free(z);
04e11404 63 error_setg(errp, "multifd %u: out of memory for zbuff", p->id);
7ec2c2b3
JQ
64 return -1;
65 }
66 p->data = z;
67 return 0;
68}
69
70/**
71 * zlib_send_cleanup: cleanup send side
72 *
73 * Close the channel and return memory.
74 *
75 * @p: Params for the channel that we are using
18ede636 76 * @errp: pointer to an error
7ec2c2b3
JQ
77 */
78static void zlib_send_cleanup(MultiFDSendParams *p, Error **errp)
79{
80 struct zlib_data *z = p->data;
81
82 deflateEnd(&z->zs);
83 g_free(z->zbuff);
84 z->zbuff = NULL;
85 g_free(p->data);
86 p->data = NULL;
87}
88
89/**
90 * zlib_send_prepare: prepare date to be able to send
91 *
92 * Create a compressed buffer with all the pages that we are going to
93 * send.
94 *
95 * Returns 0 for success or -1 for error
96 *
97 * @p: Params for the channel that we are using
18ede636 98 * @errp: pointer to an error
7ec2c2b3 99 */
02fb8104 100static int zlib_send_prepare(MultiFDSendParams *p, Error **errp)
7ec2c2b3 101{
7ec2c2b3 102 struct zlib_data *z = p->data;
a5ed2294 103 size_t page_size = qemu_target_page_size();
7ec2c2b3
JQ
104 z_stream *zs = &z->zs;
105 uint32_t out_size = 0;
106 int ret;
107 uint32_t i;
108
815956f0 109 for (i = 0; i < p->normal_num; i++) {
7ec2c2b3
JQ
110 uint32_t available = z->zbuff_len - out_size;
111 int flush = Z_NO_FLUSH;
112
815956f0 113 if (i == p->normal_num - 1) {
7ec2c2b3
JQ
114 flush = Z_SYNC_FLUSH;
115 }
116
a5ed2294 117 zs->avail_in = page_size;
815956f0 118 zs->next_in = p->pages->block->host + p->normal[i];
7ec2c2b3
JQ
119
120 zs->avail_out = available;
121 zs->next_out = z->zbuff + out_size;
122
123 /*
124 * Welcome to deflate semantics
125 *
126 * We need to loop while:
127 * - return is Z_OK
128 * - there are stuff to be compressed
129 * - there are output space free
130 */
131 do {
132 ret = deflate(zs, flush);
133 } while (ret == Z_OK && zs->avail_in && zs->avail_out);
134 if (ret == Z_OK && zs->avail_in) {
04e11404 135 error_setg(errp, "multifd %u: deflate failed to compress all input",
7ec2c2b3
JQ
136 p->id);
137 return -1;
138 }
139 if (ret != Z_OK) {
04e11404 140 error_setg(errp, "multifd %u: deflate returned %d instead of Z_OK",
7ec2c2b3
JQ
141 p->id, ret);
142 return -1;
143 }
144 out_size += available - zs->avail_out;
145 }
48a4a44c
JQ
146 p->iov[p->iovs_num].iov_base = z->zbuff;
147 p->iov[p->iovs_num].iov_len = out_size;
148 p->iovs_num++;
7ec2c2b3
JQ
149 p->next_packet_size = out_size;
150 p->flags |= MULTIFD_FLAG_ZLIB;
151
152 return 0;
153}
154
7ec2c2b3
JQ
155/**
156 * zlib_recv_setup: setup receive side
157 *
158 * Create the compressed channel and buffer.
159 *
160 * Returns 0 for success or -1 for error
161 *
162 * @p: Params for the channel that we are using
163 * @errp: pointer to an error
164 */
165static int zlib_recv_setup(MultiFDRecvParams *p, Error **errp)
166{
b21e2380 167 struct zlib_data *z = g_new0(struct zlib_data, 1);
7ec2c2b3
JQ
168 z_stream *zs = &z->zs;
169
170 p->data = z;
171 zs->zalloc = Z_NULL;
172 zs->zfree = Z_NULL;
173 zs->opaque = Z_NULL;
174 zs->avail_in = 0;
175 zs->next_in = Z_NULL;
176 if (inflateInit(zs) != Z_OK) {
04e11404 177 error_setg(errp, "multifd %u: inflate init failed", p->id);
7ec2c2b3
JQ
178 return -1;
179 }
47a17824
JQ
180 /* To be safe, we reserve twice the size of the packet */
181 z->zbuff_len = MULTIFD_PACKET_SIZE * 2;
7ec2c2b3
JQ
182 z->zbuff = g_try_malloc(z->zbuff_len);
183 if (!z->zbuff) {
184 inflateEnd(zs);
04e11404 185 error_setg(errp, "multifd %u: out of memory for zbuff", p->id);
7ec2c2b3
JQ
186 return -1;
187 }
188 return 0;
189}
190
191/**
192 * zlib_recv_cleanup: setup receive side
193 *
194 * For no compression this function does nothing.
195 *
196 * @p: Params for the channel that we are using
197 */
198static void zlib_recv_cleanup(MultiFDRecvParams *p)
199{
200 struct zlib_data *z = p->data;
201
202 inflateEnd(&z->zs);
203 g_free(z->zbuff);
204 z->zbuff = NULL;
205 g_free(p->data);
206 p->data = NULL;
207}
208
209/**
210 * zlib_recv_pages: read the data from the channel into actual pages
211 *
212 * Read the compressed buffer, and uncompress it into the actual
213 * pages.
214 *
215 * Returns 0 for success or -1 for error
216 *
217 * @p: Params for the channel that we are using
7ec2c2b3
JQ
218 * @errp: pointer to an error
219 */
40a4bfe9 220static int zlib_recv_pages(MultiFDRecvParams *p, Error **errp)
7ec2c2b3
JQ
221{
222 struct zlib_data *z = p->data;
a5ed2294 223 size_t page_size = qemu_target_page_size();
7ec2c2b3
JQ
224 z_stream *zs = &z->zs;
225 uint32_t in_size = p->next_packet_size;
226 /* we measure the change of total_out */
227 uint32_t out_size = zs->total_out;
cf2d4aa8 228 uint32_t expected_size = p->normal_num * page_size;
7ec2c2b3
JQ
229 uint32_t flags = p->flags & MULTIFD_FLAG_COMPRESSION_MASK;
230 int ret;
231 int i;
232
233 if (flags != MULTIFD_FLAG_ZLIB) {
04e11404 234 error_setg(errp, "multifd %u: flags received %x flags expected %x",
7ec2c2b3
JQ
235 p->id, flags, MULTIFD_FLAG_ZLIB);
236 return -1;
237 }
238 ret = qio_channel_read_all(p->c, (void *)z->zbuff, in_size, errp);
239
240 if (ret != 0) {
241 return ret;
242 }
243
244 zs->avail_in = in_size;
245 zs->next_in = z->zbuff;
246
cf2d4aa8 247 for (i = 0; i < p->normal_num; i++) {
7ec2c2b3
JQ
248 int flush = Z_NO_FLUSH;
249 unsigned long start = zs->total_out;
250
cf2d4aa8 251 if (i == p->normal_num - 1) {
7ec2c2b3
JQ
252 flush = Z_SYNC_FLUSH;
253 }
254
a5ed2294 255 zs->avail_out = page_size;
faf60935 256 zs->next_out = p->host + p->normal[i];
7ec2c2b3
JQ
257
258 /*
259 * Welcome to inflate semantics
260 *
261 * We need to loop while:
262 * - return is Z_OK
263 * - there are input available
264 * - we haven't completed a full page
265 */
266 do {
267 ret = inflate(zs, flush);
268 } while (ret == Z_OK && zs->avail_in
a5ed2294
JQ
269 && (zs->total_out - start) < page_size);
270 if (ret == Z_OK && (zs->total_out - start) < page_size) {
04e11404 271 error_setg(errp, "multifd %u: inflate generated too few output",
7ec2c2b3
JQ
272 p->id);
273 return -1;
274 }
275 if (ret != Z_OK) {
04e11404 276 error_setg(errp, "multifd %u: inflate returned %d instead of Z_OK",
7ec2c2b3
JQ
277 p->id, ret);
278 return -1;
279 }
280 }
281 out_size = zs->total_out - out_size;
282 if (out_size != expected_size) {
04e11404 283 error_setg(errp, "multifd %u: packet size received %u size expected %u",
7ec2c2b3
JQ
284 p->id, out_size, expected_size);
285 return -1;
286 }
287 return 0;
288}
289
290static MultiFDMethods multifd_zlib_ops = {
291 .send_setup = zlib_send_setup,
292 .send_cleanup = zlib_send_cleanup,
293 .send_prepare = zlib_send_prepare,
7ec2c2b3
JQ
294 .recv_setup = zlib_recv_setup,
295 .recv_cleanup = zlib_recv_cleanup,
296 .recv_pages = zlib_recv_pages
297};
298
299static void multifd_zlib_register(void)
300{
301 multifd_register_ops(MULTIFD_COMPRESSION_ZLIB, &multifd_zlib_ops);
302}
303
304migration_init(multifd_zlib_register);