2 * Copyright (c) 2021-2023 Oracle and/or its affiliates.
4 * This work is licensed under the terms of the GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
8 #include "qemu/osdep.h"
9 #include "exec/ramblock.h"
10 #include "qemu/cutils.h"
11 #include "qemu/error-report.h"
12 #include "qapi/error.h"
15 #include "migration.h"
16 #include "io/channel-file.h"
17 #include "io/channel-socket.h"
18 #include "io/channel-util.h"
22 #define OFFSET_OPTION ",offset="
24 static struct FileOutgoingArgs
{
28 /* Remove the offset option from @filespec and return it in @offsetp. */
30 int file_parse_offset(char *filespec
, uint64_t *offsetp
, Error
**errp
)
32 char *option
= strstr(filespec
, OFFSET_OPTION
);
37 option
+= sizeof(OFFSET_OPTION
) - 1;
38 ret
= qemu_strtosz(option
, NULL
, offsetp
);
40 error_setg_errno(errp
, -ret
, "file URI has bad offset %s", option
);
47 void file_cleanup_outgoing_migration(void)
49 g_free(outgoing_args
.fname
);
50 outgoing_args
.fname
= NULL
;
53 bool file_send_channel_create(gpointer opaque
, Error
**errp
)
59 ioc
= qio_channel_file_new_path(outgoing_args
.fname
, flags
, 0, errp
);
65 multifd_channel_connect(opaque
, QIO_CHANNEL(ioc
));
69 * File channel creation is synchronous. However posting this
70 * semaphore here is simpler than adding a special case.
72 multifd_send_channel_created();
77 void file_start_outgoing_migration(MigrationState
*s
,
78 FileMigrationArgs
*file_args
, Error
**errp
)
80 g_autoptr(QIOChannelFile
) fioc
= NULL
;
81 g_autofree
char *filename
= g_strdup(file_args
->filename
);
82 uint64_t offset
= file_args
->offset
;
85 trace_migration_file_outgoing(filename
);
87 fioc
= qio_channel_file_new_path(filename
, O_CREAT
| O_WRONLY
| O_TRUNC
,
93 outgoing_args
.fname
= g_strdup(filename
);
95 ioc
= QIO_CHANNEL(fioc
);
96 if (offset
&& qio_channel_io_seek(ioc
, offset
, SEEK_SET
, errp
) < 0) {
99 qio_channel_set_name(ioc
, "migration-file-outgoing");
100 migration_channel_connect(s
, ioc
, NULL
, NULL
);
103 static gboolean
file_accept_incoming_migration(QIOChannel
*ioc
,
104 GIOCondition condition
,
107 migration_channel_process_incoming(ioc
);
108 object_unref(OBJECT(ioc
));
109 return G_SOURCE_REMOVE
;
112 void file_create_incoming_channels(QIOChannel
*ioc
, Error
**errp
)
114 int i
, fd
, channels
= 1;
115 g_autofree QIOChannel
**iocs
= NULL
;
117 if (migrate_multifd()) {
118 channels
+= migrate_multifd_channels();
121 iocs
= g_new0(QIOChannel
*, channels
);
122 fd
= QIO_CHANNEL_FILE(ioc
)->fd
;
125 for (i
= 1; i
< channels
; i
++) {
126 QIOChannelFile
*fioc
= qio_channel_file_new_dupfd(fd
, errp
);
130 object_unref(iocs
[--i
]);
135 iocs
[i
] = QIO_CHANNEL(fioc
);
138 for (i
= 0; i
< channels
; i
++) {
139 qio_channel_set_name(iocs
[i
], "migration-file-incoming");
140 qio_channel_add_watch_full(iocs
[i
], G_IO_IN
,
141 file_accept_incoming_migration
,
143 g_main_context_get_thread_default());
147 void file_start_incoming_migration(FileMigrationArgs
*file_args
, Error
**errp
)
149 g_autofree
char *filename
= g_strdup(file_args
->filename
);
150 QIOChannelFile
*fioc
= NULL
;
151 uint64_t offset
= file_args
->offset
;
153 trace_migration_file_incoming(filename
);
155 fioc
= qio_channel_file_new_path(filename
, O_RDONLY
, 0, errp
);
161 qio_channel_io_seek(QIO_CHANNEL(fioc
), offset
, SEEK_SET
, errp
) < 0) {
162 object_unref(OBJECT(fioc
));
166 file_create_incoming_channels(QIO_CHANNEL(fioc
), errp
);
169 int file_write_ramblock_iov(QIOChannel
*ioc
, const struct iovec
*iov
,
170 int niov
, RAMBlock
*block
, Error
**errp
)
173 int i
, slice_idx
, slice_num
;
174 uintptr_t base
, next
, offset
;
181 * If the iov array doesn't have contiguous elements, we need to
182 * split it in slices because we only have one file offset for the
183 * whole iov. Do this here so callers don't need to break the iov
186 for (i
= 0; i
< niov
; i
++, slice_num
++) {
187 base
= (uintptr_t) iov
[i
].iov_base
;
190 len
= iov
[i
].iov_len
;
191 next
= (uintptr_t) iov
[i
+ 1].iov_base
;
193 if (base
+ len
== next
) {
199 * Use the offset of the first element of the segment that
202 offset
= (uintptr_t) iov
[slice_idx
].iov_base
- (uintptr_t) block
->host
;
203 if (offset
>= block
->used_length
) {
204 error_setg(errp
, "offset %" PRIxPTR
205 "outside of ramblock %s range", offset
, block
->idstr
);
210 ret
= qio_channel_pwritev(ioc
, &iov
[slice_idx
], slice_num
,
211 block
->pages_offset
+ offset
, errp
);
216 slice_idx
+= slice_num
;
220 return (ret
< 0) ? ret
: 0;
223 int multifd_file_recv_data(MultiFDRecvParams
*p
, Error
**errp
)
225 MultiFDRecvData
*data
= p
->data
;
228 ret
= qio_channel_pread(p
->c
, (char *) data
->opaque
,
229 data
->size
, data
->file_offset
, errp
);
230 if (ret
!= data
->size
) {
232 "multifd recv (%u): read 0x%zx, expected 0x%zx",
233 p
->id
, ret
, data
->size
);