2012-01-13 20:07:20 +04:00
|
|
|
/*
|
|
|
|
* QEMU System Emulator
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2008 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2016-06-29 16:29:06 +03:00
|
|
|
|
2017-04-20 19:52:18 +03:00
|
|
|
#ifndef MIGRATION_QEMU_FILE_H
|
|
|
|
#define MIGRATION_QEMU_FILE_H
|
2014-10-10 15:39:04 +04:00
|
|
|
|
2018-03-30 10:51:20 +03:00
|
|
|
#include <zlib.h>
|
2019-08-12 08:23:43 +03:00
|
|
|
#include "exec/cpu-common.h"
|
2021-07-22 20:58:40 +03:00
|
|
|
#include "io/channel.h"
|
2018-03-30 10:51:20 +03:00
|
|
|
|
2022-06-20 14:02:05 +03:00
|
|
|
QEMUFile *qemu_file_new_input(QIOChannel *ioc);
|
|
|
|
QEMUFile *qemu_file_new_output(QIOChannel *ioc);
|
2012-01-13 20:07:20 +04:00
|
|
|
int qemu_fclose(QEMUFile *f);
|
2022-06-20 14:01:50 +03:00
|
|
|
|
|
|
|
/*
|
2023-10-25 12:11:11 +03:00
|
|
|
* qemu_file_transferred:
|
2022-06-20 14:01:50 +03:00
|
|
|
*
|
2023-10-25 12:11:11 +03:00
|
|
|
* No flush is performed and the reported amount will include the size
|
|
|
|
* of any queued buffers, on top of the amount actually transferred.
|
2022-06-20 14:01:50 +03:00
|
|
|
*
|
|
|
|
* Returns: the total bytes transferred and queued
|
|
|
|
*/
|
2023-10-25 12:11:11 +03:00
|
|
|
uint64_t qemu_file_transferred(QEMUFile *f);
|
2022-06-20 14:01:50 +03:00
|
|
|
|
2013-03-22 18:48:02 +04:00
|
|
|
/*
|
|
|
|
* put_buffer without copying the buffer.
|
|
|
|
* The buffer should be available till it is sent asynchronously.
|
|
|
|
*/
|
2017-02-03 18:23:20 +03:00
|
|
|
void qemu_put_buffer_async(QEMUFile *f, const uint8_t *buf, size_t size,
|
|
|
|
bool may_free);
|
2012-01-13 20:07:20 +04:00
|
|
|
|
2017-04-20 19:52:18 +03:00
|
|
|
#include "migration/qemu-file-types.h"
|
2014-10-10 15:39:04 +04:00
|
|
|
|
2022-12-16 14:48:16 +03:00
|
|
|
size_t coroutine_mixed_fn qemu_peek_buffer(QEMUFile *f, uint8_t **buf, size_t size, size_t offset);
|
|
|
|
size_t coroutine_mixed_fn qemu_get_buffer_in_place(QEMUFile *f, uint8_t **buf, size_t size);
|
2015-11-05 21:10:35 +03:00
|
|
|
|
2014-04-08 18:29:37 +04:00
|
|
|
/*
|
|
|
|
* Note that you can only peek continuous bytes from where the current pointer
|
|
|
|
* is; you aren't guaranteed to be able to peak to +n bytes unless you've
|
|
|
|
* previously peeked +n-1.
|
|
|
|
*/
|
2022-12-16 14:48:16 +03:00
|
|
|
int coroutine_mixed_fn qemu_peek_byte(QEMUFile *f, int offset);
|
2013-11-28 18:01:10 +04:00
|
|
|
void qemu_file_skip(QEMUFile *f, int size);
|
2022-07-07 21:55:06 +03:00
|
|
|
int qemu_file_get_error_obj_any(QEMUFile *f1, QEMUFile *f2, Error **errp);
|
2019-04-22 13:34:20 +03:00
|
|
|
void qemu_file_set_error_obj(QEMUFile *f, int ret, Error *err);
|
2023-10-17 23:26:29 +03:00
|
|
|
int qemu_file_get_error_obj(QEMUFile *f, Error **errp);
|
2013-11-28 18:01:10 +04:00
|
|
|
void qemu_file_set_error(QEMUFile *f, int ret);
|
2015-01-08 14:11:30 +03:00
|
|
|
int qemu_file_shutdown(QEMUFile *f);
|
2015-11-05 21:10:43 +03:00
|
|
|
QEMUFile *qemu_file_get_return_path(QEMUFile *f);
|
2023-10-25 12:11:17 +03:00
|
|
|
int qemu_fflush(QEMUFile *f);
|
2015-11-05 21:10:36 +03:00
|
|
|
void qemu_file_set_blocking(QEMUFile *f, bool block);
|
2023-02-09 22:20:35 +03:00
|
|
|
int qemu_file_get_to_fd(QEMUFile *f, int fd, size_t size);
|
2024-02-29 18:30:00 +03:00
|
|
|
void qemu_set_offset(QEMUFile *f, off_t off, int whence);
|
|
|
|
off_t qemu_get_offset(QEMUFile *f);
|
|
|
|
void qemu_put_buffer_at(QEMUFile *f, const uint8_t *buf, size_t buflen,
|
|
|
|
off_t pos);
|
|
|
|
size_t qemu_get_buffer_at(QEMUFile *f, const uint8_t *buf, size_t buflen,
|
|
|
|
off_t pos);
|
2012-01-13 20:07:20 +04:00
|
|
|
|
2021-07-22 20:58:40 +03:00
|
|
|
QIOChannel *qemu_file_get_ioc(QEMUFile *file);
|
2017-04-20 19:52:18 +03:00
|
|
|
|
2012-01-13 20:07:20 +04:00
|
|
|
#endif
|