migration: introduce set_blocking function in QEMUFileOps
[qemu/ar7.git] / migration / qemu-file.c
blob2b25decd5b29dd1014673831af0bfba1e73bb916
1 /*
2 * QEMU System Emulator
4 * Copyright (c) 2003-2008 Fabrice Bellard
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.
24 #include "qemu/osdep.h"
25 #include <zlib.h>
26 #include "qemu-common.h"
27 #include "qemu/error-report.h"
28 #include "qemu/iov.h"
29 #include "qemu/sockets.h"
30 #include "qemu/coroutine.h"
31 #include "migration/migration.h"
32 #include "migration/qemu-file.h"
33 #include "migration/qemu-file-internal.h"
34 #include "trace.h"
37 * Stop a file from being read/written - not all backing files can do this
38 * typically only sockets can.
40 int qemu_file_shutdown(QEMUFile *f)
42 if (!f->ops->shut_down) {
43 return -ENOSYS;
45 return f->ops->shut_down(f->opaque, true, true);
49 * Result: QEMUFile* for a 'return path' for comms in the opposite direction
50 * NULL if not available
52 QEMUFile *qemu_file_get_return_path(QEMUFile *f)
54 if (!f->ops->get_return_path) {
55 return NULL;
57 return f->ops->get_return_path(f->opaque);
60 bool qemu_file_mode_is_not_valid(const char *mode)
62 if (mode == NULL ||
63 (mode[0] != 'r' && mode[0] != 'w') ||
64 mode[1] != 'b' || mode[2] != 0) {
65 fprintf(stderr, "qemu_fopen: Argument validity check failed\n");
66 return true;
69 return false;
72 QEMUFile *qemu_fopen_ops(void *opaque, const QEMUFileOps *ops)
74 QEMUFile *f;
76 f = g_new0(QEMUFile, 1);
78 f->opaque = opaque;
79 f->ops = ops;
80 return f;
84 void qemu_file_set_hooks(QEMUFile *f, const QEMUFileHooks *hooks)
86 f->hooks = hooks;
90 * Get last error for stream f
92 * Return negative error value if there has been an error on previous
93 * operations, return 0 if no error happened.
96 int qemu_file_get_error(QEMUFile *f)
98 return f->last_error;
101 void qemu_file_set_error(QEMUFile *f, int ret)
103 if (f->last_error == 0) {
104 f->last_error = ret;
108 bool qemu_file_is_writable(QEMUFile *f)
110 return f->ops->writev_buffer || f->ops->put_buffer;
114 * Flushes QEMUFile buffer
116 * If there is writev_buffer QEMUFileOps it uses it otherwise uses
117 * put_buffer ops. This will flush all pending data. If data was
118 * only partially flushed, it will set an error state.
120 void qemu_fflush(QEMUFile *f)
122 ssize_t ret = 0;
123 ssize_t expect = 0;
125 if (!qemu_file_is_writable(f)) {
126 return;
129 if (f->ops->writev_buffer) {
130 if (f->iovcnt > 0) {
131 expect = iov_size(f->iov, f->iovcnt);
132 ret = f->ops->writev_buffer(f->opaque, f->iov, f->iovcnt, f->pos);
134 } else {
135 if (f->buf_index > 0) {
136 expect = f->buf_index;
137 ret = f->ops->put_buffer(f->opaque, f->buf, f->pos, f->buf_index);
141 if (ret >= 0) {
142 f->pos += ret;
144 /* We expect the QEMUFile write impl to send the full
145 * data set we requested, so sanity check that.
147 if (ret != expect) {
148 qemu_file_set_error(f, ret < 0 ? ret : -EIO);
150 f->buf_index = 0;
151 f->iovcnt = 0;
154 void ram_control_before_iterate(QEMUFile *f, uint64_t flags)
156 int ret = 0;
158 if (f->hooks && f->hooks->before_ram_iterate) {
159 ret = f->hooks->before_ram_iterate(f, f->opaque, flags, NULL);
160 if (ret < 0) {
161 qemu_file_set_error(f, ret);
166 void ram_control_after_iterate(QEMUFile *f, uint64_t flags)
168 int ret = 0;
170 if (f->hooks && f->hooks->after_ram_iterate) {
171 ret = f->hooks->after_ram_iterate(f, f->opaque, flags, NULL);
172 if (ret < 0) {
173 qemu_file_set_error(f, ret);
178 void ram_control_load_hook(QEMUFile *f, uint64_t flags, void *data)
180 int ret = -EINVAL;
182 if (f->hooks && f->hooks->hook_ram_load) {
183 ret = f->hooks->hook_ram_load(f, f->opaque, flags, data);
184 if (ret < 0) {
185 qemu_file_set_error(f, ret);
187 } else {
189 * Hook is a hook specifically requested by the source sending a flag
190 * that expects there to be a hook on the destination.
192 if (flags == RAM_CONTROL_HOOK) {
193 qemu_file_set_error(f, ret);
198 size_t ram_control_save_page(QEMUFile *f, ram_addr_t block_offset,
199 ram_addr_t offset, size_t size,
200 uint64_t *bytes_sent)
202 if (f->hooks && f->hooks->save_page) {
203 int ret = f->hooks->save_page(f, f->opaque, block_offset,
204 offset, size, bytes_sent);
206 if (ret != RAM_SAVE_CONTROL_DELAYED) {
207 if (bytes_sent && *bytes_sent > 0) {
208 qemu_update_position(f, *bytes_sent);
209 } else if (ret < 0) {
210 qemu_file_set_error(f, ret);
214 return ret;
217 return RAM_SAVE_CONTROL_NOT_SUPP;
221 * Attempt to fill the buffer from the underlying file
222 * Returns the number of bytes read, or negative value for an error.
224 * Note that it can return a partially full buffer even in a not error/not EOF
225 * case if the underlying file descriptor gives a short read, and that can
226 * happen even on a blocking fd.
228 static ssize_t qemu_fill_buffer(QEMUFile *f)
230 int len;
231 int pending;
233 assert(!qemu_file_is_writable(f));
235 pending = f->buf_size - f->buf_index;
236 if (pending > 0) {
237 memmove(f->buf, f->buf + f->buf_index, pending);
239 f->buf_index = 0;
240 f->buf_size = pending;
242 len = f->ops->get_buffer(f->opaque, f->buf + pending, f->pos,
243 IO_BUF_SIZE - pending);
244 if (len > 0) {
245 f->buf_size += len;
246 f->pos += len;
247 } else if (len == 0) {
248 qemu_file_set_error(f, -EIO);
249 } else if (len != -EAGAIN) {
250 qemu_file_set_error(f, len);
253 return len;
256 int qemu_get_fd(QEMUFile *f)
258 if (f->ops->get_fd) {
259 return f->ops->get_fd(f->opaque);
261 return -1;
264 void qemu_update_position(QEMUFile *f, size_t size)
266 f->pos += size;
269 /** Closes the file
271 * Returns negative error value if any error happened on previous operations or
272 * while closing the file. Returns 0 or positive number on success.
274 * The meaning of return value on success depends on the specific backend
275 * being used.
277 int qemu_fclose(QEMUFile *f)
279 int ret;
280 qemu_fflush(f);
281 ret = qemu_file_get_error(f);
283 if (f->ops->close) {
284 int ret2 = f->ops->close(f->opaque);
285 if (ret >= 0) {
286 ret = ret2;
289 /* If any error was spotted before closing, we should report it
290 * instead of the close() return value.
292 if (f->last_error) {
293 ret = f->last_error;
295 g_free(f);
296 trace_qemu_file_fclose();
297 return ret;
300 static void add_to_iovec(QEMUFile *f, const uint8_t *buf, size_t size)
302 /* check for adjacent buffer and coalesce them */
303 if (f->iovcnt > 0 && buf == f->iov[f->iovcnt - 1].iov_base +
304 f->iov[f->iovcnt - 1].iov_len) {
305 f->iov[f->iovcnt - 1].iov_len += size;
306 } else {
307 f->iov[f->iovcnt].iov_base = (uint8_t *)buf;
308 f->iov[f->iovcnt++].iov_len = size;
311 if (f->iovcnt >= MAX_IOV_SIZE) {
312 qemu_fflush(f);
316 void qemu_put_buffer_async(QEMUFile *f, const uint8_t *buf, size_t size)
318 if (!f->ops->writev_buffer) {
319 qemu_put_buffer(f, buf, size);
320 return;
323 if (f->last_error) {
324 return;
327 f->bytes_xfer += size;
328 add_to_iovec(f, buf, size);
331 void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, size_t size)
333 size_t l;
335 if (f->last_error) {
336 return;
339 while (size > 0) {
340 l = IO_BUF_SIZE - f->buf_index;
341 if (l > size) {
342 l = size;
344 memcpy(f->buf + f->buf_index, buf, l);
345 f->bytes_xfer += l;
346 if (f->ops->writev_buffer) {
347 add_to_iovec(f, f->buf + f->buf_index, l);
349 f->buf_index += l;
350 if (f->buf_index == IO_BUF_SIZE) {
351 qemu_fflush(f);
353 if (qemu_file_get_error(f)) {
354 break;
356 buf += l;
357 size -= l;
361 void qemu_put_byte(QEMUFile *f, int v)
363 if (f->last_error) {
364 return;
367 f->buf[f->buf_index] = v;
368 f->bytes_xfer++;
369 if (f->ops->writev_buffer) {
370 add_to_iovec(f, f->buf + f->buf_index, 1);
372 f->buf_index++;
373 if (f->buf_index == IO_BUF_SIZE) {
374 qemu_fflush(f);
378 void qemu_file_skip(QEMUFile *f, int size)
380 if (f->buf_index + size <= f->buf_size) {
381 f->buf_index += size;
386 * Read 'size' bytes from file (at 'offset') without moving the
387 * pointer and set 'buf' to point to that data.
389 * It will return size bytes unless there was an error, in which case it will
390 * return as many as it managed to read (assuming blocking fd's which
391 * all current QEMUFile are)
393 size_t qemu_peek_buffer(QEMUFile *f, uint8_t **buf, size_t size, size_t offset)
395 ssize_t pending;
396 size_t index;
398 assert(!qemu_file_is_writable(f));
399 assert(offset < IO_BUF_SIZE);
400 assert(size <= IO_BUF_SIZE - offset);
402 /* The 1st byte to read from */
403 index = f->buf_index + offset;
404 /* The number of available bytes starting at index */
405 pending = f->buf_size - index;
408 * qemu_fill_buffer might return just a few bytes, even when there isn't
409 * an error, so loop collecting them until we get enough.
411 while (pending < size) {
412 int received = qemu_fill_buffer(f);
414 if (received <= 0) {
415 break;
418 index = f->buf_index + offset;
419 pending = f->buf_size - index;
422 if (pending <= 0) {
423 return 0;
425 if (size > pending) {
426 size = pending;
429 *buf = f->buf + index;
430 return size;
434 * Read 'size' bytes of data from the file into buf.
435 * 'size' can be larger than the internal buffer.
437 * It will return size bytes unless there was an error, in which case it will
438 * return as many as it managed to read (assuming blocking fd's which
439 * all current QEMUFile are)
441 size_t qemu_get_buffer(QEMUFile *f, uint8_t *buf, size_t size)
443 size_t pending = size;
444 size_t done = 0;
446 while (pending > 0) {
447 size_t res;
448 uint8_t *src;
450 res = qemu_peek_buffer(f, &src, MIN(pending, IO_BUF_SIZE), 0);
451 if (res == 0) {
452 return done;
454 memcpy(buf, src, res);
455 qemu_file_skip(f, res);
456 buf += res;
457 pending -= res;
458 done += res;
460 return done;
464 * Read 'size' bytes of data from the file.
465 * 'size' can be larger than the internal buffer.
467 * The data:
468 * may be held on an internal buffer (in which case *buf is updated
469 * to point to it) that is valid until the next qemu_file operation.
470 * OR
471 * will be copied to the *buf that was passed in.
473 * The code tries to avoid the copy if possible.
475 * It will return size bytes unless there was an error, in which case it will
476 * return as many as it managed to read (assuming blocking fd's which
477 * all current QEMUFile are)
479 * Note: Since **buf may get changed, the caller should take care to
480 * keep a pointer to the original buffer if it needs to deallocate it.
482 size_t qemu_get_buffer_in_place(QEMUFile *f, uint8_t **buf, size_t size)
484 if (size < IO_BUF_SIZE) {
485 size_t res;
486 uint8_t *src;
488 res = qemu_peek_buffer(f, &src, size, 0);
490 if (res == size) {
491 qemu_file_skip(f, res);
492 *buf = src;
493 return res;
497 return qemu_get_buffer(f, *buf, size);
501 * Peeks a single byte from the buffer; this isn't guaranteed to work if
502 * offset leaves a gap after the previous read/peeked data.
504 int qemu_peek_byte(QEMUFile *f, int offset)
506 int index = f->buf_index + offset;
508 assert(!qemu_file_is_writable(f));
509 assert(offset < IO_BUF_SIZE);
511 if (index >= f->buf_size) {
512 qemu_fill_buffer(f);
513 index = f->buf_index + offset;
514 if (index >= f->buf_size) {
515 return 0;
518 return f->buf[index];
521 int qemu_get_byte(QEMUFile *f)
523 int result;
525 result = qemu_peek_byte(f, 0);
526 qemu_file_skip(f, 1);
527 return result;
530 int64_t qemu_ftell_fast(QEMUFile *f)
532 int64_t ret = f->pos;
533 int i;
535 if (f->ops->writev_buffer) {
536 for (i = 0; i < f->iovcnt; i++) {
537 ret += f->iov[i].iov_len;
539 } else {
540 ret += f->buf_index;
543 return ret;
546 int64_t qemu_ftell(QEMUFile *f)
548 qemu_fflush(f);
549 return f->pos;
552 int qemu_file_rate_limit(QEMUFile *f)
554 if (qemu_file_get_error(f)) {
555 return 1;
557 if (f->xfer_limit > 0 && f->bytes_xfer > f->xfer_limit) {
558 return 1;
560 return 0;
563 int64_t qemu_file_get_rate_limit(QEMUFile *f)
565 return f->xfer_limit;
568 void qemu_file_set_rate_limit(QEMUFile *f, int64_t limit)
570 f->xfer_limit = limit;
573 void qemu_file_reset_rate_limit(QEMUFile *f)
575 f->bytes_xfer = 0;
578 void qemu_put_be16(QEMUFile *f, unsigned int v)
580 qemu_put_byte(f, v >> 8);
581 qemu_put_byte(f, v);
584 void qemu_put_be32(QEMUFile *f, unsigned int v)
586 qemu_put_byte(f, v >> 24);
587 qemu_put_byte(f, v >> 16);
588 qemu_put_byte(f, v >> 8);
589 qemu_put_byte(f, v);
592 void qemu_put_be64(QEMUFile *f, uint64_t v)
594 qemu_put_be32(f, v >> 32);
595 qemu_put_be32(f, v);
598 unsigned int qemu_get_be16(QEMUFile *f)
600 unsigned int v;
601 v = qemu_get_byte(f) << 8;
602 v |= qemu_get_byte(f);
603 return v;
606 unsigned int qemu_get_be32(QEMUFile *f)
608 unsigned int v;
609 v = (unsigned int)qemu_get_byte(f) << 24;
610 v |= qemu_get_byte(f) << 16;
611 v |= qemu_get_byte(f) << 8;
612 v |= qemu_get_byte(f);
613 return v;
616 uint64_t qemu_get_be64(QEMUFile *f)
618 uint64_t v;
619 v = (uint64_t)qemu_get_be32(f) << 32;
620 v |= qemu_get_be32(f);
621 return v;
624 /* compress size bytes of data start at p with specific compression
625 * level and store the compressed data to the buffer of f.
628 ssize_t qemu_put_compression_data(QEMUFile *f, const uint8_t *p, size_t size,
629 int level)
631 ssize_t blen = IO_BUF_SIZE - f->buf_index - sizeof(int32_t);
633 if (blen < compressBound(size)) {
634 return 0;
636 if (compress2(f->buf + f->buf_index + sizeof(int32_t), (uLongf *)&blen,
637 (Bytef *)p, size, level) != Z_OK) {
638 error_report("Compress Failed!");
639 return 0;
641 qemu_put_be32(f, blen);
642 f->buf_index += blen;
643 return blen + sizeof(int32_t);
646 /* Put the data in the buffer of f_src to the buffer of f_des, and
647 * then reset the buf_index of f_src to 0.
650 int qemu_put_qemu_file(QEMUFile *f_des, QEMUFile *f_src)
652 int len = 0;
654 if (f_src->buf_index > 0) {
655 len = f_src->buf_index;
656 qemu_put_buffer(f_des, f_src->buf, f_src->buf_index);
657 f_src->buf_index = 0;
659 return len;
663 * Get a string whose length is determined by a single preceding byte
664 * A preallocated 256 byte buffer must be passed in.
665 * Returns: len on success and a 0 terminated string in the buffer
666 * else 0
667 * (Note a 0 length string will return 0 either way)
669 size_t qemu_get_counted_string(QEMUFile *f, char buf[256])
671 size_t len = qemu_get_byte(f);
672 size_t res = qemu_get_buffer(f, (uint8_t *)buf, len);
674 buf[res] = 0;
676 return res == len ? res : 0;
680 * Set the blocking state of the QEMUFile.
681 * Note: On some transports the OS only keeps a single blocking state for
682 * both directions, and thus changing the blocking on the main
683 * QEMUFile can also affect the return path.
685 void qemu_file_set_blocking(QEMUFile *f, bool block)
687 if (f->ops->set_blocking) {
688 f->ops->set_blocking(f->opaque, block);
689 } else {
690 if (block) {
691 qemu_set_block(qemu_get_fd(f));
692 } else {
693 qemu_set_nonblock(qemu_get_fd(f));