linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: David Hildenbrand <david@redhat.com>
To: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>,
	Andrew Morton <akpm@linux-foundation.org>
Cc: "Liam R . Howlett" <Liam.Howlett@oracle.com>,
	Vlastimil Babka <vbabka@suse.cz>, Mike Rapoport <rppt@kernel.org>,
	Suren Baghdasaryan <surenb@google.com>,
	Michal Hocko <mhocko@suse.com>, Jann Horn <jannh@google.com>,
	Pedro Falcato <pfalcato@suse.de>,
	linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-mm@kvack.org, Alexander Viro <viro@zeniv.linux.org.uk>,
	Christian Brauner <brauner@kernel.org>, Jan Kara <jack@suse.cz>,
	Matthew Wilcox <willy@infradead.org>
Subject: Re: [PATCH 1/3] mm: introduce new .mmap_prepare() file callback
Date: Fri, 9 May 2025 12:00:38 +0200	[thread overview]
Message-ID: <2204037e-f0bd-4059-b32a-d0970d96cea3@redhat.com> (raw)
In-Reply-To: <c958ac6932eb8dd9ddbd2363bc2d242ff244341b.1746615512.git.lorenzo.stoakes@oracle.com>

On 07.05.25 13:03, Lorenzo Stoakes wrote:
> Provide a means by which drivers can specify which fields of those
> permitted to be changed should be altered to prior to mmap()'ing a
> range (which may either result from a merge or from mapping an entirely new
> VMA).
> 
> Doing so is substantially safer than the existing .mmap() calback which
> provides unrestricted access to the part-constructed VMA and permits
> drivers and file systems to do 'creative' things which makes it hard to
> reason about the state of the VMA after the function returns.
> 
> The existing .mmap() callback's freedom has caused a great deal of issues,
> especially in error handling, as unwinding the mmap() state has proven to
> be non-trivial and caused significant issues in the past, for instance
> those addressed in commit 5de195060b2e ("mm: resolve faulty mmap_region()
> error path behaviour").
> 
> It also necessitates a second attempt at merge once the .mmap() callback
> has completed, which has caused issues in the past, is awkward, adds
> overhead and is difficult to reason about.
> 
> The .mmap_prepare() callback eliminates this requirement, as we can update
> fields prior to even attempting the first merge. It is safer, as we heavily
> restrict what can actually be modified, and being invoked very early in the
> mmap() process, error handling can be performed safely with very little
> unwinding of state required.
> 
> The .mmap_prepare() and deprecated .mmap() callbacks are mutually
> exclusive, so we permit only one to be invoked at a time.
> 
> Update vma userland test stubs to account for changes.
> 

In general, looks very good to me.

Some comments, especially regarding suboptimal code duplciation with the 
stubs. (unless I am missing fine details :) )

> Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> ---
>   include/linux/fs.h               | 38 +++++++++++++++
>   include/linux/mm_types.h         | 24 ++++++++++
>   mm/memory.c                      |  3 +-
>   mm/mmap.c                        |  2 +-
>   mm/vma.c                         | 70 +++++++++++++++++++++++++++-
>   tools/testing/vma/vma_internal.h | 79 ++++++++++++++++++++++++++++++--
>   6 files changed, 208 insertions(+), 8 deletions(-)
> 
> diff --git a/include/linux/fs.h b/include/linux/fs.h
> index 016b0fe1536e..d6c5a703a215 100644
> --- a/include/linux/fs.h
> +++ b/include/linux/fs.h
> @@ -2169,6 +2169,7 @@ struct file_operations {
>   	int (*uring_cmd)(struct io_uring_cmd *ioucmd, unsigned int issue_flags);
>   	int (*uring_cmd_iopoll)(struct io_uring_cmd *, struct io_comp_batch *,
>   				unsigned int poll_flags);
> +	int (*mmap_prepare)(struct vm_area_desc *);
>   } __randomize_layout;
>   
>   /* Supports async buffered reads */
> @@ -2238,11 +2239,48 @@ struct inode_operations {
>   	struct offset_ctx *(*get_offset_ctx)(struct inode *inode);
>   } ____cacheline_aligned;
>   
> +static inline bool file_has_deprecated_mmap_hook(struct file *file)
> +{
> +	return file->f_op->mmap;
> +}
> +
> +static inline bool file_has_mmap_prepare_hook(struct file *file)
> +{
> +	return file->f_op->mmap_prepare;
> +}

I am usually not a fan of such dummy helper functions .. I mean, how far 
do we go?

file_has_f_op()

file_is_non_null()

...

Or is this required for some stubbing regarding vma tests? But even the 
stubs below confuse me a bit, because they do exactly the same thing :(

:)

> +
> +/* Did the driver provide valid mmap hook configuration? */
> +static inline bool file_has_valid_mmap_hooks(struct file *file)
> +{
> +	bool has_mmap = file_has_deprecated_mmap_hook(file);
> +	bool has_mmap_prepare = file_has_mmap_prepare_hook(file);
> +
> +	/* Hooks are mutually exclusive. */
> +	if (has_mmap && has_mmap_prepare)

Should this be WARN_ON_ONCE() ?

> +		return false;
> +
> +	/* But at least one must be specified. */
> +	if (!has_mmap && !has_mmap_prepare)
> +		return false;
> +
 > +	return true;

return has_mmap || has_mmap_prepare;

And I think you can drop the comment about "at least one" with that, 
should be quite clear from that simplified version.

> +}
> +
>   static inline int call_mmap(struct file *file, struct vm_area_struct *vma)
>   {
> +	/* If the driver specifies .mmap_prepare() this call is invalid. */
> +	if (file_has_mmap_prepare_hook(file))

Should this be WARN_ON_ONCE() ?

> +		return -EINVAL;
> +
>   	return file->f_op->mmap(file, vma);
>   }
>   
> +static inline int __call_mmap_prepare(struct file *file,
> +		struct vm_area_desc *desc)
> +{
> +	return file->f_op->mmap_prepare(desc);
> +}
> +

[...]

>   struct file {
>   	struct address_space	*f_mapping;
> +	const struct file_operations	*f_op;
>   };
>   
>   #define VMA_LOCK_OFFSET	0x40000000
> @@ -1125,11 +1157,6 @@ static inline void vm_flags_clear(struct vm_area_struct *vma,
>   	vma->__vm_flags &= ~flags;
>   }
>   
> -static inline int call_mmap(struct file *, struct vm_area_struct *)
> -{
> -	return 0;
> -}
> -
>   static inline int shmem_zero_setup(struct vm_area_struct *)
>   {
>   	return 0;
> @@ -1405,4 +1432,46 @@ static inline void free_anon_vma_name(struct vm_area_struct *vma)
>   	(void)vma;
>   }
>   
> +static inline bool file_has_deprecated_mmap_hook(struct file *file)
> +{
> +	return file->f_op->mmap;
> +}
> +
> +static inline bool file_has_mmap_prepare_hook(struct file *file)
> +{
> +	return file->f_op->mmap_prepare;
> +}
 > +> +/* Did the driver provide valid mmap hook configuration? */
> +static inline bool file_has_valid_mmap_hooks(struct file *file)
> +{
> +	bool has_mmap = file_has_deprecated_mmap_hook(file);
> +	bool has_mmap_prepare = file_has_mmap_prepare_hook(file);
> +
> +	/* Hooks are mutually exclusive. */
> +	if (has_mmap && has_mmap_prepare)
> +		return false;
 > +> +	/* But at least one must be specified. */
> +	if (!has_mmap && !has_mmap_prepare)
> +		return false;
> +
 > +	return true;> +}
> +
> +static inline int call_mmap(struct file *file, struct vm_area_struct *vma)
> +{
> +	/* If the driver specifies .mmap_prepare() this call is invalid. */
> +	if (file_has_mmap_prepare_hook(file))
 > +		return -EINVAL;> +
> +	return file->f_op->mmap(file, vma);
> +}
> +
> +static inline int __call_mmap_prepare(struct file *file,
> +		struct vm_area_desc *desc)
> +{
> +	return file->f_op->mmap_prepare(desc);
> +}

Hm, is there a way avoid a copy of the exact same code from fs.h, and 
essentially test the implementation in fs.h (-> more coverage by using 
less duplciated stubs?).

-- 
Cheers,

David / dhildenb



  reply	other threads:[~2025-05-09 10:00 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-07 11:03 [PATCH 0/3] eliminate mmap() retry merge, add .mmap_prepare hook Lorenzo Stoakes
2025-05-07 11:03 ` [PATCH 1/3] mm: introduce new .mmap_prepare() file callback Lorenzo Stoakes
2025-05-09 10:00   ` David Hildenbrand [this message]
2025-05-09 10:45     ` Lorenzo Stoakes
2025-05-09 10:51       ` David Hildenbrand
2025-05-09 10:57         ` Lorenzo Stoakes
2025-05-09 10:59           ` David Hildenbrand
2025-05-07 11:03 ` [PATCH 2/3] mm: secretmem: convert to .mmap_prepare() hook Lorenzo Stoakes
2025-05-09  9:45   ` David Hildenbrand
2025-05-09 10:38     ` Lorenzo Stoakes
2025-05-07 11:03 ` [PATCH 3/3] mm/vma: remove mmap() retry merge Lorenzo Stoakes
2025-05-09  9:45   ` David Hildenbrand
2025-05-09 10:38     ` Lorenzo Stoakes

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=2204037e-f0bd-4059-b32a-d0970d96cea3@redhat.com \
    --to=david@redhat.com \
    --cc=Liam.Howlett@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=brauner@kernel.org \
    --cc=jack@suse.cz \
    --cc=jannh@google.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=lorenzo.stoakes@oracle.com \
    --cc=mhocko@suse.com \
    --cc=pfalcato@suse.de \
    --cc=rppt@kernel.org \
    --cc=surenb@google.com \
    --cc=vbabka@suse.cz \
    --cc=viro@zeniv.linux.org.uk \
    --cc=willy@infradead.org \
    /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