From: Theodore Ts'o <tytso@mit.edu>
To: Roman Pen <roman.penyaev@profitbricks.com>
Cc: Namjae Jeon <namjae.jeon@samsung.com>,
Andreas Dilger <adilger.kernel@dilger.ca>,
linux-ext4@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 1/2] ext4: Include forgotten start block on fallocate insert range
Date: Sat, 7 Jan 2017 16:22:10 -0500 [thread overview]
Message-ID: <20170107212210.2repgu7cm6mtimek@thunk.org> (raw)
In-Reply-To: <20170106202601.32722-2-roman.penyaev@profitbricks.com>
On Fri, Jan 06, 2017 at 09:26:00PM +0100, Roman Pen wrote:
> While doing 'insert range' start block should be also shifted right.
> The bug can be easily reproduced by the following test:
>
> ptr = malloc(4096);
> assert(ptr);
>
> fd = open("./ext4.file", O_CREAT | O_TRUNC | O_RDWR, 0600);
> assert(fd >= 0);
>
> rc = fallocate(fd, 0, 0, 8192);
> assert(rc == 0);
> for (i = 0; i < 2048; i++)
> *((unsigned short *)ptr + i) = 0xbeef;
> rc = pwrite(fd, ptr, 4096, 0);
> assert(rc == 4096);
> rc = pwrite(fd, ptr, 4096, 4096);
> assert(rc == 4096);
>
> for (block = 2; block < 1000; block++) {
> rc = fallocate(fd, FALLOC_FL_INSERT_RANGE, 4096, 4096);
> assert(rc == 0);
>
> for (i = 0; i < 2048; i++)
> *((unsigned short *)ptr + i) = block;
>
> rc = pwrite(fd, ptr, 4096, 4096);
> assert(rc == 4096);
> }
>
> Because start block is not included in the range the hole appears at
> the wrong offset (just after the desired offset) and the following
> pwrite() overwrites already existent block, keeping hole untouched.
>
> Simple way to verify wrong behaviour is to check zeroed blocks after
> the test:
>
> $ hexdump ./ext4.file | grep '0000 0000'
>
> The root cause of the bug is a wrong range (start, stop], where start
> should be inclusive, i.e. [start, stop].
>
> This patch fixes the problem by including start into the range. But
> not to break left shift (range collapse) stop points to the beginning
> of the a block, not to the end.
>
> The other not obvious change is an iterator check on validness in a
> main loop. Because iterator is unsigned the following corner case
> should be considered with care: insert a block at 0 offset, when stop
> variables overflows and never becomes less than start, which is 0.
> To handle this special case iterator is set to NULL to indicate that
> end of the loop is reached.
>
> Signed-off-by: Roman Pen <roman.penyaev@profitbricks.com>
Thanks, applied.
- Ted
next prev parent reply other threads:[~2017-01-07 21:22 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-06 20:25 [PATCH v2 0/2] ext4: fallocate insert/collapse range fixes Roman Pen
2017-01-06 20:26 ` [PATCH v2 1/2] ext4: Include forgotten start block on fallocate insert range Roman Pen
2017-01-07 21:22 ` Theodore Ts'o [this message]
2017-01-09 12:36 ` Roman Penyaev
2017-01-06 20:26 ` [PATCH v2 2/2] ext4: Do not populate extents tree with outdated offsets while shifting extents Roman Pen
2017-01-07 21:27 ` Theodore Ts'o
2017-01-09 12:36 ` Roman Penyaev
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=20170107212210.2repgu7cm6mtimek@thunk.org \
--to=tytso@mit.edu \
--cc=adilger.kernel@dilger.ca \
--cc=linux-ext4@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=namjae.jeon@samsung.com \
--cc=roman.penyaev@profitbricks.com \
/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