hw/ide: Add the possibility to disable the CompactFlash device in the build
[qemu/ar7.git] / migration / qemu-file.c
blob94231ff2955c80b3d0fab11a40510d34c334a826
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/madvise.h"
27 #include "qemu/error-report.h"
28 #include "qemu/iov.h"
29 #include "migration.h"
30 #include "migration-stats.h"
31 #include "qemu-file.h"
32 #include "trace.h"
33 #include "options.h"
34 #include "qapi/error.h"
35 #include "rdma.h"
37 #define IO_BUF_SIZE 32768
38 #define MAX_IOV_SIZE MIN_CONST(IOV_MAX, 64)
40 struct QEMUFile {
41 QIOChannel *ioc;
42 bool is_writable;
44 int buf_index;
45 int buf_size; /* 0 when writing */
46 uint8_t buf[IO_BUF_SIZE];
48 DECLARE_BITMAP(may_free, MAX_IOV_SIZE);
49 struct iovec iov[MAX_IOV_SIZE];
50 unsigned int iovcnt;
52 int last_error;
53 Error *last_error_obj;
57 * Stop a file from being read/written - not all backing files can do this
58 * typically only sockets can.
60 * TODO: convert to propagate Error objects instead of squashing
61 * to a fixed errno value
63 int qemu_file_shutdown(QEMUFile *f)
66 * We must set qemufile error before the real shutdown(), otherwise
67 * there can be a race window where we thought IO all went though
68 * (because last_error==NULL) but actually IO has already stopped.
70 * If without correct ordering, the race can happen like this:
72 * page receiver other thread
73 * ------------- ------------
74 * qemu_get_buffer()
75 * do shutdown()
76 * returns 0 (buffer all zero)
77 * (we didn't check this retcode)
78 * try to detect IO error
79 * last_error==NULL, IO okay
80 * install ALL-ZERO page
81 * set last_error
82 * --> guest crash!
84 if (!f->last_error) {
85 qemu_file_set_error(f, -EIO);
88 if (!qio_channel_has_feature(f->ioc,
89 QIO_CHANNEL_FEATURE_SHUTDOWN)) {
90 return -ENOSYS;
93 if (qio_channel_shutdown(f->ioc, QIO_CHANNEL_SHUTDOWN_BOTH, NULL) < 0) {
94 return -EIO;
97 return 0;
100 static QEMUFile *qemu_file_new_impl(QIOChannel *ioc, bool is_writable)
102 QEMUFile *f;
104 f = g_new0(QEMUFile, 1);
106 object_ref(ioc);
107 f->ioc = ioc;
108 f->is_writable = is_writable;
110 return f;
114 * Result: QEMUFile* for a 'return path' for comms in the opposite direction
115 * NULL if not available
117 QEMUFile *qemu_file_get_return_path(QEMUFile *f)
119 return qemu_file_new_impl(f->ioc, !f->is_writable);
122 QEMUFile *qemu_file_new_output(QIOChannel *ioc)
124 return qemu_file_new_impl(ioc, true);
127 QEMUFile *qemu_file_new_input(QIOChannel *ioc)
129 return qemu_file_new_impl(ioc, false);
133 * Get last error for stream f with optional Error*
135 * Return negative error value if there has been an error on previous
136 * operations, return 0 if no error happened.
138 * If errp is specified, a verbose error message will be copied over.
140 int qemu_file_get_error_obj(QEMUFile *f, Error **errp)
142 if (!f->last_error) {
143 return 0;
146 /* There is an error */
147 if (errp) {
148 if (f->last_error_obj) {
149 *errp = error_copy(f->last_error_obj);
150 } else {
151 error_setg_errno(errp, -f->last_error, "Channel error");
155 return f->last_error;
159 * Get last error for either stream f1 or f2 with optional Error*.
160 * The error returned (non-zero) can be either from f1 or f2.
162 * If any of the qemufile* is NULL, then skip the check on that file.
164 * When there is no error on both qemufile, zero is returned.
166 int qemu_file_get_error_obj_any(QEMUFile *f1, QEMUFile *f2, Error **errp)
168 int ret = 0;
170 if (f1) {
171 ret = qemu_file_get_error_obj(f1, errp);
172 /* If there's already error detected, return */
173 if (ret) {
174 return ret;
178 if (f2) {
179 ret = qemu_file_get_error_obj(f2, errp);
182 return ret;
186 * Set the last error for stream f with optional Error*
188 void qemu_file_set_error_obj(QEMUFile *f, int ret, Error *err)
190 if (f->last_error == 0 && ret) {
191 f->last_error = ret;
192 error_propagate(&f->last_error_obj, err);
193 } else if (err) {
194 error_report_err(err);
199 * Get last error for stream f
201 * Return negative error value if there has been an error on previous
202 * operations, return 0 if no error happened.
205 int qemu_file_get_error(QEMUFile *f)
207 return f->last_error;
211 * Set the last error for stream f
213 void qemu_file_set_error(QEMUFile *f, int ret)
215 qemu_file_set_error_obj(f, ret, NULL);
218 static bool qemu_file_is_writable(QEMUFile *f)
220 return f->is_writable;
223 static void qemu_iovec_release_ram(QEMUFile *f)
225 struct iovec iov;
226 unsigned long idx;
228 /* Find and release all the contiguous memory ranges marked as may_free. */
229 idx = find_next_bit(f->may_free, f->iovcnt, 0);
230 if (idx >= f->iovcnt) {
231 return;
233 iov = f->iov[idx];
235 /* The madvise() in the loop is called for iov within a continuous range and
236 * then reinitialize the iov. And in the end, madvise() is called for the
237 * last iov.
239 while ((idx = find_next_bit(f->may_free, f->iovcnt, idx + 1)) < f->iovcnt) {
240 /* check for adjacent buffer and coalesce them */
241 if (iov.iov_base + iov.iov_len == f->iov[idx].iov_base) {
242 iov.iov_len += f->iov[idx].iov_len;
243 continue;
245 if (qemu_madvise(iov.iov_base, iov.iov_len, QEMU_MADV_DONTNEED) < 0) {
246 error_report("migrate: madvise DONTNEED failed %p %zd: %s",
247 iov.iov_base, iov.iov_len, strerror(errno));
249 iov = f->iov[idx];
251 if (qemu_madvise(iov.iov_base, iov.iov_len, QEMU_MADV_DONTNEED) < 0) {
252 error_report("migrate: madvise DONTNEED failed %p %zd: %s",
253 iov.iov_base, iov.iov_len, strerror(errno));
255 memset(f->may_free, 0, sizeof(f->may_free));
260 * Flushes QEMUFile buffer
262 * This will flush all pending data. If data was only partially flushed, it
263 * will set an error state.
265 int qemu_fflush(QEMUFile *f)
267 if (!qemu_file_is_writable(f)) {
268 return f->last_error;
271 if (f->last_error) {
272 return f->last_error;
274 if (f->iovcnt > 0) {
275 Error *local_error = NULL;
276 if (qio_channel_writev_all(f->ioc,
277 f->iov, f->iovcnt,
278 &local_error) < 0) {
279 qemu_file_set_error_obj(f, -EIO, local_error);
280 } else {
281 uint64_t size = iov_size(f->iov, f->iovcnt);
282 stat64_add(&mig_stats.qemu_file_transferred, size);
285 qemu_iovec_release_ram(f);
288 f->buf_index = 0;
289 f->iovcnt = 0;
290 return f->last_error;
294 * Attempt to fill the buffer from the underlying file
295 * Returns the number of bytes read, or negative value for an error.
297 * Note that it can return a partially full buffer even in a not error/not EOF
298 * case if the underlying file descriptor gives a short read, and that can
299 * happen even on a blocking fd.
301 static ssize_t coroutine_mixed_fn qemu_fill_buffer(QEMUFile *f)
303 int len;
304 int pending;
305 Error *local_error = NULL;
307 assert(!qemu_file_is_writable(f));
309 pending = f->buf_size - f->buf_index;
310 if (pending > 0) {
311 memmove(f->buf, f->buf + f->buf_index, pending);
313 f->buf_index = 0;
314 f->buf_size = pending;
316 if (qemu_file_get_error(f)) {
317 return 0;
320 do {
321 len = qio_channel_read(f->ioc,
322 (char *)f->buf + pending,
323 IO_BUF_SIZE - pending,
324 &local_error);
325 if (len == QIO_CHANNEL_ERR_BLOCK) {
326 if (qemu_in_coroutine()) {
327 qio_channel_yield(f->ioc, G_IO_IN);
328 } else {
329 qio_channel_wait(f->ioc, G_IO_IN);
331 } else if (len < 0) {
332 len = -EIO;
334 } while (len == QIO_CHANNEL_ERR_BLOCK);
336 if (len > 0) {
337 f->buf_size += len;
338 } else if (len == 0) {
339 qemu_file_set_error_obj(f, -EIO, local_error);
340 } else {
341 qemu_file_set_error_obj(f, len, local_error);
344 return len;
347 /** Closes the file
349 * Returns negative error value if any error happened on previous operations or
350 * while closing the file. Returns 0 or positive number on success.
352 * The meaning of return value on success depends on the specific backend
353 * being used.
355 int qemu_fclose(QEMUFile *f)
357 int ret = qemu_fflush(f);
358 int ret2 = qio_channel_close(f->ioc, NULL);
359 if (ret >= 0) {
360 ret = ret2;
362 g_clear_pointer(&f->ioc, object_unref);
363 error_free(f->last_error_obj);
364 g_free(f);
365 trace_qemu_file_fclose();
366 return ret;
370 * Add buf to iovec. Do flush if iovec is full.
372 * Return values:
373 * 1 iovec is full and flushed
374 * 0 iovec is not flushed
377 static int add_to_iovec(QEMUFile *f, const uint8_t *buf, size_t size,
378 bool may_free)
380 /* check for adjacent buffer and coalesce them */
381 if (f->iovcnt > 0 && buf == f->iov[f->iovcnt - 1].iov_base +
382 f->iov[f->iovcnt - 1].iov_len &&
383 may_free == test_bit(f->iovcnt - 1, f->may_free))
385 f->iov[f->iovcnt - 1].iov_len += size;
386 } else {
387 if (f->iovcnt >= MAX_IOV_SIZE) {
388 /* Should only happen if a previous fflush failed */
389 assert(qemu_file_get_error(f) || !qemu_file_is_writable(f));
390 return 1;
392 if (may_free) {
393 set_bit(f->iovcnt, f->may_free);
395 f->iov[f->iovcnt].iov_base = (uint8_t *)buf;
396 f->iov[f->iovcnt++].iov_len = size;
399 if (f->iovcnt >= MAX_IOV_SIZE) {
400 qemu_fflush(f);
401 return 1;
404 return 0;
407 static void add_buf_to_iovec(QEMUFile *f, size_t len)
409 if (!add_to_iovec(f, f->buf + f->buf_index, len, false)) {
410 f->buf_index += len;
411 if (f->buf_index == IO_BUF_SIZE) {
412 qemu_fflush(f);
417 void qemu_put_buffer_async(QEMUFile *f, const uint8_t *buf, size_t size,
418 bool may_free)
420 if (f->last_error) {
421 return;
424 add_to_iovec(f, buf, size, may_free);
427 void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, size_t size)
429 size_t l;
431 if (f->last_error) {
432 return;
435 while (size > 0) {
436 l = IO_BUF_SIZE - f->buf_index;
437 if (l > size) {
438 l = size;
440 memcpy(f->buf + f->buf_index, buf, l);
441 add_buf_to_iovec(f, l);
442 if (qemu_file_get_error(f)) {
443 break;
445 buf += l;
446 size -= l;
450 void qemu_put_byte(QEMUFile *f, int v)
452 if (f->last_error) {
453 return;
456 f->buf[f->buf_index] = v;
457 add_buf_to_iovec(f, 1);
460 void qemu_file_skip(QEMUFile *f, int size)
462 if (f->buf_index + size <= f->buf_size) {
463 f->buf_index += size;
468 * Read 'size' bytes from file (at 'offset') without moving the
469 * pointer and set 'buf' to point to that data.
471 * It will return size bytes unless there was an error, in which case it will
472 * return as many as it managed to read (assuming blocking fd's which
473 * all current QEMUFile are)
475 size_t coroutine_mixed_fn qemu_peek_buffer(QEMUFile *f, uint8_t **buf, size_t size, size_t offset)
477 ssize_t pending;
478 size_t index;
480 assert(!qemu_file_is_writable(f));
481 assert(offset < IO_BUF_SIZE);
482 assert(size <= IO_BUF_SIZE - offset);
484 /* The 1st byte to read from */
485 index = f->buf_index + offset;
486 /* The number of available bytes starting at index */
487 pending = f->buf_size - index;
490 * qemu_fill_buffer might return just a few bytes, even when there isn't
491 * an error, so loop collecting them until we get enough.
493 while (pending < size) {
494 int received = qemu_fill_buffer(f);
496 if (received <= 0) {
497 break;
500 index = f->buf_index + offset;
501 pending = f->buf_size - index;
504 if (pending <= 0) {
505 return 0;
507 if (size > pending) {
508 size = pending;
511 *buf = f->buf + index;
512 return size;
516 * Read 'size' bytes of data from the file into buf.
517 * 'size' can be larger than the internal buffer.
519 * It will return size bytes unless there was an error, in which case it will
520 * return as many as it managed to read (assuming blocking fd's which
521 * all current QEMUFile are)
523 size_t coroutine_mixed_fn qemu_get_buffer(QEMUFile *f, uint8_t *buf, size_t size)
525 size_t pending = size;
526 size_t done = 0;
528 while (pending > 0) {
529 size_t res;
530 uint8_t *src;
532 res = qemu_peek_buffer(f, &src, MIN(pending, IO_BUF_SIZE), 0);
533 if (res == 0) {
534 return done;
536 memcpy(buf, src, res);
537 qemu_file_skip(f, res);
538 buf += res;
539 pending -= res;
540 done += res;
542 return done;
546 * Read 'size' bytes of data from the file.
547 * 'size' can be larger than the internal buffer.
549 * The data:
550 * may be held on an internal buffer (in which case *buf is updated
551 * to point to it) that is valid until the next qemu_file operation.
552 * OR
553 * will be copied to the *buf that was passed in.
555 * The code tries to avoid the copy if possible.
557 * It will return size bytes unless there was an error, in which case it will
558 * return as many as it managed to read (assuming blocking fd's which
559 * all current QEMUFile are)
561 * Note: Since **buf may get changed, the caller should take care to
562 * keep a pointer to the original buffer if it needs to deallocate it.
564 size_t coroutine_mixed_fn qemu_get_buffer_in_place(QEMUFile *f, uint8_t **buf, size_t size)
566 if (size < IO_BUF_SIZE) {
567 size_t res;
568 uint8_t *src = NULL;
570 res = qemu_peek_buffer(f, &src, size, 0);
572 if (res == size) {
573 qemu_file_skip(f, res);
574 *buf = src;
575 return res;
579 return qemu_get_buffer(f, *buf, size);
583 * Peeks a single byte from the buffer; this isn't guaranteed to work if
584 * offset leaves a gap after the previous read/peeked data.
586 int coroutine_mixed_fn qemu_peek_byte(QEMUFile *f, int offset)
588 int index = f->buf_index + offset;
590 assert(!qemu_file_is_writable(f));
591 assert(offset < IO_BUF_SIZE);
593 if (index >= f->buf_size) {
594 qemu_fill_buffer(f);
595 index = f->buf_index + offset;
596 if (index >= f->buf_size) {
597 return 0;
600 return f->buf[index];
603 int coroutine_mixed_fn qemu_get_byte(QEMUFile *f)
605 int result;
607 result = qemu_peek_byte(f, 0);
608 qemu_file_skip(f, 1);
609 return result;
612 uint64_t qemu_file_transferred(QEMUFile *f)
614 uint64_t ret = stat64_get(&mig_stats.qemu_file_transferred);
615 int i;
617 g_assert(qemu_file_is_writable(f));
619 for (i = 0; i < f->iovcnt; i++) {
620 ret += f->iov[i].iov_len;
623 return ret;
626 void qemu_put_be16(QEMUFile *f, unsigned int v)
628 qemu_put_byte(f, v >> 8);
629 qemu_put_byte(f, v);
632 void qemu_put_be32(QEMUFile *f, unsigned int v)
634 qemu_put_byte(f, v >> 24);
635 qemu_put_byte(f, v >> 16);
636 qemu_put_byte(f, v >> 8);
637 qemu_put_byte(f, v);
640 void qemu_put_be64(QEMUFile *f, uint64_t v)
642 qemu_put_be32(f, v >> 32);
643 qemu_put_be32(f, v);
646 unsigned int qemu_get_be16(QEMUFile *f)
648 unsigned int v;
649 v = qemu_get_byte(f) << 8;
650 v |= qemu_get_byte(f);
651 return v;
654 unsigned int qemu_get_be32(QEMUFile *f)
656 unsigned int v;
657 v = (unsigned int)qemu_get_byte(f) << 24;
658 v |= qemu_get_byte(f) << 16;
659 v |= qemu_get_byte(f) << 8;
660 v |= qemu_get_byte(f);
661 return v;
664 uint64_t qemu_get_be64(QEMUFile *f)
666 uint64_t v;
667 v = (uint64_t)qemu_get_be32(f) << 32;
668 v |= qemu_get_be32(f);
669 return v;
672 /* return the size after compression, or negative value on error */
673 static int qemu_compress_data(z_stream *stream, uint8_t *dest, size_t dest_len,
674 const uint8_t *source, size_t source_len)
676 int err;
678 err = deflateReset(stream);
679 if (err != Z_OK) {
680 return -1;
683 stream->avail_in = source_len;
684 stream->next_in = (uint8_t *)source;
685 stream->avail_out = dest_len;
686 stream->next_out = dest;
688 err = deflate(stream, Z_FINISH);
689 if (err != Z_STREAM_END) {
690 return -1;
693 return stream->next_out - dest;
696 /* Compress size bytes of data start at p and store the compressed
697 * data to the buffer of f.
699 * Since the file is dummy file with empty_ops, return -1 if f has no space to
700 * save the compressed data.
702 ssize_t qemu_put_compression_data(QEMUFile *f, z_stream *stream,
703 const uint8_t *p, size_t size)
705 ssize_t blen = IO_BUF_SIZE - f->buf_index - sizeof(int32_t);
707 if (blen < compressBound(size)) {
708 return -1;
711 blen = qemu_compress_data(stream, f->buf + f->buf_index + sizeof(int32_t),
712 blen, p, size);
713 if (blen < 0) {
714 return -1;
717 qemu_put_be32(f, blen);
718 add_buf_to_iovec(f, blen);
719 return blen + sizeof(int32_t);
722 /* Put the data in the buffer of f_src to the buffer of f_des, and
723 * then reset the buf_index of f_src to 0.
726 int qemu_put_qemu_file(QEMUFile *f_des, QEMUFile *f_src)
728 int len = 0;
730 if (f_src->buf_index > 0) {
731 len = f_src->buf_index;
732 qemu_put_buffer(f_des, f_src->buf, f_src->buf_index);
733 f_src->buf_index = 0;
734 f_src->iovcnt = 0;
736 return len;
740 * Check if the writable buffer is empty
743 bool qemu_file_buffer_empty(QEMUFile *file)
745 assert(qemu_file_is_writable(file));
747 return !file->iovcnt;
751 * Get a string whose length is determined by a single preceding byte
752 * A preallocated 256 byte buffer must be passed in.
753 * Returns: len on success and a 0 terminated string in the buffer
754 * else 0
755 * (Note a 0 length string will return 0 either way)
757 size_t coroutine_fn qemu_get_counted_string(QEMUFile *f, char buf[256])
759 size_t len = qemu_get_byte(f);
760 size_t res = qemu_get_buffer(f, (uint8_t *)buf, len);
762 buf[res] = 0;
764 return res == len ? res : 0;
768 * Put a string with one preceding byte containing its length. The length of
769 * the string should be less than 256.
771 void qemu_put_counted_string(QEMUFile *f, const char *str)
773 size_t len = strlen(str);
775 assert(len < 256);
776 qemu_put_byte(f, len);
777 qemu_put_buffer(f, (const uint8_t *)str, len);
781 * Set the blocking state of the QEMUFile.
782 * Note: On some transports the OS only keeps a single blocking state for
783 * both directions, and thus changing the blocking on the main
784 * QEMUFile can also affect the return path.
786 void qemu_file_set_blocking(QEMUFile *f, bool block)
788 qio_channel_set_blocking(f->ioc, block, NULL);
792 * qemu_file_get_ioc:
794 * Get the ioc object for the file, without incrementing
795 * the reference count.
797 * Returns: the ioc object
799 QIOChannel *qemu_file_get_ioc(QEMUFile *file)
801 return file->ioc;
805 * Read size bytes from QEMUFile f and write them to fd.
807 int qemu_file_get_to_fd(QEMUFile *f, int fd, size_t size)
809 while (size) {
810 size_t pending = f->buf_size - f->buf_index;
811 ssize_t rc;
813 if (!pending) {
814 rc = qemu_fill_buffer(f);
815 if (rc < 0) {
816 return rc;
818 if (rc == 0) {
819 return -EIO;
821 continue;
824 rc = write(fd, f->buf + f->buf_index, MIN(pending, size));
825 if (rc < 0) {
826 return -errno;
828 if (rc == 0) {
829 return -EIO;
831 f->buf_index += rc;
832 size -= rc;
835 return 0;