lkml.org 
[lkml]   [2019]   [Jul]   [31]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCHv2 41/59] mm: Generalize the mprotect implementation to support extensions
    Date
    From: Alison Schofield <alison.schofield@intel.com>

    Today mprotect is implemented to support legacy mprotect behavior
    plus an extension for memory protection keys. Make it more generic
    so that it can support additional extensions in the future.

    This is done is preparation for adding a new system call for memory
    encyption keys. The intent is that the new encrypted mprotect will be
    another extension to legacy mprotect.

    Signed-off-by: Alison Schofield <alison.schofield@intel.com>
    Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
    ---
    mm/mprotect.c | 10 ++++++----
    1 file changed, 6 insertions(+), 4 deletions(-)

    diff --git a/mm/mprotect.c b/mm/mprotect.c
    index 82d7b194a918..4d55725228e3 100644
    --- a/mm/mprotect.c
    +++ b/mm/mprotect.c
    @@ -35,6 +35,8 @@

    #include "internal.h"

    +#define NO_KEY -1
    +
    static unsigned long change_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
    unsigned long addr, unsigned long end, pgprot_t newprot,
    int dirty_accountable, int prot_numa)
    @@ -453,9 +455,9 @@ mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
    }

    /*
    - * pkey==-1 when doing a legacy mprotect()
    + * When pkey==NO_KEY we get legacy mprotect behavior here.
    */
    -static int do_mprotect_pkey(unsigned long start, size_t len,
    +static int do_mprotect_ext(unsigned long start, size_t len,
    unsigned long prot, int pkey)
    {
    unsigned long nstart, end, tmp, reqprot;
    @@ -579,7 +581,7 @@ static int do_mprotect_pkey(unsigned long start, size_t len,
    SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
    unsigned long, prot)
    {
    - return do_mprotect_pkey(start, len, prot, -1);
    + return do_mprotect_ext(start, len, prot, NO_KEY);
    }

    #ifdef CONFIG_ARCH_HAS_PKEYS
    @@ -587,7 +589,7 @@ SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
    SYSCALL_DEFINE4(pkey_mprotect, unsigned long, start, size_t, len,
    unsigned long, prot, int, pkey)
    {
    - return do_mprotect_pkey(start, len, prot, pkey);
    + return do_mprotect_ext(start, len, prot, pkey);
    }

    SYSCALL_DEFINE2(pkey_alloc, unsigned long, flags, unsigned long, init_val)
    --
    2.21.0
    \
     
     \ /
      Last update: 2019-07-31 17:23    [W:4.746 / U:0.136 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site