From: Haozhong Zhang <haozhong.zhang@intel.com>
To: Eduardo Habkost <ehabkost@redhat.com>
Cc: qemu-devel@nongnu.org, Igor Mammedov <imammedo@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Peter Crosthwaite <crosthwaite.peter@gmail.com>,
Richard Henderson <rth@twiddle.net>
Subject: Re: [Qemu-devel] [PATCH v2 1/3] exec.c: do not truncate non-empty memory backend file
Date: Fri, 28 Oct 2016 10:07:40 +0800 [thread overview]
Message-ID: <20161028020740.iggjoq6lsnrnciqw@hz-desktop> (raw)
In-Reply-To: <20161027143153.GI5057@thinpad.lan.raisama.net>
On 10/27/16 12:31 -0200, Eduardo Habkost wrote:
>On Thu, Oct 27, 2016 at 12:22:58PM +0800, Haozhong Zhang wrote:
>> For '-object memory-backend-file,mem-path=foo,size=xyz', if the size of
>> file 'foo' does not match the given size 'xyz', the current QEMU will
>> truncate the file to the given size, which may corrupt the existing data
>> in that file. To avoid such data corruption, this patch disables
>> truncating non-empty backend files.
>>
>> Signed-off-by: Haozhong Zhang <haozhong.zhang@intel.com>
>
>Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
>
>But I would add comment near the get_file_size() call to indicate
>that not stopping on get_file_size() errors is on purpose and not
>a mistake.
>
I'll add comments in the next version.
Thanks,
Haozhong
>> ---
>> exec.c | 22 +++++++++++++++++++++-
>> 1 file changed, 21 insertions(+), 1 deletion(-)
>>
>> diff --git a/exec.c b/exec.c
>> index 587b489..a2b371a 100644
>> --- a/exec.c
>> +++ b/exec.c
>> @@ -1224,6 +1224,15 @@ void qemu_mutex_unlock_ramlist(void)
>> }
>>
>> #ifdef __linux__
>> +static int64_t get_file_size(int fd)
>> +{
>> + int64_t size = lseek(fd, 0, SEEK_END);
>> + if (size < 0) {
>> + return -errno;
>> + }
>> + return size;
>> +}
>> +
>> static void *file_ram_alloc(RAMBlock *block,
>> ram_addr_t memory,
>> const char *path,
>> @@ -1235,6 +1244,7 @@ static void *file_ram_alloc(RAMBlock *block,
>> char *c;
>> void *area = MAP_FAILED;
>> int fd = -1;
>> + int64_t file_size;
>>
>> if (kvm_enabled() && !kvm_has_sync_mmu()) {
>> error_setg(errp,
>> @@ -1297,6 +1307,8 @@ static void *file_ram_alloc(RAMBlock *block,
>> }
>> #endif
>>
>> + file_size = get_file_size(fd);
>> +
>> if (memory < block->page_size) {
>> error_setg(errp, "memory size 0x" RAM_ADDR_FMT " must be equal to "
>> "or larger than page size 0x%zx",
>> @@ -1311,8 +1323,16 @@ static void *file_ram_alloc(RAMBlock *block,
>> * hosts, so don't bother bailing out on errors.
>> * If anything goes wrong with it under other filesystems,
>> * mmap will fail.
>> + *
>> + * Do not truncate the non-empty backend file to avoid corrupting
>> + * the existing data in the file. Disabling shrinking is not
>> + * enough. For example, the current vNVDIMM implementation stores
>> + * the guest NVDIMM labels at the end of the backend file. If the
>> + * backend file is later extended, QEMU will not be able to find
>> + * those labels. Therefore, extending the non-empty backend file
>> + * is disabled as well.
>> */
>> - if (ftruncate(fd, memory)) {
>> + if (!file_size && ftruncate(fd, memory)) {
>> perror("ftruncate");
>> }
>>
>> --
>> 2.10.1
>>
>
>--
>Eduardo
next prev parent reply other threads:[~2016-10-28 2:07 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-27 4:22 [Qemu-devel] [PATCH v2 0/3] Improve truncation behavior of memory-backend-file Haozhong Zhang
2016-10-27 4:22 ` [Qemu-devel] [PATCH v2 1/3] exec.c: do not truncate non-empty memory backend file Haozhong Zhang
2016-10-27 14:31 ` Eduardo Habkost
2016-10-28 2:07 ` Haozhong Zhang [this message]
2016-10-31 17:21 ` Eduardo Habkost
2016-10-27 4:22 ` [Qemu-devel] [PATCH v2 2/3] exec.c: check memory backend file size with 'size' option Haozhong Zhang
2016-10-27 14:32 ` Eduardo Habkost
2016-10-31 17:23 ` Eduardo Habkost
2016-10-31 17:56 ` Paolo Bonzini
2016-11-02 1:05 ` [Qemu-devel] [RESEND PATCH " Haozhong Zhang
2016-10-27 4:23 ` [Qemu-devel] [PATCH v2 3/3] hostmem-file: make option 'size' optional Haozhong Zhang
2016-10-27 14:55 ` Eduardo Habkost
2016-10-28 2:06 ` Haozhong Zhang
2016-10-28 5:57 ` Haozhong Zhang
2016-10-31 18:18 ` Eduardo Habkost
2016-11-02 2:08 ` Haozhong Zhang
2016-10-27 12:03 ` [Qemu-devel] [PATCH v2 0/3] Improve truncation behavior of memory-backend-file Paolo Bonzini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20161028020740.iggjoq6lsnrnciqw@hz-desktop \
--to=haozhong.zhang@intel.com \
--cc=crosthwaite.peter@gmail.com \
--cc=ehabkost@redhat.com \
--cc=imammedo@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).