blob: 977b9ae07c12a56b6d68ea3dcbe9fec61c94bad6 [file] [log] [blame]
Eduardo Habkost9a4ac512014-10-01 14:47:33 -03001/*
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 */
Peter Maydell1393a482016-01-26 18:16:54 +000024#include "qemu/osdep.h"
Liang Li44f0ead2015-03-23 16:32:19 +080025#include <zlib.h>
Eduardo Habkost093c4552013-11-28 12:01:16 -020026#include "qemu-common.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010027#include "qemu/error-report.h"
Eduardo Habkost093c4552013-11-28 12:01:16 -020028#include "qemu/iov.h"
Juan Quintela6666c962017-04-24 20:07:27 +020029#include "migration.h"
Juan Quintela08a0aee2017-04-20 18:52:18 +020030#include "qemu-file.h"
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +110031#include "trace.h"
Eduardo Habkost093c4552013-11-28 12:01:16 -020032
Daniel P. Berrangea24939f2016-04-27 11:05:13 +010033#define IO_BUF_SIZE 32768
34#define MAX_IOV_SIZE MIN(IOV_MAX, 64)
35
36struct QEMUFile {
37 const QEMUFileOps *ops;
38 const QEMUFileHooks *hooks;
39 void *opaque;
40
41 int64_t bytes_xfer;
42 int64_t xfer_limit;
43
44 int64_t pos; /* start of buffer when writing, end of buffer
45 when reading */
46 int buf_index;
47 int buf_size; /* 0 when writing */
48 uint8_t buf[IO_BUF_SIZE];
49
Pavel Butsykin53f09a12017-02-03 18:23:20 +030050 DECLARE_BITMAP(may_free, MAX_IOV_SIZE);
Daniel P. Berrangea24939f2016-04-27 11:05:13 +010051 struct iovec iov[MAX_IOV_SIZE];
52 unsigned int iovcnt;
53
54 int last_error;
55};
56
Dr. David Alan Gilberte1a8c9b2015-01-08 11:11:30 +000057/*
58 * Stop a file from being read/written - not all backing files can do this
59 * typically only sockets can.
60 */
61int qemu_file_shutdown(QEMUFile *f)
62{
63 if (!f->ops->shut_down) {
64 return -ENOSYS;
65 }
66 return f->ops->shut_down(f->opaque, true, true);
67}
68
Dr. David Alan Gilbertadc468e2015-11-05 18:10:43 +000069/*
70 * Result: QEMUFile* for a 'return path' for comms in the opposite direction
71 * NULL if not available
72 */
73QEMUFile *qemu_file_get_return_path(QEMUFile *f)
74{
75 if (!f->ops->get_return_path) {
76 return NULL;
77 }
78 return f->ops->get_return_path(f->opaque);
79}
80
Eduardo Habkost093c4552013-11-28 12:01:16 -020081bool qemu_file_mode_is_not_valid(const char *mode)
82{
83 if (mode == NULL ||
84 (mode[0] != 'r' && mode[0] != 'w') ||
85 mode[1] != 'b' || mode[2] != 0) {
86 fprintf(stderr, "qemu_fopen: Argument validity check failed\n");
87 return true;
88 }
89
90 return false;
91}
92
Eduardo Habkost093c4552013-11-28 12:01:16 -020093QEMUFile *qemu_fopen_ops(void *opaque, const QEMUFileOps *ops)
94{
95 QEMUFile *f;
96
Markus Armbruster97f3ad32015-09-14 13:51:31 +020097 f = g_new0(QEMUFile, 1);
Eduardo Habkost093c4552013-11-28 12:01:16 -020098
99 f->opaque = opaque;
100 f->ops = ops;
101 return f;
102}
103
Daniel P. Berrange0436e092016-04-27 11:04:55 +0100104
105void qemu_file_set_hooks(QEMUFile *f, const QEMUFileHooks *hooks)
106{
107 f->hooks = hooks;
108}
109
Eduardo Habkost093c4552013-11-28 12:01:16 -0200110/*
111 * Get last error for stream f
112 *
113 * Return negative error value if there has been an error on previous
114 * operations, return 0 if no error happened.
115 *
116 */
117int qemu_file_get_error(QEMUFile *f)
118{
119 return f->last_error;
120}
121
122void qemu_file_set_error(QEMUFile *f, int ret)
123{
124 if (f->last_error == 0) {
125 f->last_error = ret;
126 }
127}
128
Eduardo Habkoste68dd362014-10-01 17:34:34 -0300129bool qemu_file_is_writable(QEMUFile *f)
Eduardo Habkost093c4552013-11-28 12:01:16 -0200130{
Daniel P. Berrange11808bb2016-04-27 11:05:17 +0100131 return f->ops->writev_buffer;
Eduardo Habkost093c4552013-11-28 12:01:16 -0200132}
133
Pavel Butsykin53f09a12017-02-03 18:23:20 +0300134static void qemu_iovec_release_ram(QEMUFile *f)
135{
136 struct iovec iov;
137 unsigned long idx;
138
139 /* Find and release all the contiguous memory ranges marked as may_free. */
140 idx = find_next_bit(f->may_free, f->iovcnt, 0);
141 if (idx >= f->iovcnt) {
142 return;
143 }
144 iov = f->iov[idx];
145
146 /* The madvise() in the loop is called for iov within a continuous range and
147 * then reinitialize the iov. And in the end, madvise() is called for the
148 * last iov.
149 */
150 while ((idx = find_next_bit(f->may_free, f->iovcnt, idx + 1)) < f->iovcnt) {
151 /* check for adjacent buffer and coalesce them */
152 if (iov.iov_base + iov.iov_len == f->iov[idx].iov_base) {
153 iov.iov_len += f->iov[idx].iov_len;
154 continue;
155 }
156 if (qemu_madvise(iov.iov_base, iov.iov_len, QEMU_MADV_DONTNEED) < 0) {
157 error_report("migrate: madvise DONTNEED failed %p %zd: %s",
158 iov.iov_base, iov.iov_len, strerror(errno));
159 }
160 iov = f->iov[idx];
161 }
162 if (qemu_madvise(iov.iov_base, iov.iov_len, QEMU_MADV_DONTNEED) < 0) {
163 error_report("migrate: madvise DONTNEED failed %p %zd: %s",
164 iov.iov_base, iov.iov_len, strerror(errno));
165 }
166 memset(f->may_free, 0, sizeof(f->may_free));
167}
168
Eduardo Habkost093c4552013-11-28 12:01:16 -0200169/**
170 * Flushes QEMUFile buffer
171 *
172 * If there is writev_buffer QEMUFileOps it uses it otherwise uses
Daniel P. Berrangebaf51e72016-04-27 11:04:54 +0100173 * put_buffer ops. This will flush all pending data. If data was
174 * only partially flushed, it will set an error state.
Eduardo Habkost093c4552013-11-28 12:01:16 -0200175 */
176void qemu_fflush(QEMUFile *f)
177{
178 ssize_t ret = 0;
Daniel P. Berrangebaf51e72016-04-27 11:04:54 +0100179 ssize_t expect = 0;
Eduardo Habkost093c4552013-11-28 12:01:16 -0200180
181 if (!qemu_file_is_writable(f)) {
182 return;
183 }
184
Daniel P. Berrange11808bb2016-04-27 11:05:17 +0100185 if (f->iovcnt > 0) {
186 expect = iov_size(f->iov, f->iovcnt);
187 ret = f->ops->writev_buffer(f->opaque, f->iov, f->iovcnt, f->pos);
Pavel Butsykin53f09a12017-02-03 18:23:20 +0300188
189 qemu_iovec_release_ram(f);
Eduardo Habkost093c4552013-11-28 12:01:16 -0200190 }
Daniel P. Berrangebaf51e72016-04-27 11:04:54 +0100191
Eduardo Habkost093c4552013-11-28 12:01:16 -0200192 if (ret >= 0) {
193 f->pos += ret;
194 }
Daniel P. Berrangebaf51e72016-04-27 11:04:54 +0100195 /* We expect the QEMUFile write impl to send the full
196 * data set we requested, so sanity check that.
197 */
198 if (ret != expect) {
199 qemu_file_set_error(f, ret < 0 ? ret : -EIO);
200 }
Eduardo Habkost093c4552013-11-28 12:01:16 -0200201 f->buf_index = 0;
202 f->iovcnt = 0;
Eduardo Habkost093c4552013-11-28 12:01:16 -0200203}
204
205void ram_control_before_iterate(QEMUFile *f, uint64_t flags)
206{
207 int ret = 0;
208
Daniel P. Berrange0436e092016-04-27 11:04:55 +0100209 if (f->hooks && f->hooks->before_ram_iterate) {
210 ret = f->hooks->before_ram_iterate(f, f->opaque, flags, NULL);
Eduardo Habkost093c4552013-11-28 12:01:16 -0200211 if (ret < 0) {
212 qemu_file_set_error(f, ret);
213 }
214 }
215}
216
217void ram_control_after_iterate(QEMUFile *f, uint64_t flags)
218{
219 int ret = 0;
220
Daniel P. Berrange0436e092016-04-27 11:04:55 +0100221 if (f->hooks && f->hooks->after_ram_iterate) {
222 ret = f->hooks->after_ram_iterate(f, f->opaque, flags, NULL);
Eduardo Habkost093c4552013-11-28 12:01:16 -0200223 if (ret < 0) {
224 qemu_file_set_error(f, ret);
225 }
226 }
227}
228
Dr. David Alan Gilbert632e3a52015-06-11 18:17:23 +0100229void ram_control_load_hook(QEMUFile *f, uint64_t flags, void *data)
Eduardo Habkost093c4552013-11-28 12:01:16 -0200230{
231 int ret = -EINVAL;
232
Daniel P. Berrange0436e092016-04-27 11:04:55 +0100233 if (f->hooks && f->hooks->hook_ram_load) {
234 ret = f->hooks->hook_ram_load(f, f->opaque, flags, data);
Eduardo Habkost093c4552013-11-28 12:01:16 -0200235 if (ret < 0) {
236 qemu_file_set_error(f, ret);
237 }
238 } else {
Dr. David Alan Gilbert632e3a52015-06-11 18:17:23 +0100239 /*
240 * Hook is a hook specifically requested by the source sending a flag
241 * that expects there to be a hook on the destination.
242 */
243 if (flags == RAM_CONTROL_HOOK) {
244 qemu_file_set_error(f, ret);
245 }
Eduardo Habkost093c4552013-11-28 12:01:16 -0200246 }
247}
248
249size_t ram_control_save_page(QEMUFile *f, ram_addr_t block_offset,
Juan Quintela6e1dea42015-02-12 19:02:42 +0100250 ram_addr_t offset, size_t size,
251 uint64_t *bytes_sent)
Eduardo Habkost093c4552013-11-28 12:01:16 -0200252{
Daniel P. Berrange0436e092016-04-27 11:04:55 +0100253 if (f->hooks && f->hooks->save_page) {
254 int ret = f->hooks->save_page(f, f->opaque, block_offset,
255 offset, size, bytes_sent);
Lidong Chenccb7e1b2018-08-06 21:29:27 +0800256 if (ret != RAM_SAVE_CONTROL_NOT_SUPP) {
257 f->bytes_xfer += size;
258 }
259
260 if (ret != RAM_SAVE_CONTROL_DELAYED &&
261 ret != RAM_SAVE_CONTROL_NOT_SUPP) {
Eduardo Habkost093c4552013-11-28 12:01:16 -0200262 if (bytes_sent && *bytes_sent > 0) {
263 qemu_update_position(f, *bytes_sent);
264 } else if (ret < 0) {
265 qemu_file_set_error(f, ret);
266 }
267 }
268
269 return ret;
270 }
271
272 return RAM_SAVE_CONTROL_NOT_SUPP;
273}
274
Dr. David Alan Gilbert548f52e2014-04-08 15:29:37 +0100275/*
276 * Attempt to fill the buffer from the underlying file
277 * Returns the number of bytes read, or negative value for an error.
278 *
279 * Note that it can return a partially full buffer even in a not error/not EOF
280 * case if the underlying file descriptor gives a short read, and that can
281 * happen even on a blocking fd.
282 */
283static ssize_t qemu_fill_buffer(QEMUFile *f)
Eduardo Habkost093c4552013-11-28 12:01:16 -0200284{
285 int len;
286 int pending;
287
288 assert(!qemu_file_is_writable(f));
289
290 pending = f->buf_size - f->buf_index;
291 if (pending > 0) {
292 memmove(f->buf, f->buf + f->buf_index, pending);
293 }
294 f->buf_index = 0;
295 f->buf_size = pending;
296
297 len = f->ops->get_buffer(f->opaque, f->buf + pending, f->pos,
298 IO_BUF_SIZE - pending);
299 if (len > 0) {
300 f->buf_size += len;
301 f->pos += len;
302 } else if (len == 0) {
303 qemu_file_set_error(f, -EIO);
304 } else if (len != -EAGAIN) {
305 qemu_file_set_error(f, len);
306 }
Dr. David Alan Gilbert548f52e2014-04-08 15:29:37 +0100307
308 return len;
Eduardo Habkost093c4552013-11-28 12:01:16 -0200309}
310
Eduardo Habkost093c4552013-11-28 12:01:16 -0200311void qemu_update_position(QEMUFile *f, size_t size)
312{
313 f->pos += size;
314}
315
316/** Closes the file
317 *
318 * Returns negative error value if any error happened on previous operations or
319 * while closing the file. Returns 0 or positive number on success.
320 *
321 * The meaning of return value on success depends on the specific backend
322 * being used.
323 */
324int qemu_fclose(QEMUFile *f)
325{
326 int ret;
327 qemu_fflush(f);
328 ret = qemu_file_get_error(f);
329
330 if (f->ops->close) {
331 int ret2 = f->ops->close(f->opaque);
332 if (ret >= 0) {
333 ret = ret2;
334 }
335 }
336 /* If any error was spotted before closing, we should report it
337 * instead of the close() return value.
338 */
339 if (f->last_error) {
340 ret = f->last_error;
341 }
342 g_free(f);
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +1100343 trace_qemu_file_fclose();
Eduardo Habkost093c4552013-11-28 12:01:16 -0200344 return ret;
345}
346
Pavel Butsykin53f09a12017-02-03 18:23:20 +0300347static void add_to_iovec(QEMUFile *f, const uint8_t *buf, size_t size,
348 bool may_free)
Eduardo Habkost093c4552013-11-28 12:01:16 -0200349{
350 /* check for adjacent buffer and coalesce them */
351 if (f->iovcnt > 0 && buf == f->iov[f->iovcnt - 1].iov_base +
Pavel Butsykin53f09a12017-02-03 18:23:20 +0300352 f->iov[f->iovcnt - 1].iov_len &&
353 may_free == test_bit(f->iovcnt - 1, f->may_free))
354 {
Eduardo Habkost093c4552013-11-28 12:01:16 -0200355 f->iov[f->iovcnt - 1].iov_len += size;
356 } else {
Pavel Butsykin53f09a12017-02-03 18:23:20 +0300357 if (may_free) {
358 set_bit(f->iovcnt, f->may_free);
359 }
Eduardo Habkost093c4552013-11-28 12:01:16 -0200360 f->iov[f->iovcnt].iov_base = (uint8_t *)buf;
361 f->iov[f->iovcnt++].iov_len = size;
362 }
363
364 if (f->iovcnt >= MAX_IOV_SIZE) {
365 qemu_fflush(f);
366 }
367}
368
Pavel Butsykin53f09a12017-02-03 18:23:20 +0300369void qemu_put_buffer_async(QEMUFile *f, const uint8_t *buf, size_t size,
370 bool may_free)
Eduardo Habkost093c4552013-11-28 12:01:16 -0200371{
Eduardo Habkost093c4552013-11-28 12:01:16 -0200372 if (f->last_error) {
373 return;
374 }
375
376 f->bytes_xfer += size;
Pavel Butsykin53f09a12017-02-03 18:23:20 +0300377 add_to_iovec(f, buf, size, may_free);
Eduardo Habkost093c4552013-11-28 12:01:16 -0200378}
379
Dr. David Alan Gilbert56f38352015-08-13 11:51:34 +0100380void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, size_t size)
Eduardo Habkost093c4552013-11-28 12:01:16 -0200381{
Dr. David Alan Gilbert56f38352015-08-13 11:51:34 +0100382 size_t l;
Eduardo Habkost093c4552013-11-28 12:01:16 -0200383
384 if (f->last_error) {
385 return;
386 }
387
388 while (size > 0) {
389 l = IO_BUF_SIZE - f->buf_index;
390 if (l > size) {
391 l = size;
392 }
393 memcpy(f->buf + f->buf_index, buf, l);
394 f->bytes_xfer += l;
Pavel Butsykin53f09a12017-02-03 18:23:20 +0300395 add_to_iovec(f, f->buf + f->buf_index, l, false);
Eduardo Habkost093c4552013-11-28 12:01:16 -0200396 f->buf_index += l;
397 if (f->buf_index == IO_BUF_SIZE) {
398 qemu_fflush(f);
399 }
400 if (qemu_file_get_error(f)) {
401 break;
402 }
403 buf += l;
404 size -= l;
405 }
406}
407
408void qemu_put_byte(QEMUFile *f, int v)
409{
410 if (f->last_error) {
411 return;
412 }
413
414 f->buf[f->buf_index] = v;
415 f->bytes_xfer++;
Pavel Butsykin53f09a12017-02-03 18:23:20 +0300416 add_to_iovec(f, f->buf + f->buf_index, 1, false);
Eduardo Habkost093c4552013-11-28 12:01:16 -0200417 f->buf_index++;
418 if (f->buf_index == IO_BUF_SIZE) {
419 qemu_fflush(f);
420 }
421}
422
423void qemu_file_skip(QEMUFile *f, int size)
424{
425 if (f->buf_index + size <= f->buf_size) {
426 f->buf_index += size;
427 }
428}
429
Dr. David Alan Gilbert548f52e2014-04-08 15:29:37 +0100430/*
Dr. David Alan Gilbert7c1e52b2015-05-21 13:24:15 +0100431 * Read 'size' bytes from file (at 'offset') without moving the
432 * pointer and set 'buf' to point to that data.
Dr. David Alan Gilbert548f52e2014-04-08 15:29:37 +0100433 *
434 * It will return size bytes unless there was an error, in which case it will
435 * return as many as it managed to read (assuming blocking fd's which
436 * all current QEMUFile are)
437 */
Dr. David Alan Gilbert56f38352015-08-13 11:51:34 +0100438size_t qemu_peek_buffer(QEMUFile *f, uint8_t **buf, size_t size, size_t offset)
Eduardo Habkost093c4552013-11-28 12:01:16 -0200439{
Dr. David Alan Gilbert56f38352015-08-13 11:51:34 +0100440 ssize_t pending;
441 size_t index;
Eduardo Habkost093c4552013-11-28 12:01:16 -0200442
443 assert(!qemu_file_is_writable(f));
Dr. David Alan Gilbert548f52e2014-04-08 15:29:37 +0100444 assert(offset < IO_BUF_SIZE);
445 assert(size <= IO_BUF_SIZE - offset);
Eduardo Habkost093c4552013-11-28 12:01:16 -0200446
Dr. David Alan Gilbert548f52e2014-04-08 15:29:37 +0100447 /* The 1st byte to read from */
Eduardo Habkost093c4552013-11-28 12:01:16 -0200448 index = f->buf_index + offset;
Dr. David Alan Gilbert548f52e2014-04-08 15:29:37 +0100449 /* The number of available bytes starting at index */
Eduardo Habkost093c4552013-11-28 12:01:16 -0200450 pending = f->buf_size - index;
Dr. David Alan Gilbert548f52e2014-04-08 15:29:37 +0100451
452 /*
453 * qemu_fill_buffer might return just a few bytes, even when there isn't
454 * an error, so loop collecting them until we get enough.
455 */
456 while (pending < size) {
457 int received = qemu_fill_buffer(f);
458
459 if (received <= 0) {
460 break;
461 }
462
Eduardo Habkost093c4552013-11-28 12:01:16 -0200463 index = f->buf_index + offset;
464 pending = f->buf_size - index;
465 }
466
467 if (pending <= 0) {
468 return 0;
469 }
470 if (size > pending) {
471 size = pending;
472 }
473
Dr. David Alan Gilbert7c1e52b2015-05-21 13:24:15 +0100474 *buf = f->buf + index;
Eduardo Habkost093c4552013-11-28 12:01:16 -0200475 return size;
476}
477
Dr. David Alan Gilbert548f52e2014-04-08 15:29:37 +0100478/*
479 * Read 'size' bytes of data from the file into buf.
480 * 'size' can be larger than the internal buffer.
481 *
482 * It will return size bytes unless there was an error, in which case it will
483 * return as many as it managed to read (assuming blocking fd's which
484 * all current QEMUFile are)
485 */
Dr. David Alan Gilbert56f38352015-08-13 11:51:34 +0100486size_t qemu_get_buffer(QEMUFile *f, uint8_t *buf, size_t size)
Eduardo Habkost093c4552013-11-28 12:01:16 -0200487{
Dr. David Alan Gilbert56f38352015-08-13 11:51:34 +0100488 size_t pending = size;
489 size_t done = 0;
Eduardo Habkost093c4552013-11-28 12:01:16 -0200490
491 while (pending > 0) {
Dr. David Alan Gilbert56f38352015-08-13 11:51:34 +0100492 size_t res;
Dr. David Alan Gilbert7c1e52b2015-05-21 13:24:15 +0100493 uint8_t *src;
Eduardo Habkost093c4552013-11-28 12:01:16 -0200494
Dr. David Alan Gilbert7c1e52b2015-05-21 13:24:15 +0100495 res = qemu_peek_buffer(f, &src, MIN(pending, IO_BUF_SIZE), 0);
Eduardo Habkost093c4552013-11-28 12:01:16 -0200496 if (res == 0) {
497 return done;
498 }
Dr. David Alan Gilbert7c1e52b2015-05-21 13:24:15 +0100499 memcpy(buf, src, res);
Eduardo Habkost093c4552013-11-28 12:01:16 -0200500 qemu_file_skip(f, res);
501 buf += res;
502 pending -= res;
503 done += res;
504 }
505 return done;
506}
507
Dr. David Alan Gilbert548f52e2014-04-08 15:29:37 +0100508/*
Dr. David Alan Gilbert9504fb52015-11-05 18:10:35 +0000509 * Read 'size' bytes of data from the file.
510 * 'size' can be larger than the internal buffer.
511 *
512 * The data:
513 * may be held on an internal buffer (in which case *buf is updated
514 * to point to it) that is valid until the next qemu_file operation.
515 * OR
516 * will be copied to the *buf that was passed in.
517 *
518 * The code tries to avoid the copy if possible.
519 *
520 * It will return size bytes unless there was an error, in which case it will
521 * return as many as it managed to read (assuming blocking fd's which
522 * all current QEMUFile are)
523 *
524 * Note: Since **buf may get changed, the caller should take care to
525 * keep a pointer to the original buffer if it needs to deallocate it.
526 */
527size_t qemu_get_buffer_in_place(QEMUFile *f, uint8_t **buf, size_t size)
528{
529 if (size < IO_BUF_SIZE) {
530 size_t res;
531 uint8_t *src;
532
533 res = qemu_peek_buffer(f, &src, size, 0);
534
535 if (res == size) {
536 qemu_file_skip(f, res);
537 *buf = src;
538 return res;
539 }
540 }
541
542 return qemu_get_buffer(f, *buf, size);
543}
544
545/*
Dr. David Alan Gilbert548f52e2014-04-08 15:29:37 +0100546 * Peeks a single byte from the buffer; this isn't guaranteed to work if
547 * offset leaves a gap after the previous read/peeked data.
548 */
Eduardo Habkost093c4552013-11-28 12:01:16 -0200549int qemu_peek_byte(QEMUFile *f, int offset)
550{
551 int index = f->buf_index + offset;
552
553 assert(!qemu_file_is_writable(f));
Dr. David Alan Gilbert548f52e2014-04-08 15:29:37 +0100554 assert(offset < IO_BUF_SIZE);
Eduardo Habkost093c4552013-11-28 12:01:16 -0200555
556 if (index >= f->buf_size) {
557 qemu_fill_buffer(f);
558 index = f->buf_index + offset;
559 if (index >= f->buf_size) {
560 return 0;
561 }
562 }
563 return f->buf[index];
564}
565
566int qemu_get_byte(QEMUFile *f)
567{
568 int result;
569
570 result = qemu_peek_byte(f, 0);
571 qemu_file_skip(f, 1);
572 return result;
573}
574
Alexander Graf97221402015-01-22 15:01:38 +0100575int64_t qemu_ftell_fast(QEMUFile *f)
576{
577 int64_t ret = f->pos;
578 int i;
579
Daniel P. Berrange11808bb2016-04-27 11:05:17 +0100580 for (i = 0; i < f->iovcnt; i++) {
581 ret += f->iov[i].iov_len;
Alexander Graf97221402015-01-22 15:01:38 +0100582 }
583
584 return ret;
585}
586
Eduardo Habkost093c4552013-11-28 12:01:16 -0200587int64_t qemu_ftell(QEMUFile *f)
588{
589 qemu_fflush(f);
590 return f->pos;
591}
592
593int qemu_file_rate_limit(QEMUFile *f)
594{
595 if (qemu_file_get_error(f)) {
596 return 1;
597 }
598 if (f->xfer_limit > 0 && f->bytes_xfer > f->xfer_limit) {
599 return 1;
600 }
601 return 0;
602}
603
604int64_t qemu_file_get_rate_limit(QEMUFile *f)
605{
606 return f->xfer_limit;
607}
608
609void qemu_file_set_rate_limit(QEMUFile *f, int64_t limit)
610{
611 f->xfer_limit = limit;
612}
613
614void qemu_file_reset_rate_limit(QEMUFile *f)
615{
616 f->bytes_xfer = 0;
617}
618
619void qemu_put_be16(QEMUFile *f, unsigned int v)
620{
621 qemu_put_byte(f, v >> 8);
622 qemu_put_byte(f, v);
623}
624
625void qemu_put_be32(QEMUFile *f, unsigned int v)
626{
627 qemu_put_byte(f, v >> 24);
628 qemu_put_byte(f, v >> 16);
629 qemu_put_byte(f, v >> 8);
630 qemu_put_byte(f, v);
631}
632
633void qemu_put_be64(QEMUFile *f, uint64_t v)
634{
635 qemu_put_be32(f, v >> 32);
636 qemu_put_be32(f, v);
637}
638
639unsigned int qemu_get_be16(QEMUFile *f)
640{
641 unsigned int v;
642 v = qemu_get_byte(f) << 8;
643 v |= qemu_get_byte(f);
644 return v;
645}
646
647unsigned int qemu_get_be32(QEMUFile *f)
648{
649 unsigned int v;
Peter Maydell90d6a672014-12-23 22:26:55 +0000650 v = (unsigned int)qemu_get_byte(f) << 24;
Eduardo Habkost093c4552013-11-28 12:01:16 -0200651 v |= qemu_get_byte(f) << 16;
652 v |= qemu_get_byte(f) << 8;
653 v |= qemu_get_byte(f);
654 return v;
655}
656
657uint64_t qemu_get_be64(QEMUFile *f)
658{
659 uint64_t v;
660 v = (uint64_t)qemu_get_be32(f) << 32;
661 v |= qemu_get_be32(f);
662 return v;
663}
Liang Li44f0ead2015-03-23 16:32:19 +0800664
Xiao Guangrongdcaf4462018-03-30 15:51:20 +0800665/* return the size after compression, or negative value on error */
666static int qemu_compress_data(z_stream *stream, uint8_t *dest, size_t dest_len,
667 const uint8_t *source, size_t source_len)
668{
669 int err;
670
671 err = deflateReset(stream);
672 if (err != Z_OK) {
673 return -1;
674 }
675
676 stream->avail_in = source_len;
677 stream->next_in = (uint8_t *)source;
678 stream->avail_out = dest_len;
679 stream->next_out = dest;
680
681 err = deflate(stream, Z_FINISH);
682 if (err != Z_STREAM_END) {
683 return -1;
684 }
685
686 return stream->next_out - dest;
687}
688
689/* Compress size bytes of data start at p and store the compressed
690 * data to the buffer of f.
Liang Lib3be2892016-05-05 15:32:54 +0800691 *
692 * When f is not writable, return -1 if f has no space to save the
693 * compressed data.
694 * When f is wirtable and it has no space to save the compressed data,
695 * do fflush first, if f still has no space to save the compressed
696 * data, return -1.
Liang Li44f0ead2015-03-23 16:32:19 +0800697 */
Xiao Guangrongdcaf4462018-03-30 15:51:20 +0800698ssize_t qemu_put_compression_data(QEMUFile *f, z_stream *stream,
699 const uint8_t *p, size_t size)
Liang Li44f0ead2015-03-23 16:32:19 +0800700{
701 ssize_t blen = IO_BUF_SIZE - f->buf_index - sizeof(int32_t);
702
703 if (blen < compressBound(size)) {
Liang Lib3be2892016-05-05 15:32:54 +0800704 if (!qemu_file_is_writable(f)) {
705 return -1;
706 }
707 qemu_fflush(f);
708 blen = IO_BUF_SIZE - sizeof(int32_t);
709 if (blen < compressBound(size)) {
710 return -1;
711 }
Liang Li44f0ead2015-03-23 16:32:19 +0800712 }
Xiao Guangrongdcaf4462018-03-30 15:51:20 +0800713
714 blen = qemu_compress_data(stream, f->buf + f->buf_index + sizeof(int32_t),
715 blen, p, size);
716 if (blen < 0) {
Xiao Guangrong34ab9e92018-03-30 15:51:22 +0800717 return -1;
Liang Li44f0ead2015-03-23 16:32:19 +0800718 }
Xiao Guangrong34ab9e92018-03-30 15:51:22 +0800719
Liang Li44f0ead2015-03-23 16:32:19 +0800720 qemu_put_be32(f, blen);
Liang Lib3be2892016-05-05 15:32:54 +0800721 if (f->ops->writev_buffer) {
Pavel Butsykin53f09a12017-02-03 18:23:20 +0300722 add_to_iovec(f, f->buf + f->buf_index, blen, false);
Liang Lib3be2892016-05-05 15:32:54 +0800723 }
Liang Li44f0ead2015-03-23 16:32:19 +0800724 f->buf_index += blen;
Liang Lib3be2892016-05-05 15:32:54 +0800725 if (f->buf_index == IO_BUF_SIZE) {
726 qemu_fflush(f);
727 }
Liang Li44f0ead2015-03-23 16:32:19 +0800728 return blen + sizeof(int32_t);
729}
730
731/* Put the data in the buffer of f_src to the buffer of f_des, and
732 * then reset the buf_index of f_src to 0.
733 */
734
735int qemu_put_qemu_file(QEMUFile *f_des, QEMUFile *f_src)
736{
737 int len = 0;
738
739 if (f_src->buf_index > 0) {
740 len = f_src->buf_index;
741 qemu_put_buffer(f_des, f_src->buf, f_src->buf_index);
742 f_src->buf_index = 0;
Liang Li787d1342016-08-09 08:22:26 +0800743 f_src->iovcnt = 0;
Liang Li44f0ead2015-03-23 16:32:19 +0800744 }
745 return len;
746}
Dr. David Alan Gilbertb3af1bc2015-05-21 13:24:11 +0100747
748/*
749 * Get a string whose length is determined by a single preceding byte
750 * A preallocated 256 byte buffer must be passed in.
751 * Returns: len on success and a 0 terminated string in the buffer
752 * else 0
753 * (Note a 0 length string will return 0 either way)
754 */
755size_t qemu_get_counted_string(QEMUFile *f, char buf[256])
756{
757 size_t len = qemu_get_byte(f);
758 size_t res = qemu_get_buffer(f, (uint8_t *)buf, len);
759
760 buf[res] = 0;
761
762 return res == len ? res : 0;
763}
Dr. David Alan Gilberta800cd52015-11-05 18:10:36 +0000764
765/*
Vladimir Sementsov-Ogievskiyf0d64cb2018-03-13 15:34:00 -0400766 * Put a string with one preceding byte containing its length. The length of
767 * the string should be less than 256.
768 */
769void qemu_put_counted_string(QEMUFile *f, const char *str)
770{
771 size_t len = strlen(str);
772
773 assert(len < 256);
774 qemu_put_byte(f, len);
775 qemu_put_buffer(f, (const uint8_t *)str, len);
776}
777
778/*
Dr. David Alan Gilberta800cd52015-11-05 18:10:36 +0000779 * Set the blocking state of the QEMUFile.
780 * Note: On some transports the OS only keeps a single blocking state for
781 * both directions, and thus changing the blocking on the main
782 * QEMUFile can also affect the return path.
783 */
784void qemu_file_set_blocking(QEMUFile *f, bool block)
785{
Daniel P. Berrange06ad5132016-04-27 11:04:56 +0100786 if (f->ops->set_blocking) {
787 f->ops->set_blocking(f->opaque, block);
Dr. David Alan Gilberta800cd52015-11-05 18:10:36 +0000788 }
789}