All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] iomap: get/put the page in iomap_page_create/release()
@ 2018-11-15 18:41 p.jaroszynski
  2018-11-15 21:07 ` William Kucharski
  2018-12-03 23:22 ` Andrew Morton
  0 siblings, 2 replies; 5+ messages in thread
From: p.jaroszynski @ 2018-11-15 18:41 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Christoph Hellwig, linux-fsdevel, linux-mm, Piotr Jaroszynski

From: Piotr Jaroszynski <pjaroszynski@nvidia.com>

migrate_page_move_mapping() expects pages with private data set to have
a page_count elevated by 1. This is what used to happen for xfs through
the buffer_heads code before the switch to iomap in commit 82cb14175e7d
("xfs: add support for sub-pagesize writeback without buffer_heads").
Not having the count elevated causes move_pages() to fail on memory
mapped files coming from xfs.

Make iomap compatible with the migrate_page_move_mapping() assumption
by elevating the page count as part of iomap_page_create() and lowering
it in iomap_page_release().

Fixes: 82cb14175e7d ("xfs: add support for sub-pagesize writeback without buffer_heads")
Signed-off-by: Piotr Jaroszynski <pjaroszynski@nvidia.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
---
 fs/iomap.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/fs/iomap.c b/fs/iomap.c
index 90c2febc93ac..7c369faea1dc 100644
--- a/fs/iomap.c
+++ b/fs/iomap.c
@@ -117,6 +117,12 @@ iomap_page_create(struct inode *inode, struct page *page)
 	atomic_set(&iop->read_count, 0);
 	atomic_set(&iop->write_count, 0);
 	bitmap_zero(iop->uptodate, PAGE_SIZE / SECTOR_SIZE);
+
+	/*
+	 * migrate_page_move_mapping() assumes that pages with private data have
+	 * their count elevated by 1.
+	 */
+	get_page(page);
 	set_page_private(page, (unsigned long)iop);
 	SetPagePrivate(page);
 	return iop;
@@ -133,6 +139,7 @@ iomap_page_release(struct page *page)
 	WARN_ON_ONCE(atomic_read(&iop->write_count));
 	ClearPagePrivate(page);
 	set_page_private(page, 0);
+	put_page(page);
 	kfree(iop);
 }
 
-- 
2.11.0.262.g4b0a5b2.dirty

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] iomap: get/put the page in iomap_page_create/release()
  2018-11-15 18:41 [PATCH v2] iomap: get/put the page in iomap_page_create/release() p.jaroszynski
@ 2018-11-15 21:07 ` William Kucharski
  2018-12-03 23:22 ` Andrew Morton
  1 sibling, 0 replies; 5+ messages in thread
From: William Kucharski @ 2018-11-15 21:07 UTC (permalink / raw)
  To: p.jaroszynski
  Cc: Alexander Viro, Christoph Hellwig, linux-fsdevel, linux-mm,
	Piotr Jaroszynski

The V2 fixes look good to me.

    William Kucharski

> On Nov 15, 2018, at 11:41 AM, p.jaroszynski@gmail.com wrote:
> 
> Fixes: 82cb14175e7d ("xfs: add support for sub-pagesize writeback without buffer_heads")
> Signed-off-by: Piotr Jaroszynski <pjaroszynski@nvidia.com>
> Reviewed-by: Christoph Hellwig <hch@lst.de>
> ---
> fs/iomap.c | 7 +++++++
> 1 file changed, 7 insertions(+)
> 
> diff --git a/fs/iomap.c b/fs/iomap.c
> index 90c2febc93ac..7c369faea1dc 100644
> --- a/fs/iomap.c
> +++ b/fs/iomap.c
> @@ -117,6 +117,12 @@ iomap_page_create(struct inode *inode, struct page *page)
> 	atomic_set(&iop->read_count, 0);
> 	atomic_set(&iop->write_count, 0);
> 	bitmap_zero(iop->uptodate, PAGE_SIZE / SECTOR_SIZE);
> +
> +	/*
> +	 * migrate_page_move_mapping() assumes that pages with private data have
> +	 * their count elevated by 1.
> +	 */
> +	get_page(page);
> 	set_page_private(page, (unsigned long)iop);
> 	SetPagePrivate(page);
> 	return iop;
> @@ -133,6 +139,7 @@ iomap_page_release(struct page *page)
> 	WARN_ON_ONCE(atomic_read(&iop->write_count));
> 	ClearPagePrivate(page);
> 	set_page_private(page, 0);
> +	put_page(page);
> 	kfree(iop);
> }
> 
> -- 
> 2.11.0.262.g4b0a5b2.dirty
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] iomap: get/put the page in iomap_page_create/release()
  2018-11-15 18:41 [PATCH v2] iomap: get/put the page in iomap_page_create/release() p.jaroszynski
  2018-11-15 21:07 ` William Kucharski
@ 2018-12-03 23:22 ` Andrew Morton
  2018-12-04  0:38     ` Piotr Jaroszynski
  1 sibling, 1 reply; 5+ messages in thread
From: Andrew Morton @ 2018-12-03 23:22 UTC (permalink / raw)
  To: p.jaroszynski
  Cc: Alexander Viro, Christoph Hellwig, linux-fsdevel, linux-mm,
	Piotr Jaroszynski

On Thu, 15 Nov 2018 10:41:40 -0800 p.jaroszynski@gmail.com wrote:

> migrate_page_move_mapping() expects pages with private data set to have
> a page_count elevated by 1. This is what used to happen for xfs through
> the buffer_heads code before the switch to iomap in commit 82cb14175e7d
> ("xfs: add support for sub-pagesize writeback without buffer_heads").
> Not having the count elevated causes move_pages() to fail on memory
> mapped files coming from xfs.
> 
> Make iomap compatible with the migrate_page_move_mapping() assumption
> by elevating the page count as part of iomap_page_create() and lowering
> it in iomap_page_release().

What are the real-world end-user effects of this bug?

Is a -stable backport warranted?

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] iomap: get/put the page in iomap_page_create/release()
  2018-12-03 23:22 ` Andrew Morton
@ 2018-12-04  0:38     ` Piotr Jaroszynski
  0 siblings, 0 replies; 5+ messages in thread
From: Piotr Jaroszynski @ 2018-12-04  0:38 UTC (permalink / raw)
  To: Andrew Morton, p.jaroszynski
  Cc: Alexander Viro, Christoph Hellwig, linux-fsdevel, linux-mm, Michal Hocko

On 12/3/18 3:22 PM, Andrew Morton wrote:
> On Thu, 15 Nov 2018 10:41:40 -0800 p.jaroszynski@gmail.com wrote:
> 
>> migrate_page_move_mapping() expects pages with private data set to have
>> a page_count elevated by 1. This is what used to happen for xfs through
>> the buffer_heads code before the switch to iomap in commit 82cb14175e7d
>> ("xfs: add support for sub-pagesize writeback without buffer_heads").
>> Not having the count elevated causes move_pages() to fail on memory
>> mapped files coming from xfs.
>>
>> Make iomap compatible with the migrate_page_move_mapping() assumption
>> by elevating the page count as part of iomap_page_create() and lowering
>> it in iomap_page_release().
> 
> What are the real-world end-user effects of this bug?

It causes the move_pages() syscall to misbehave on memory mapped files
from xfs. It does not not move any pages, which I suppose is "just" a
perf issue, but it also ends up returning a positive number which is out
of spec for the syscall. Talking to Michal Hocko, it sounds like
returning positive numbers might be a necessary update to move_pages()
anyway though, see [1].

I only hit this in tests that verify that move_pages() actually moved
the pages. The test also got confused by the positive return from
move_pages() (it got treated as a success as positive numbers were not
expected and not handled) making it a bit harder to track down what's
going on.

> 
> Is a -stable backport warranted?
> 

I would say yes, but this is my first kernel contribution so others
would be probably better judges of that.

[1] - https://lkml.kernel.org/r/20181116114955.GJ14706@dhcp22.suse.cz

Thanks,
Piotr

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] iomap: get/put the page in iomap_page_create/release()
@ 2018-12-04  0:38     ` Piotr Jaroszynski
  0 siblings, 0 replies; 5+ messages in thread
From: Piotr Jaroszynski @ 2018-12-04  0:38 UTC (permalink / raw)
  To: Andrew Morton, p.jaroszynski
  Cc: Alexander Viro, Christoph Hellwig, linux-fsdevel, linux-mm, Michal Hocko

On 12/3/18 3:22 PM, Andrew Morton wrote:
> On Thu, 15 Nov 2018 10:41:40 -0800 p.jaroszynski@gmail.com wrote:
> 
>> migrate_page_move_mapping() expects pages with private data set to have
>> a page_count elevated by 1. This is what used to happen for xfs through
>> the buffer_heads code before the switch to iomap in commit 82cb14175e7d
>> ("xfs: add support for sub-pagesize writeback without buffer_heads").
>> Not having the count elevated causes move_pages() to fail on memory
>> mapped files coming from xfs.
>>
>> Make iomap compatible with the migrate_page_move_mapping() assumption
>> by elevating the page count as part of iomap_page_create() and lowering
>> it in iomap_page_release().
> 
> What are the real-world end-user effects of this bug?

It causes the move_pages() syscall to misbehave on memory mapped files
from xfs. It does not not move any pages, which I suppose is "just" a
perf issue, but it also ends up returning a positive number which is out
of spec for the syscall. Talking to Michal Hocko, it sounds like
returning positive numbers might be a necessary update to move_pages()
anyway though, see [1].

I only hit this in tests that verify that move_pages() actually moved
the pages. The test also got confused by the positive return from
move_pages() (it got treated as a success as positive numbers were not
expected and not handled) making it a bit harder to track down what's
going on.

> 
> Is a -stable backport warranted?
> 

I would say yes, but this is my first kernel contribution so others
would be probably better judges of that.

[1] - https://lkml.kernel.org/r/20181116114955.GJ14706@dhcp22.suse.cz

Thanks,
Piotr

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-12-04  0:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-15 18:41 [PATCH v2] iomap: get/put the page in iomap_page_create/release() p.jaroszynski
2018-11-15 21:07 ` William Kucharski
2018-12-03 23:22 ` Andrew Morton
2018-12-04  0:38   ` Piotr Jaroszynski
2018-12-04  0:38     ` Piotr Jaroszynski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.