diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2012-11-28 17:06:05 +0000 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2012-11-29 15:32:13 +0000 |
commit | 33eaa58f854770dc9c98411a356c98e3a53edfda (patch) | |
tree | 60f5074db489db6a30e6c32b5c7247e764b81562 /arch/arm64 | |
parent | 8f3bfa584ed05e9e7d290707c48eee026fb94ece (diff) | |
download | linux-33eaa58f854770dc9c98411a356c98e3a53edfda.tar.gz linux-33eaa58f854770dc9c98411a356c98e3a53edfda.tar.bz2 linux-33eaa58f854770dc9c98411a356c98e3a53edfda.zip |
arm64: Make !dirty ptes read-only
The AArch64 Linux port relies on the mm code to wrprotect clean ptes.
This however is not the case with newly created ptes and
PAGE_SHARED(_EXEC) is writable but !dirty.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Cc: <stable@vger.kernel.org>
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/include/asm/pgtable.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/pgtable.h b/arch/arm64/include/asm/pgtable.h index 8960239be722..937ae2064682 100644 --- a/arch/arm64/include/asm/pgtable.h +++ b/arch/arm64/include/asm/pgtable.h @@ -159,6 +159,8 @@ static inline void set_pte_at(struct mm_struct *mm, unsigned long addr, { if (pte_present_exec_user(pte)) __sync_icache_dcache(pte, addr); + if (!pte_dirty(pte)) + pte = pte_wrprotect(pte); set_pte(ptep, pte); } |