2019-12-13 13:47:14 +01:00
|
|
|
/*
|
|
|
|
* Multifd zlib compression implementation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2020 Red Hat Inc
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Juan Quintela <quintela@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include <zstd.h>
|
|
|
|
#include "qemu/rcu.h"
|
2021-11-19 13:16:25 +01:00
|
|
|
#include "exec/ramblock.h"
|
2019-12-13 13:47:14 +01:00
|
|
|
#include "exec/target_page.h"
|
|
|
|
#include "qapi/error.h"
|
|
|
|
#include "migration.h"
|
|
|
|
#include "trace.h"
|
|
|
|
#include "multifd.h"
|
|
|
|
|
|
|
|
struct zstd_data {
|
|
|
|
/* stream for compression */
|
|
|
|
ZSTD_CStream *zcs;
|
|
|
|
/* stream for decompression */
|
|
|
|
ZSTD_DStream *zds;
|
|
|
|
/* buffers */
|
|
|
|
ZSTD_inBuffer in;
|
|
|
|
ZSTD_outBuffer out;
|
|
|
|
/* compressed buffer */
|
|
|
|
uint8_t *zbuff;
|
|
|
|
/* size of compressed buffer */
|
|
|
|
uint32_t zbuff_len;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Multifd zstd compression */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zstd_send_setup: setup send side
|
|
|
|
*
|
|
|
|
* Setup each channel with zstd compression.
|
|
|
|
*
|
|
|
|
* Returns 0 for success or -1 for error
|
|
|
|
*
|
|
|
|
* @p: Params for the channel that we are using
|
|
|
|
* @errp: pointer to an error
|
|
|
|
*/
|
|
|
|
static int zstd_send_setup(MultiFDSendParams *p, Error **errp)
|
|
|
|
{
|
|
|
|
struct zstd_data *z = g_new0(struct zstd_data, 1);
|
|
|
|
int res;
|
|
|
|
|
|
|
|
p->data = z;
|
|
|
|
z->zcs = ZSTD_createCStream();
|
|
|
|
if (!z->zcs) {
|
|
|
|
g_free(z);
|
2021-12-15 14:20:48 +01:00
|
|
|
error_setg(errp, "multifd %u: zstd createCStream failed", p->id);
|
2019-12-13 13:47:14 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = ZSTD_initCStream(z->zcs, migrate_multifd_zstd_level());
|
|
|
|
if (ZSTD_isError(res)) {
|
|
|
|
ZSTD_freeCStream(z->zcs);
|
|
|
|
g_free(z);
|
2021-12-15 14:20:48 +01:00
|
|
|
error_setg(errp, "multifd %u: initCStream failed with error %s",
|
2019-12-13 13:47:14 +01:00
|
|
|
p->id, ZSTD_getErrorName(res));
|
|
|
|
return -1;
|
|
|
|
}
|
2021-11-26 10:30:32 +01:00
|
|
|
/* This is the maxium size of the compressed buffer */
|
|
|
|
z->zbuff_len = ZSTD_compressBound(MULTIFD_PACKET_SIZE);
|
2019-12-13 13:47:14 +01:00
|
|
|
z->zbuff = g_try_malloc(z->zbuff_len);
|
|
|
|
if (!z->zbuff) {
|
|
|
|
ZSTD_freeCStream(z->zcs);
|
|
|
|
g_free(z);
|
2021-12-15 14:20:48 +01:00
|
|
|
error_setg(errp, "multifd %u: out of memory for zbuff", p->id);
|
2019-12-13 13:47:14 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zstd_send_cleanup: cleanup send side
|
|
|
|
*
|
|
|
|
* Close the channel and return memory.
|
|
|
|
*
|
|
|
|
* @p: Params for the channel that we are using
|
2021-11-22 11:58:41 +01:00
|
|
|
* @errp: pointer to an error
|
2019-12-13 13:47:14 +01:00
|
|
|
*/
|
|
|
|
static void zstd_send_cleanup(MultiFDSendParams *p, Error **errp)
|
|
|
|
{
|
|
|
|
struct zstd_data *z = p->data;
|
|
|
|
|
|
|
|
ZSTD_freeCStream(z->zcs);
|
|
|
|
z->zcs = NULL;
|
|
|
|
g_free(z->zbuff);
|
|
|
|
z->zbuff = NULL;
|
|
|
|
g_free(p->data);
|
|
|
|
p->data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zstd_send_prepare: prepare date to be able to send
|
|
|
|
*
|
|
|
|
* Create a compressed buffer with all the pages that we are going to
|
|
|
|
* send.
|
|
|
|
*
|
|
|
|
* Returns 0 for success or -1 for error
|
|
|
|
*
|
|
|
|
* @p: Params for the channel that we are using
|
2021-11-22 11:58:41 +01:00
|
|
|
* @errp: pointer to an error
|
2019-12-13 13:47:14 +01:00
|
|
|
*/
|
2021-11-22 12:08:08 +01:00
|
|
|
static int zstd_send_prepare(MultiFDSendParams *p, Error **errp)
|
2019-12-13 13:47:14 +01:00
|
|
|
{
|
|
|
|
struct zstd_data *z = p->data;
|
2021-11-19 13:16:25 +01:00
|
|
|
size_t page_size = qemu_target_page_size();
|
2019-12-13 13:47:14 +01:00
|
|
|
int ret;
|
|
|
|
uint32_t i;
|
|
|
|
|
|
|
|
z->out.dst = z->zbuff;
|
|
|
|
z->out.size = z->zbuff_len;
|
|
|
|
z->out.pos = 0;
|
|
|
|
|
2021-11-22 13:26:18 +01:00
|
|
|
for (i = 0; i < p->normal_num; i++) {
|
2019-12-13 13:47:14 +01:00
|
|
|
ZSTD_EndDirective flush = ZSTD_e_continue;
|
|
|
|
|
2021-11-22 13:26:18 +01:00
|
|
|
if (i == p->normal_num - 1) {
|
2019-12-13 13:47:14 +01:00
|
|
|
flush = ZSTD_e_flush;
|
|
|
|
}
|
2021-11-22 13:26:18 +01:00
|
|
|
z->in.src = p->pages->block->host + p->normal[i];
|
2021-11-19 13:16:25 +01:00
|
|
|
z->in.size = page_size;
|
2019-12-13 13:47:14 +01:00
|
|
|
z->in.pos = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Welcome to compressStream2 semantics
|
|
|
|
*
|
|
|
|
* We need to loop while:
|
|
|
|
* - return is > 0
|
|
|
|
* - there is input available
|
|
|
|
* - there is output space free
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
ret = ZSTD_compressStream2(z->zcs, &z->out, &z->in, flush);
|
|
|
|
} while (ret > 0 && (z->in.size - z->in.pos > 0)
|
|
|
|
&& (z->out.size - z->out.pos > 0));
|
|
|
|
if (ret > 0 && (z->in.size - z->in.pos > 0)) {
|
2021-12-15 14:20:48 +01:00
|
|
|
error_setg(errp, "multifd %u: compressStream buffer too small",
|
2019-12-13 13:47:14 +01:00
|
|
|
p->id);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (ZSTD_isError(ret)) {
|
2021-12-15 14:20:48 +01:00
|
|
|
error_setg(errp, "multifd %u: compressStream error %s",
|
2019-12-13 13:47:14 +01:00
|
|
|
p->id, ZSTD_getErrorName(ret));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2021-11-19 15:05:23 +01:00
|
|
|
p->iov[p->iovs_num].iov_base = z->zbuff;
|
|
|
|
p->iov[p->iovs_num].iov_len = z->out.pos;
|
|
|
|
p->iovs_num++;
|
2019-12-13 13:47:14 +01:00
|
|
|
p->next_packet_size = z->out.pos;
|
|
|
|
p->flags |= MULTIFD_FLAG_ZSTD;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zstd_recv_setup: setup receive side
|
|
|
|
*
|
|
|
|
* Create the compressed channel and buffer.
|
|
|
|
*
|
|
|
|
* Returns 0 for success or -1 for error
|
|
|
|
*
|
|
|
|
* @p: Params for the channel that we are using
|
|
|
|
* @errp: pointer to an error
|
|
|
|
*/
|
|
|
|
static int zstd_recv_setup(MultiFDRecvParams *p, Error **errp)
|
|
|
|
{
|
|
|
|
struct zstd_data *z = g_new0(struct zstd_data, 1);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
p->data = z;
|
|
|
|
z->zds = ZSTD_createDStream();
|
|
|
|
if (!z->zds) {
|
|
|
|
g_free(z);
|
2021-12-15 14:20:48 +01:00
|
|
|
error_setg(errp, "multifd %u: zstd createDStream failed", p->id);
|
2019-12-13 13:47:14 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = ZSTD_initDStream(z->zds);
|
|
|
|
if (ZSTD_isError(ret)) {
|
|
|
|
ZSTD_freeDStream(z->zds);
|
|
|
|
g_free(z);
|
2021-12-15 14:20:48 +01:00
|
|
|
error_setg(errp, "multifd %u: initDStream failed with error %s",
|
2019-12-13 13:47:14 +01:00
|
|
|
p->id, ZSTD_getErrorName(ret));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-11-22 20:18:28 +01:00
|
|
|
/* To be safe, we reserve twice the size of the packet */
|
|
|
|
z->zbuff_len = MULTIFD_PACKET_SIZE * 2;
|
2019-12-13 13:47:14 +01:00
|
|
|
z->zbuff = g_try_malloc(z->zbuff_len);
|
|
|
|
if (!z->zbuff) {
|
|
|
|
ZSTD_freeDStream(z->zds);
|
|
|
|
g_free(z);
|
2021-12-15 14:20:48 +01:00
|
|
|
error_setg(errp, "multifd %u: out of memory for zbuff", p->id);
|
2019-12-13 13:47:14 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zstd_recv_cleanup: setup receive side
|
|
|
|
*
|
|
|
|
* For no compression this function does nothing.
|
|
|
|
*
|
|
|
|
* @p: Params for the channel that we are using
|
|
|
|
*/
|
|
|
|
static void zstd_recv_cleanup(MultiFDRecvParams *p)
|
|
|
|
{
|
|
|
|
struct zstd_data *z = p->data;
|
|
|
|
|
|
|
|
ZSTD_freeDStream(z->zds);
|
|
|
|
z->zds = NULL;
|
|
|
|
g_free(z->zbuff);
|
|
|
|
z->zbuff = NULL;
|
|
|
|
g_free(p->data);
|
|
|
|
p->data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zstd_recv_pages: read the data from the channel into actual pages
|
|
|
|
*
|
|
|
|
* Read the compressed buffer, and uncompress it into the actual
|
|
|
|
* pages.
|
|
|
|
*
|
|
|
|
* Returns 0 for success or -1 for error
|
|
|
|
*
|
|
|
|
* @p: Params for the channel that we are using
|
|
|
|
* @errp: pointer to an error
|
|
|
|
*/
|
2021-11-22 12:49:43 +01:00
|
|
|
static int zstd_recv_pages(MultiFDRecvParams *p, Error **errp)
|
2019-12-13 13:47:14 +01:00
|
|
|
{
|
|
|
|
uint32_t in_size = p->next_packet_size;
|
|
|
|
uint32_t out_size = 0;
|
2021-11-19 13:16:25 +01:00
|
|
|
size_t page_size = qemu_target_page_size();
|
2021-11-22 13:41:06 +01:00
|
|
|
uint32_t expected_size = p->normal_num * page_size;
|
2019-12-13 13:47:14 +01:00
|
|
|
uint32_t flags = p->flags & MULTIFD_FLAG_COMPRESSION_MASK;
|
|
|
|
struct zstd_data *z = p->data;
|
|
|
|
int ret;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (flags != MULTIFD_FLAG_ZSTD) {
|
2021-12-15 14:20:48 +01:00
|
|
|
error_setg(errp, "multifd %u: flags received %x flags expected %x",
|
2019-12-13 13:47:14 +01:00
|
|
|
p->id, flags, MULTIFD_FLAG_ZSTD);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ret = qio_channel_read_all(p->c, (void *)z->zbuff, in_size, errp);
|
|
|
|
|
|
|
|
if (ret != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
z->in.src = z->zbuff;
|
|
|
|
z->in.size = in_size;
|
|
|
|
z->in.pos = 0;
|
|
|
|
|
2021-11-22 13:41:06 +01:00
|
|
|
for (i = 0; i < p->normal_num; i++) {
|
2021-11-22 14:10:57 +01:00
|
|
|
z->out.dst = p->host + p->normal[i];
|
2021-11-19 13:16:25 +01:00
|
|
|
z->out.size = page_size;
|
2019-12-13 13:47:14 +01:00
|
|
|
z->out.pos = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Welcome to decompressStream semantics
|
|
|
|
*
|
|
|
|
* We need to loop while:
|
|
|
|
* - return is > 0
|
|
|
|
* - there is input available
|
|
|
|
* - we haven't put out a full page
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
ret = ZSTD_decompressStream(z->zds, &z->out, &z->in);
|
|
|
|
} while (ret > 0 && (z->in.size - z->in.pos > 0)
|
2021-11-19 13:16:25 +01:00
|
|
|
&& (z->out.pos < page_size));
|
|
|
|
if (ret > 0 && (z->out.pos < page_size)) {
|
2021-12-15 14:20:48 +01:00
|
|
|
error_setg(errp, "multifd %u: decompressStream buffer too small",
|
2019-12-13 13:47:14 +01:00
|
|
|
p->id);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (ZSTD_isError(ret)) {
|
2021-12-15 14:20:48 +01:00
|
|
|
error_setg(errp, "multifd %u: decompressStream returned %s",
|
2019-12-13 13:47:14 +01:00
|
|
|
p->id, ZSTD_getErrorName(ret));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
out_size += z->out.pos;
|
|
|
|
}
|
|
|
|
if (out_size != expected_size) {
|
2021-12-15 14:20:48 +01:00
|
|
|
error_setg(errp, "multifd %u: packet size received %u size expected %u",
|
2019-12-13 13:47:14 +01:00
|
|
|
p->id, out_size, expected_size);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static MultiFDMethods multifd_zstd_ops = {
|
|
|
|
.send_setup = zstd_send_setup,
|
|
|
|
.send_cleanup = zstd_send_cleanup,
|
|
|
|
.send_prepare = zstd_send_prepare,
|
|
|
|
.recv_setup = zstd_recv_setup,
|
|
|
|
.recv_cleanup = zstd_recv_cleanup,
|
|
|
|
.recv_pages = zstd_recv_pages
|
|
|
|
};
|
|
|
|
|
|
|
|
static void multifd_zstd_register(void)
|
|
|
|
{
|
|
|
|
multifd_register_ops(MULTIFD_COMPRESSION_ZSTD, &multifd_zstd_ops);
|
|
|
|
}
|
|
|
|
|
|
|
|
migration_init(multifd_zstd_register);
|