lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 31 Dec 2010 22:16:35 +1100
From:	Nick Piggin <npiggin@...il.com>
To:	Nick Piggin <npiggin@...il.com>, linux-fsdevel@...r.kernel.org,
	linux-ext4@...r.kernel.org, ocfs2-devel@....oracle.com
Subject: Re: Confused by commit 56a76f [fs: fix page_mkwrite error cases in
 core code and btrfs]

On Fri, Dec 31, 2010 at 10:00 PM, Joel Becker <jlbec@...lplan.org> wrote:
> On Fri, Dec 31, 2010 at 08:31:41PM +1100, Nick Piggin wrote:
>> On Fri, Dec 31, 2010 at 10:29 AM, Joel Becker <Joel.Becker@...cle.com> wrote:

>> If the filesystem returns 0, it means minor fault, and the VM will actually
>> install the page (unless the hack to check page->mapping catches it).
>
>        Right, but does it install the page passed into page_mkwrite()?
> The way I read the code, it actually rechecks the pte and installs the
> page it now finds.

No, it doesn't install anything, it just bails out and the fault will be
restarted if required.

>> The better way to do this would be to just return VM_FAULT_NOPAGE
>> in any case you need the VM to retry the fault. When you reach the
>> business end of your handler, you want to hold the page locked, after
>> you verify it is correct, and return that to the fault handler.
>
>        This is going to be hard.  Our write_end() assumes it must
> unlock the pages (which is normal behavior for write(2)), but in the
> page_mkwrite() case we need to avoid the unlock to follow your
> recommendation (we use our write_begin/write_end pair to trigger any
> allocation or zeroing needed before the page is writable).

Yes that would be the best option. It is possible to use the unlocked
return, but that still gives possibility of races in some cases. Consider
if the filesystem has to allocate some persistent metadata while the
page is dirty, then it must do so in page_mkwrite (set_page_dirty may
not sleep), but if the page is returned with no locks, it might be possible
that metadata is freed before the page can be installed in the dirty pte.

Basically it would be nice for all filesystems to move to this convention
so we can remove the old cruft.


>> >        It looks hard to lock the page for good high up at our first
>> > check of the mapping.  Wengang has proposed to simply ignore the page
>> > passed into page_mkwrite() and just find_or_create_page() the sucker at
>> > the place we're ready to consider it stable.  As I see it, the two
>> > places that call page_mkwrite() are going to revalidate the pte anyway,
>> > and they'll find the newly created page if find_or_create_page() gets a
>> > different.  Is that safe behavior?
>>
>> I can't see the point. If you can find_or_create_page, then you can
>> lock_page, by definition. Then check the mapping and
>> VM_FAULT_SIGBUS if it is wrong.
>
>        The find_or_create_page() is deep at the meat of the function,
> not the cursory check at the top.  The idea is that at this point,
> find_or_create_page() will return a locked page that must, by
> definition, be part of the correct mapping.

But you must still handle failures there, because find_or_create_page
may return -ENOMEM. So just lock the page, recheck the mapping
there, and then do exactly the same error handling.

>> Messing with the wrong page will only see the result ignored by the VM,
>> and push an incorrect page through parts of your fault handler, which
>> is potentially confusing at best, I would have thought.
>
>        If the VM is rechecking the pte after we return from
> page_mkwrite(), won't it see any new page created?

But the point of page_mkwrite is a dirty notifier for the fs. If this new
different page was installed due to say truncate then a read-only
fault, the filesystem would miss the notification. So it just does the
simple thing and retries the whole sequence (if needed).
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ