linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: John Hubbard <jhubbard@nvidia.com>
To: Li Xinhai <lixinhai.lxh@gmail.com>, <linux-mm@kvack.org>
Cc: <linux-api@vger.kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Mike Kravetz <mike.kravetz@oracle.com>
Subject: Re: [PATCH] mm: allow checking length for hugetlb mapping in mmap()
Date: Sat, 28 Mar 2020 20:53:07 -0700	[thread overview]
Message-ID: <f8b5b647-9041-8127-925c-1c8dcb508f24@nvidia.com> (raw)
In-Reply-To: <1585451295-22302-1-git-send-email-lixinhai.lxh@gmail.com>

On 3/28/20 8:08 PM, Li Xinhai wrote:
> In current code, the vma related call of hugetlb mapping, except mmap,
> are all consider not correctly aligned length as invalid parameter,
> including mprotect,munmap, mlock, etc., by checking through
> hugetlb_vm_op_split. So, user will see failure, after successfully call
> mmap, although using same length parameter to other mapping syscall.
> 
> It is desirable for all hugetlb mapping calls have consistent behavior,
> without mmap as exception(which round up length to align underlying
> hugepage size). In current Documentation/admin-guide/mm/hugetlbpage.rst,
> the description is:
> "
> Syscalls that operate on memory backed by hugetlb pages only have their
> lengths aligned to the native page size of the processor; they will
> normally fail with errno set to EINVAL or exclude hugetlb pages that
> extend beyond the length if not hugepage aligned. For example, munmap(2)
> will fail if memory is backed by a hugetlb page and the length is smaller
> than the hugepage size.
> "
> which express the consistent behavior.


Missing here is a description of what the patch actually does...

> 
> Signed-off-by: Li Xinhai <lixinhai.lxh@gmail.com>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: Mike Kravetz <mike.kravetz@oracle.com>
> Cc: John Hubbard <jhubbard@nvidia.com>
> ---
> changes:
> 0. patch which introduce new flag for mmap()
>     The new flag should be avoided.
>     https://lore.kernel.org/linux-mm/1585313944-8627-1-git-send-email-lixinhai.lxh@gmail.com/
> 
>   mm/mmap.c | 8 --------
>   1 file changed, 8 deletions(-)
> 
> diff --git a/mm/mmap.c b/mm/mmap.c
> index d681a20..b2aa102 100644
> --- a/mm/mmap.c
> +++ b/mm/mmap.c
> @@ -1560,20 +1560,12 @@ unsigned long ksys_mmap_pgoff(unsigned long addr, unsigned long len,
>   		file = fget(fd);
>   		if (!file)
>   			return -EBADF;
> -		if (is_file_hugepages(file))
> -			len = ALIGN(len, huge_page_size(hstate_file(file)));


...and it looks like this is simply removing the forced alignment. And not adding
any error case for non-aligned cases. So now I'm not immediately sure what happens if a
non-aligned address is passed in.

I would have expected to see either error checking or an ALIGN call here, but now both
are gone, so I'm lost and confused. :)


thanks,
-- 
John Hubbard
NVIDIA

>   		retval = -EINVAL;
>   		if (unlikely(flags & MAP_HUGETLB && !is_file_hugepages(file)))
>   			goto out_fput;
>   	} else if (flags & MAP_HUGETLB) {
>   		struct user_struct *user = NULL;
> -		struct hstate *hs;
>   
> -		hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
> -		if (!hs)
> -			return -EINVAL;
> -
> -		len = ALIGN(len, huge_page_size(hs));
>   		/*
>   		 * VM_NORESERVE is used because the reservations will be
>   		 * taken when vm_ops->mmap() is called
> 


  reply	other threads:[~2020-03-29  3:53 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-29  3:08 [PATCH] mm: allow checking length for hugetlb mapping in mmap() Li Xinhai
2020-03-29  3:53 ` John Hubbard [this message]
2020-03-29  8:09   ` Li Xinhai
2020-03-30 18:39     ` Mike Kravetz
2020-03-31  8:35       ` Li Xinhai
2020-03-31 22:04         ` Mike Kravetz

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=f8b5b647-9041-8127-925c-1c8dcb508f24@nvidia.com \
    --to=jhubbard@nvidia.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=lixinhai.lxh@gmail.com \
    --cc=mike.kravetz@oracle.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;
as well as URLs for NNTP newsgroup(s).