Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1330410 > unrolled thread

[tip:x86/asm] x86/mm: Honour passed pgprot in track_pfn_insert() and track_pfn_remap()

Started bytip-bot for Matthew Wilcox <tipbot@zytor.com>
First post2016-02-09 17:20 +0100
Last post2016-02-09 17:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [tip:x86/asm] x86/mm: Honour passed pgprot in track_pfn_insert()   and track_pfn_remap() tip-bot for Matthew Wilcox <tipbot@zytor.com> - 2016-02-09 17:20 +0100

#1330410 — [tip:x86/asm] x86/mm: Honour passed pgprot in track_pfn_insert() and track_pfn_remap()

Fromtip-bot for Matthew Wilcox <tipbot@zytor.com>
Date2016-02-09 17:20 +0100
Subject[tip:x86/asm] x86/mm: Honour passed pgprot in track_pfn_insert() and track_pfn_remap()
Message-ID<r0jbc-6vm-11@gated-at.bofh.it>
Commit-ID:  dd7b6847670a84b7bb7c38f8e69b2f12059bca66
Gitweb:     http://git.kernel.org/tip/dd7b6847670a84b7bb7c38f8e69b2f12059bca66
Author:     Matthew Wilcox <willy@linux.intel.com>
AuthorDate: Mon, 25 Jan 2016 12:25:15 -0500
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Tue, 9 Feb 2016 15:25:36 +0100

x86/mm: Honour passed pgprot in track_pfn_insert() and track_pfn_remap()

track_pfn_insert() overwrites the pgprot that is passed in with a value
based on the VMA's page_prot.  This is a problem for people trying to
do clever things with the new vm_insert_pfn_prot() as it will simply
overwrite the passed protection flags.  If we use the current value of
the pgprot as the base, then it will behave as people are expecting.

Also fix track_pfn_remap() in the same way.

Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
Acked-by: Andy Lutomirski <luto@kernel.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Kees Cook <keescook@chromium.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-mm@kvack.org
Link: http://lkml.kernel.org/r/1453742717-10326-2-git-send-email-matthew.r.wilcox@intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 arch/x86/mm/pat.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/mm/pat.c b/arch/x86/mm/pat.c
index f4ae536..04e2e71 100644
--- a/arch/x86/mm/pat.c
+++ b/arch/x86/mm/pat.c
@@ -943,7 +943,7 @@ int track_pfn_remap(struct vm_area_struct *vma, pgprot_t *prot,
 			return -EINVAL;
 	}
 
-	*prot = __pgprot((pgprot_val(vma->vm_page_prot) & (~_PAGE_CACHE_MASK)) |
+	*prot = __pgprot((pgprot_val(*prot) & (~_PAGE_CACHE_MASK)) |
 			 cachemode2protval(pcm));
 
 	return 0;
@@ -959,7 +959,7 @@ int track_pfn_insert(struct vm_area_struct *vma, pgprot_t *prot,
 
 	/* Set prot based on lookup */
 	pcm = lookup_memtype(pfn_t_to_phys(pfn));
-	*prot = __pgprot((pgprot_val(vma->vm_page_prot) & (~_PAGE_CACHE_MASK)) |
+	*prot = __pgprot((pgprot_val(*prot) & (~_PAGE_CACHE_MASK)) |
 			 cachemode2protval(pcm));
 
 	return 0;

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web