[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 03/19] qemu-file: Don't do IO after shutdown
From: |
Juan Quintela |
Subject: |
[PULL 03/19] qemu-file: Don't do IO after shutdown |
Date: |
Mon, 27 Jan 2020 23:33:05 +0100 |
Be sure that we are not doing neither read/write after shutdown of the
QEMUFile.
Signed-off-by: Juan Quintela <address@hidden>
Reviewed-by: Dr. David Alan Gilbert <address@hidden>
---
Set error in case that there is none (dave)
---
migration/qemu-file.c | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/migration/qemu-file.c b/migration/qemu-file.c
index 26fb25ddc1..bbb2b63927 100644
--- a/migration/qemu-file.c
+++ b/migration/qemu-file.c
@@ -53,6 +53,8 @@ struct QEMUFile {
int last_error;
Error *last_error_obj;
+ /* has the file has been shutdown */
+ bool shutdown;
};
/*
@@ -61,10 +63,18 @@ struct QEMUFile {
*/
int qemu_file_shutdown(QEMUFile *f)
{
+ int ret;
+
+ f->shutdown = true;
if (!f->ops->shut_down) {
return -ENOSYS;
}
- return f->ops->shut_down(f->opaque, true, true, NULL);
+ ret = f->ops->shut_down(f->opaque, true, true, NULL);
+
+ if (!f->last_error) {
+ qemu_file_set_error(f, -EIO);
+ }
+ return ret;
}
/*
@@ -214,6 +224,9 @@ void qemu_fflush(QEMUFile *f)
return;
}
+ if (f->shutdown) {
+ return;
+ }
if (f->iovcnt > 0) {
expect = iov_size(f->iov, f->iovcnt);
ret = f->ops->writev_buffer(f->opaque, f->iov, f->iovcnt, f->pos,
@@ -328,6 +341,10 @@ static ssize_t qemu_fill_buffer(QEMUFile *f)
f->buf_index = 0;
f->buf_size = pending;
+ if (f->shutdown) {
+ return 0;
+ }
+
len = f->ops->get_buffer(f->opaque, f->buf + pending, f->pos,
IO_BUF_SIZE - pending, &local_error);
if (len > 0) {
@@ -642,6 +659,9 @@ int64_t qemu_ftell(QEMUFile *f)
int qemu_file_rate_limit(QEMUFile *f)
{
+ if (f->shutdown) {
+ return 1;
+ }
if (qemu_file_get_error(f)) {
return 1;
}
--
2.24.1
- [PULL 00/19] 10 next patches, Juan Quintela, 2020/01/27
- [PULL 01/19] migration-test: Use g_free() instead of free(), Juan Quintela, 2020/01/27
- [PULL 03/19] qemu-file: Don't do IO after shutdown,
Juan Quintela <=
- [PULL 02/19] multifd: Make sure that we don't do any IO after an error, Juan Quintela, 2020/01/27
- [PULL 04/19] migration: Don't send data if we have stopped, Juan Quintela, 2020/01/27
- [PULL 05/19] migration-test: Make sure that multifd and cancel works, Juan Quintela, 2020/01/27
- [PULL 06/19] migration: Create migration_is_running(), Juan Quintela, 2020/01/27
- [PULL 08/19] ram_addr: Split RAMBlock definition, Juan Quintela, 2020/01/27
- [PULL 07/19] migration/multifd: fix nullptr access in multifd_send_terminate_threads, Juan Quintela, 2020/01/27
- [PULL 09/19] multifd: multifd_send_pages only needs the qemufile, Juan Quintela, 2020/01/27
- [PULL 10/19] multifd: multifd_queue_page only needs the qemufile, Juan Quintela, 2020/01/27
- [PULL 11/19] multifd: multifd_send_sync_main only needs the qemufile, Juan Quintela, 2020/01/27
- [PULL 12/19] multifd: Use qemu_target_page_size(), Juan Quintela, 2020/01/27