migration: Introduce migration_ioc_[un]register_yank()
[qemu.git] / migration / qemu-file-channel.c
blob867a5ed0c33de8aa325fdb16278edd08b6707258
1 /*
2 * QEMUFile backend for QIOChannel objects
4 * Copyright (c) 2015-2016 Red Hat, Inc
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
25 #include "qemu/osdep.h"
26 #include "qemu-file-channel.h"
27 #include "qemu-file.h"
28 #include "io/channel-socket.h"
29 #include "io/channel-tls.h"
30 #include "qemu/iov.h"
31 #include "qemu/yank.h"
32 #include "yank_functions.h"
35 static ssize_t channel_writev_buffer(void *opaque,
36 struct iovec *iov,
37 int iovcnt,
38 int64_t pos,
39 Error **errp)
41 QIOChannel *ioc = QIO_CHANNEL(opaque);
42 ssize_t done = 0;
43 struct iovec *local_iov = g_new(struct iovec, iovcnt);
44 struct iovec *local_iov_head = local_iov;
45 unsigned int nlocal_iov = iovcnt;
47 nlocal_iov = iov_copy(local_iov, nlocal_iov,
48 iov, iovcnt,
49 0, iov_size(iov, iovcnt));
51 while (nlocal_iov > 0) {
52 ssize_t len;
53 len = qio_channel_writev(ioc, local_iov, nlocal_iov, errp);
54 if (len == QIO_CHANNEL_ERR_BLOCK) {
55 if (qemu_in_coroutine()) {
56 qio_channel_yield(ioc, G_IO_OUT);
57 } else {
58 qio_channel_wait(ioc, G_IO_OUT);
60 continue;
62 if (len < 0) {
63 done = -EIO;
64 goto cleanup;
67 iov_discard_front(&local_iov, &nlocal_iov, len);
68 done += len;
71 cleanup:
72 g_free(local_iov_head);
73 return done;
77 static ssize_t channel_get_buffer(void *opaque,
78 uint8_t *buf,
79 int64_t pos,
80 size_t size,
81 Error **errp)
83 QIOChannel *ioc = QIO_CHANNEL(opaque);
84 ssize_t ret;
86 do {
87 ret = qio_channel_read(ioc, (char *)buf, size, errp);
88 if (ret < 0) {
89 if (ret == QIO_CHANNEL_ERR_BLOCK) {
90 if (qemu_in_coroutine()) {
91 qio_channel_yield(ioc, G_IO_IN);
92 } else {
93 qio_channel_wait(ioc, G_IO_IN);
95 } else {
96 return -EIO;
99 } while (ret == QIO_CHANNEL_ERR_BLOCK);
101 return ret;
105 static int channel_close(void *opaque, Error **errp)
107 int ret;
108 QIOChannel *ioc = QIO_CHANNEL(opaque);
109 ret = qio_channel_close(ioc, errp);
110 if (OBJECT(ioc)->ref == 1) {
111 migration_ioc_unregister_yank(ioc);
113 object_unref(OBJECT(ioc));
114 return ret;
118 static int channel_shutdown(void *opaque,
119 bool rd,
120 bool wr,
121 Error **errp)
123 QIOChannel *ioc = QIO_CHANNEL(opaque);
125 if (qio_channel_has_feature(ioc,
126 QIO_CHANNEL_FEATURE_SHUTDOWN)) {
127 QIOChannelShutdown mode;
128 if (rd && wr) {
129 mode = QIO_CHANNEL_SHUTDOWN_BOTH;
130 } else if (rd) {
131 mode = QIO_CHANNEL_SHUTDOWN_READ;
132 } else {
133 mode = QIO_CHANNEL_SHUTDOWN_WRITE;
135 if (qio_channel_shutdown(ioc, mode, errp) < 0) {
136 return -EIO;
139 return 0;
143 static int channel_set_blocking(void *opaque,
144 bool enabled,
145 Error **errp)
147 QIOChannel *ioc = QIO_CHANNEL(opaque);
149 if (qio_channel_set_blocking(ioc, enabled, errp) < 0) {
150 return -1;
152 return 0;
155 static QEMUFile *channel_get_input_return_path(void *opaque)
157 QIOChannel *ioc = QIO_CHANNEL(opaque);
159 return qemu_fopen_channel_output(ioc);
162 static QEMUFile *channel_get_output_return_path(void *opaque)
164 QIOChannel *ioc = QIO_CHANNEL(opaque);
166 return qemu_fopen_channel_input(ioc);
169 static const QEMUFileOps channel_input_ops = {
170 .get_buffer = channel_get_buffer,
171 .close = channel_close,
172 .shut_down = channel_shutdown,
173 .set_blocking = channel_set_blocking,
174 .get_return_path = channel_get_input_return_path,
178 static const QEMUFileOps channel_output_ops = {
179 .writev_buffer = channel_writev_buffer,
180 .close = channel_close,
181 .shut_down = channel_shutdown,
182 .set_blocking = channel_set_blocking,
183 .get_return_path = channel_get_output_return_path,
187 QEMUFile *qemu_fopen_channel_input(QIOChannel *ioc)
189 object_ref(OBJECT(ioc));
190 return qemu_fopen_ops(ioc, &channel_input_ops);
193 QEMUFile *qemu_fopen_channel_output(QIOChannel *ioc)
195 object_ref(OBJECT(ioc));
196 return qemu_fopen_ops(ioc, &channel_output_ops);