]> git.proxmox.com Git - mirror_qemu.git/blame - migration/qemu-file.h
block/copy-before-write: implement cbw-timeout option
[mirror_qemu.git] / migration / qemu-file.h
CommitLineData
701a8f76
PB
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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.
23 */
175de524 24
08a0aee1
JQ
25#ifndef MIGRATION_QEMU_FILE_H
26#define MIGRATION_QEMU_FILE_H
deb22f9a 27
dcaf446e 28#include <zlib.h>
6a0acfff 29#include "exec/cpu-common.h"
c6ad5be7 30#include "io/channel.h"
dcaf446e 31
43487c67
MH
32/*
33 * This function provides hooks around different
34 * stages of RAM migration.
632e3a5c 35 * 'data' is call specific data associated with the 'flags' value
43487c67 36 */
365c0463 37typedef int (QEMURamHookFunc)(QEMUFile *f, uint64_t flags, void *data);
43487c67
MH
38
39/*
40 * Constants used by ram_control_* hooks
41 */
632e3a5c
DDAG
42#define RAM_CONTROL_SETUP 0
43#define RAM_CONTROL_ROUND 1
44#define RAM_CONTROL_HOOK 2
45#define RAM_CONTROL_FINISH 3
46#define RAM_CONTROL_BLOCK_REG 4
43487c67
MH
47
48/*
49 * This function allows override of where the RAM page
50 * is saved (such as RDMA, for example.)
51 */
365c0463
DB
52typedef size_t (QEMURamSaveFunc)(QEMUFile *f,
53 ram_addr_t block_offset,
54 ram_addr_t offset,
55 size_t size,
56 uint64_t *bytes_sent);
43487c67 57
0436e09f 58typedef struct QEMUFileHooks {
43487c67
MH
59 QEMURamHookFunc *before_ram_iterate;
60 QEMURamHookFunc *after_ram_iterate;
61 QEMURamHookFunc *hook_ram_load;
62 QEMURamSaveFunc *save_page;
0436e09f 63} QEMUFileHooks;
9229bf3c 64
77ef2dc1
DB
65QEMUFile *qemu_file_new_input(QIOChannel *ioc);
66QEMUFile *qemu_file_new_output(QIOChannel *ioc);
0436e09f 67void qemu_file_set_hooks(QEMUFile *f, const QEMUFileHooks *hooks);
701a8f76 68int qemu_fclose(QEMUFile *f);
fbfa6404
DB
69
70/*
71 * qemu_file_total_transferred:
72 *
73 * Report the total number of bytes transferred with
74 * this file.
75 *
76 * For writable files, any pending buffers will be
77 * flushed, so the reported value will be equal to
78 * the number of bytes transferred on the wire.
79 *
80 * For readable files, the reported value will be
81 * equal to the number of bytes transferred on the
82 * wire.
83 *
84 * Returns: the total bytes transferred
85 */
86int64_t qemu_file_total_transferred(QEMUFile *f);
87
88/*
89 * qemu_file_total_transferred_fast:
90 *
91 * As qemu_file_total_transferred except for writable
92 * files, where no flush is performed and the reported
93 * amount will include the size of any queued buffers,
94 * on top of the amount actually transferred.
95 *
96 * Returns: the total bytes transferred and queued
97 */
98int64_t qemu_file_total_transferred_fast(QEMUFile *f);
99
6181ec24
OW
100/*
101 * put_buffer without copying the buffer.
102 * The buffer should be available till it is sent asynchronously.
103 */
53f09a10
PB
104void qemu_put_buffer_async(QEMUFile *f, const uint8_t *buf, size_t size,
105 bool may_free);
bc1256f7 106bool qemu_file_mode_is_not_valid(const char *mode);
e68dd365 107bool qemu_file_is_writable(QEMUFile *f);
701a8f76 108
08a0aee1 109#include "migration/qemu-file-types.h"
deb22f9a 110
56f3835f 111size_t qemu_peek_buffer(QEMUFile *f, uint8_t **buf, size_t size, size_t offset);
9504fb51 112size_t qemu_get_buffer_in_place(QEMUFile *f, uint8_t **buf, size_t size);
dcaf446e
XG
113ssize_t qemu_put_compression_data(QEMUFile *f, z_stream *stream,
114 const uint8_t *p, size_t size);
44f0eadc 115int qemu_put_qemu_file(QEMUFile *f_des, QEMUFile *f_src);
9504fb51 116
548f52ea
DDAG
117/*
118 * Note that you can only peek continuous bytes from where the current pointer
119 * is; you aren't guaranteed to be able to peak to +n bytes unless you've
120 * previously peeked +n-1.
121 */
c961514f 122int qemu_peek_byte(QEMUFile *f, int offset);
c961514f 123void qemu_file_skip(QEMUFile *f, int size);
1a93bd2f
DB
124/*
125 * qemu_file_credit_transfer:
126 *
127 * Report on a number of bytes that have been transferred
128 * out of band from the main file object I/O methods. This
129 * accounting information tracks the total migration traffic.
130 */
131void qemu_file_credit_transfer(QEMUFile *f, size_t size);
1964a397 132void qemu_file_reset_rate_limit(QEMUFile *f);
bc698c36
DB
133/*
134 * qemu_file_acct_rate_limit:
135 *
136 * Report on a number of bytes the have been transferred
137 * out of band from the main file object I/O methods, and
138 * need to be applied to the rate limiting calcuations
139 */
140void qemu_file_acct_rate_limit(QEMUFile *f, int64_t len);
1964a397 141void qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate);
701a8f76 142int64_t qemu_file_get_rate_limit(QEMUFile *f);
3d661c8a
YK
143int qemu_file_get_error_obj(QEMUFile *f, Error **errp);
144void qemu_file_set_error_obj(QEMUFile *f, int ret, Error *err);
c961514f 145void qemu_file_set_error(QEMUFile *f, int ret);
e1a8c9b6 146int qemu_file_shutdown(QEMUFile *f);
adc468e9 147QEMUFile *qemu_file_get_return_path(QEMUFile *f);
be903b2a 148void qemu_fflush(QEMUFile *f);
a800cd5c 149void qemu_file_set_blocking(QEMUFile *f, bool block);
701a8f76 150
2ce3bf1a
JQ
151void ram_control_before_iterate(QEMUFile *f, uint64_t flags);
152void ram_control_after_iterate(QEMUFile *f, uint64_t flags);
153void ram_control_load_hook(QEMUFile *f, uint64_t flags, void *data);
154
155/* Whenever this is found in the data stream, the flags
156 * will be passed to ram_control_load_hook in the incoming-migration
157 * side. This lets before_ram_iterate/after_ram_iterate add
158 * transport-specific sections to the RAM migration data.
159 */
160#define RAM_SAVE_FLAG_HOOK 0x80
161
162#define RAM_SAVE_CONTROL_NOT_SUPP -1000
163#define RAM_SAVE_CONTROL_DELAYED -2000
164
165size_t ram_control_save_page(QEMUFile *f, ram_addr_t block_offset,
166 ram_addr_t offset, size_t size,
167 uint64_t *bytes_sent);
c6ad5be7 168QIOChannel *qemu_file_get_ioc(QEMUFile *file);
08a0aee1 169
701a8f76 170#endif