2023-09-08 16:22:10 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021-2023 Oracle and/or its affiliates.
|
|
|
|
*
|
|
|
|
* 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"
|
2023-09-08 16:22:11 +02:00
|
|
|
#include "qemu/cutils.h"
|
|
|
|
#include "qapi/error.h"
|
2023-09-08 16:22:10 +02:00
|
|
|
#include "channel.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "migration.h"
|
|
|
|
#include "io/channel-file.h"
|
|
|
|
#include "io/channel-util.h"
|
|
|
|
#include "trace.h"
|
|
|
|
|
2023-09-08 16:22:11 +02:00
|
|
|
#define OFFSET_OPTION ",offset="
|
|
|
|
|
|
|
|
/* Remove the offset option from @filespec and return it in @offsetp. */
|
|
|
|
|
|
|
|
static int file_parse_offset(char *filespec, uint64_t *offsetp, Error **errp)
|
|
|
|
{
|
|
|
|
char *option = strstr(filespec, OFFSET_OPTION);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (option) {
|
|
|
|
*option = 0;
|
|
|
|
option += sizeof(OFFSET_OPTION) - 1;
|
|
|
|
ret = qemu_strtosz(option, NULL, offsetp);
|
|
|
|
if (ret) {
|
|
|
|
error_setg_errno(errp, -ret, "file URI has bad offset %s", option);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void file_start_outgoing_migration(MigrationState *s, const char *filespec,
|
2023-09-08 16:22:10 +02:00
|
|
|
Error **errp)
|
|
|
|
{
|
2023-09-08 16:22:11 +02:00
|
|
|
g_autofree char *filename = g_strdup(filespec);
|
2023-09-08 16:22:10 +02:00
|
|
|
g_autoptr(QIOChannelFile) fioc = NULL;
|
2023-09-08 16:22:11 +02:00
|
|
|
uint64_t offset = 0;
|
2023-09-08 16:22:10 +02:00
|
|
|
QIOChannel *ioc;
|
|
|
|
|
|
|
|
trace_migration_file_outgoing(filename);
|
|
|
|
|
2023-09-08 16:22:11 +02:00
|
|
|
if (file_parse_offset(filename, &offset, errp)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-09-08 16:22:10 +02:00
|
|
|
fioc = qio_channel_file_new_path(filename, O_CREAT | O_WRONLY | O_TRUNC,
|
|
|
|
0600, errp);
|
|
|
|
if (!fioc) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ioc = QIO_CHANNEL(fioc);
|
2023-09-08 16:22:11 +02:00
|
|
|
if (offset && qio_channel_io_seek(ioc, offset, SEEK_SET, errp) < 0) {
|
|
|
|
return;
|
|
|
|
}
|
2023-09-08 16:22:10 +02:00
|
|
|
qio_channel_set_name(ioc, "migration-file-outgoing");
|
|
|
|
migration_channel_connect(s, ioc, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean file_accept_incoming_migration(QIOChannel *ioc,
|
|
|
|
GIOCondition condition,
|
|
|
|
gpointer opaque)
|
|
|
|
{
|
|
|
|
migration_channel_process_incoming(ioc);
|
|
|
|
object_unref(OBJECT(ioc));
|
|
|
|
return G_SOURCE_REMOVE;
|
|
|
|
}
|
|
|
|
|
2023-09-08 16:22:11 +02:00
|
|
|
void file_start_incoming_migration(const char *filespec, Error **errp)
|
2023-09-08 16:22:10 +02:00
|
|
|
{
|
2023-09-08 16:22:11 +02:00
|
|
|
g_autofree char *filename = g_strdup(filespec);
|
2023-09-08 16:22:10 +02:00
|
|
|
QIOChannelFile *fioc = NULL;
|
2023-09-08 16:22:11 +02:00
|
|
|
uint64_t offset = 0;
|
2023-09-08 16:22:10 +02:00
|
|
|
QIOChannel *ioc;
|
|
|
|
|
|
|
|
trace_migration_file_incoming(filename);
|
|
|
|
|
2023-09-08 16:22:11 +02:00
|
|
|
if (file_parse_offset(filename, &offset, errp)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-09-08 16:22:10 +02:00
|
|
|
fioc = qio_channel_file_new_path(filename, O_RDONLY, 0, errp);
|
|
|
|
if (!fioc) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ioc = QIO_CHANNEL(fioc);
|
2023-09-08 16:22:11 +02:00
|
|
|
if (offset && qio_channel_io_seek(ioc, offset, SEEK_SET, errp) < 0) {
|
|
|
|
return;
|
|
|
|
}
|
2023-09-08 16:22:10 +02:00
|
|
|
qio_channel_set_name(QIO_CHANNEL(ioc), "migration-file-incoming");
|
|
|
|
qio_channel_add_watch_full(ioc, G_IO_IN,
|
|
|
|
file_accept_incoming_migration,
|
|
|
|
NULL, NULL,
|
|
|
|
g_main_context_get_thread_default());
|
|
|
|
}
|