mm-commits.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Mike Rapoport <rppt@linux.ibm.com>
To: akpm@linux-foundation.org
Cc: arnd@arndb.de, bp@alien8.de, catalin.marinas@arm.com,
	cl@linux.com, dan.j.williams@intel.com,
	dave.hansen@linux.intel.com, david@redhat.com,
	elena.reshetova@intel.com, guro@fb.com, hagen@jauu.net,
	hpa@zytor.com, jejb@linux.ibm.com, kirill@shutemov.name,
	luto@kernel.org, mark.rutland@arm.com, mingo@redhat.com,
	mm-commits@vger.kernel.org, mtk.manpages@gmail.com,
	palmer@dabbelt.com, palmerdabbelt@google.com,
	paul.walmsley@sifive.com, peterz@infradead.org,
	rick.p.edgecombe@intel.com, shakeelb@google.com,
	shuah@kernel.org, tglx@linutronix.de, tycho@tycho.ws,
	viro@zeniv.linux.org.uk, will@kernel.org, willy@infradead.org
Subject: Re: + mm-add-definition-of-pmd_page_order.patch added to -mm tree
Date: Thu, 18 Mar 2021 18:14:46 +0200	[thread overview]
Message-ID: <YFN8dl3ncdXdxytD@linux.ibm.com> (raw)
In-Reply-To: <20210317221512.A39Ft3LQk%akpm@linux-foundation.org>

Hi Andrew,

This patch is not required for this version of the set, I've just been
dragging it over from the previous versions.

Can you please just drop it and then we'll sort out DAX vs architectures
dispute unrelated to this series?

Sorry for the hassle.

On Wed, Mar 17, 2021 at 03:15:12PM -0700, akpm@linux-foundation.org wrote:
> 
> The patch titled
>      Subject: mm: add definition of PMD_PAGE_ORDER
> has been added to the -mm tree.  Its filename is
>      mm-add-definition-of-pmd_page_order.patch
> 
> This patch should soon appear at
>     https://ozlabs.org/~akpm/mmots/broken-out/mm-add-definition-of-pmd_page_order.patch
> and later at
>     https://ozlabs.org/~akpm/mmotm/broken-out/mm-add-definition-of-pmd_page_order.patch
> 
> Before you just go and hit "reply", please:
>    a) Consider who else should be cc'ed
>    b) Prefer to cc a suitable mailing list as well
>    c) Ideally: find the original patch on the mailing list and do a
>       reply-to-all to that, adding suitable additional cc's
> 
> *** Remember to use Documentation/process/submit-checklist.rst when testing your code ***
> 
> The -mm tree is included into linux-next and is updated
> there every 3-4 working days
> 
> ------------------------------------------------------
> From: Mike Rapoport <rppt@linux.ibm.com>
> Subject: mm: add definition of PMD_PAGE_ORDER
> 
> Patch series "mm: introduce memfd_secret system call to create "secret" memory areas", v18.
> 
> This is an implementation of "secret" mappings backed by a file
> descriptor.
> 
> The file descriptor backing secret memory mappings is created using a
> dedicated memfd_secret system call The desired protection mode for the
> memory is configured using flags parameter of the system call.  The mmap()
> of the file descriptor created with memfd_secret() will create a "secret"
> memory mapping.  The pages in that mapping will be marked as not present
> in the direct map and will be present only in the page table of the owning
> mm.
> 
> Although normally Linux userspace mappings are protected from other users,
> such secret mappings are useful for environments where a hostile tenant is
> trying to trick the kernel into giving them access to other tenants
> mappings.
> 
> Additionally, in the future the secret mappings may be used as a mean to
> protect guest memory in a virtual machine host.
> 
> For demonstration of secret memory usage we've created a userspace library
> 
> https://git.kernel.org/pub/scm/linux/kernel/git/jejb/secret-memory-preloader.git
> 
> that does two things: the first is act as a preloader for openssl to
> redirect all the OPENSSL_malloc calls to secret memory meaning any secret
> keys get automatically protected this way and the other thing it does is
> expose the API to the user who needs it.  We anticipate that a lot of the
> use cases would be like the openssl one: many toolkits that deal with
> secret keys already have special handling for the memory to try to give
> them greater protection, so this would simply be pluggable into the
> toolkits without any need for user application modification.
> 
> Hiding secret memory mappings behind an anonymous file allows usage of the
> page cache for tracking pages allocated for the "secret" mappings as well
> as using address_space_operations for e.g.  page migration callbacks.
> 
> The anonymous file may be also used implicitly, like hugetlb files, to
> implement mmap(MAP_SECRET) and use the secret memory areas with "native"
> mm ABIs in the future.
> 
> Removing of the pages from the direct map may cause its fragmentation on
> architectures that use large pages to map the physical memory which
> affects the system performance.  However, the original Kconfig text for
> CONFIG_DIRECT_GBPAGES said that gigabyte pages in the direct map "...  can
> improve the kernel's performance a tiny bit ..." (commit 00d1c5e05736
> ("x86: add gbpages switches")) and the recent report [1] showed that "... 
> although 1G mappings are a good default choice, there is no compelling
> evidence that it must be the only choice".  Hence, it is sufficient to
> have secretmem disabled by default with the ability of a system
> administrator to enable it at boot time.
> 
> In addition, there is also a long term goal to improve management of the
> direct map.
> 
> [1] https://lore.kernel.org/linux-mm/213b4567-46ce-f116-9cdf-bbd0c884eb3c@linux.intel.com/
> 
> 
> This patch (of 9):
> 
> The definition of PMD_PAGE_ORDER denoting the number of base pages in the
> second-level leaf page is already used by DAX and maybe handy in other
> cases as well.
> 
> Several architectures already have definition of PMD_ORDER as the size of
> second level page table, so to avoid conflict with these definitions use
> PMD_PAGE_ORDER name and update DAX respectively.
> 
> Link: https://lkml.kernel.org/r/20210303162209.8609-1-rppt@kernel.org
> Link: https://lkml.kernel.org/r/20210303162209.8609-2-rppt@kernel.org
> Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
> Reviewed-by: David Hildenbrand <david@redhat.com>
> Cc: Alexander Viro <viro@zeniv.linux.org.uk>
> Cc: Andy Lutomirski <luto@kernel.org>
> Cc: Arnd Bergmann <arnd@arndb.de>
> Cc: Borislav Petkov <bp@alien8.de>
> Cc: Catalin Marinas <catalin.marinas@arm.com>
> Cc: Christopher Lameter <cl@linux.com>
> Cc: Dan Williams <dan.j.williams@intel.com>
> Cc: Dave Hansen <dave.hansen@linux.intel.com>
> Cc: Elena Reshetova <elena.reshetova@intel.com>
> Cc: "H. Peter Anvin" <hpa@zytor.com>
> Cc: Ingo Molnar <mingo@redhat.com>
> Cc: James Bottomley <jejb@linux.ibm.com>
> Cc: "Kirill A. Shutemov" <kirill@shutemov.name>
> Cc: Matthew Wilcox <willy@infradead.org>
> Cc: Mark Rutland <mark.rutland@arm.com>
> Cc: Michael Kerrisk <mtk.manpages@gmail.com>
> Cc: Palmer Dabbelt <palmer@dabbelt.com>
> Cc: Paul Walmsley <paul.walmsley@sifive.com>
> Cc: Peter Zijlstra <peterz@infradead.org>
> Cc: Rick Edgecombe <rick.p.edgecombe@intel.com>
> Cc: Roman Gushchin <guro@fb.com>
> Cc: Shakeel Butt <shakeelb@google.com>
> Cc: Shuah Khan <shuah@kernel.org>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Tycho Andersen <tycho@tycho.ws>
> Cc: Will Deacon <will@kernel.org>
> Cc: Hagen Paul Pfeifer <hagen@jauu.net>
> Cc: Palmer Dabbelt <palmerdabbelt@google.com>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
> 
>  fs/dax.c                |   11 ++++-------
>  include/linux/pgtable.h |    3 +++
>  2 files changed, 7 insertions(+), 7 deletions(-)
> 
> --- a/fs/dax.c~mm-add-definition-of-pmd_page_order
> +++ a/fs/dax.c
> @@ -49,9 +49,6 @@ static inline unsigned int pe_order(enum
>  #define PG_PMD_COLOUR	((PMD_SIZE >> PAGE_SHIFT) - 1)
>  #define PG_PMD_NR	(PMD_SIZE >> PAGE_SHIFT)
>  
> -/* The order of a PMD entry */
> -#define PMD_ORDER	(PMD_SHIFT - PAGE_SHIFT)
> -
>  static wait_queue_head_t wait_table[DAX_WAIT_TABLE_ENTRIES];
>  
>  static int __init init_dax_wait_table(void)
> @@ -98,7 +95,7 @@ static bool dax_is_locked(void *entry)
>  static unsigned int dax_entry_order(void *entry)
>  {
>  	if (xa_to_value(entry) & DAX_PMD)
> -		return PMD_ORDER;
> +		return PMD_PAGE_ORDER;
>  	return 0;
>  }
>  
> @@ -1471,7 +1468,7 @@ static vm_fault_t dax_iomap_pmd_fault(st
>  {
>  	struct vm_area_struct *vma = vmf->vma;
>  	struct address_space *mapping = vma->vm_file->f_mapping;
> -	XA_STATE_ORDER(xas, &mapping->i_pages, vmf->pgoff, PMD_ORDER);
> +	XA_STATE_ORDER(xas, &mapping->i_pages, vmf->pgoff, PMD_PAGE_ORDER);
>  	unsigned long pmd_addr = vmf->address & PMD_MASK;
>  	bool write = vmf->flags & FAULT_FLAG_WRITE;
>  	bool sync;
> @@ -1530,7 +1527,7 @@ static vm_fault_t dax_iomap_pmd_fault(st
>  	 * entry is already in the array, for instance), it will return
>  	 * VM_FAULT_FALLBACK.
>  	 */
> -	entry = grab_mapping_entry(&xas, mapping, PMD_ORDER);
> +	entry = grab_mapping_entry(&xas, mapping, PMD_PAGE_ORDER);
>  	if (xa_is_internal(entry)) {
>  		result = xa_to_internal(entry);
>  		goto fallback;
> @@ -1696,7 +1693,7 @@ dax_insert_pfn_mkwrite(struct vm_fault *
>  	if (order == 0)
>  		ret = vmf_insert_mixed_mkwrite(vmf->vma, vmf->address, pfn);
>  #ifdef CONFIG_FS_DAX_PMD
> -	else if (order == PMD_ORDER)
> +	else if (order == PMD_PAGE_ORDER)
>  		ret = vmf_insert_pfn_pmd(vmf, pfn, FAULT_FLAG_WRITE);
>  #endif
>  	else
> --- a/include/linux/pgtable.h~mm-add-definition-of-pmd_page_order
> +++ a/include/linux/pgtable.h
> @@ -28,6 +28,9 @@
>  #define USER_PGTABLES_CEILING	0UL
>  #endif
>  
> +/* Number of base pages in a second level leaf page */
> +#define PMD_PAGE_ORDER	(PMD_SHIFT - PAGE_SHIFT)
> +
>  /*
>   * A page table page can be thought of an array like this: pXd_t[PTRS_PER_PxD]
>   *
> _
> 
> Patches currently in -mm which might be from rppt@linux.ibm.com are
> 
> mm-add-definition-of-pmd_page_order.patch
> mmap-make-mlock_future_check-global.patch
> riscv-kconfig-make-direct-map-manipulation-options-depend-on-mmu.patch
> set_memory-allow-set_direct_map__noflush-for-multiple-pages.patch
> set_memory-allow-querying-whether-set_direct_map_-is-actually-enabled.patch
> mm-introduce-memfd_secret-system-call-to-create-secret-memory-areas.patch
> pm-hibernate-disable-when-there-are-active-secretmem-users.patch
> arch-mm-wire-up-memfd_secret-system-call-where-relevant.patch
> secretmem-test-add-basic-selftest-for-memfd_secret2.patch
> 

-- 
Sincerely yours,
Mike.

  parent reply	other threads:[~2021-03-18 16:16 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-17 22:15 + mm-add-definition-of-pmd_page_order.patch added to -mm tree akpm
2021-03-17 22:54 ` Matthew Wilcox
2021-03-17 23:19   ` James Bottomley
2021-03-18  0:15     ` Matthew Wilcox
2021-03-18  1:04       ` James Bottomley
2021-03-18 16:14 ` Mike Rapoport [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-12-03 23:42 akpm
2020-11-12 22:13 akpm
2020-09-25  2:35 akpm
2020-09-16 23:20 akpm

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=YFN8dl3ncdXdxytD@linux.ibm.com \
    --to=rppt@linux.ibm.com \
    --cc=akpm@linux-foundation.org \
    --cc=arnd@arndb.de \
    --cc=bp@alien8.de \
    --cc=catalin.marinas@arm.com \
    --cc=cl@linux.com \
    --cc=dan.j.williams@intel.com \
    --cc=dave.hansen@linux.intel.com \
    --cc=david@redhat.com \
    --cc=elena.reshetova@intel.com \
    --cc=guro@fb.com \
    --cc=hagen@jauu.net \
    --cc=hpa@zytor.com \
    --cc=jejb@linux.ibm.com \
    --cc=kirill@shutemov.name \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=mingo@redhat.com \
    --cc=mm-commits@vger.kernel.org \
    --cc=mtk.manpages@gmail.com \
    --cc=palmer@dabbelt.com \
    --cc=palmerdabbelt@google.com \
    --cc=paul.walmsley@sifive.com \
    --cc=peterz@infradead.org \
    --cc=rick.p.edgecombe@intel.com \
    --cc=shakeelb@google.com \
    --cc=shuah@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=tycho@tycho.ws \
    --cc=viro@zeniv.linux.org.uk \
    --cc=will@kernel.org \
    --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;
as well as URLs for NNTP newsgroup(s).