All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lev Olshvang <levonshe@gmail.com>
To: keescook@chromium.orh
Cc: kernel-hardening@lists.openwall.com, Lev Olshvang <levonshe@gmail.com>
Subject: [PATCH v3 2/5] Hardening PowerPC: Forbid writes to read-only memory pages of a process
Date: Mon, 13 Apr 2020 18:32:08 +0300	[thread overview]
Message-ID: <20200413153211.29876-3-levonshe@gmail.com> (raw)
In-Reply-To: <20200413153211.29876-1-levonshe@gmail.com>

Signed-off-by: Lev Olshvang <levonshe@gmail.com>
---
 arch/powerpc/include/asm/mmu_context.h | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/arch/powerpc/include/asm/mmu_context.h b/arch/powerpc/include/asm/mmu_context.h
index ddd6d01dd2a1..f4b6b44e304c 100644
--- a/arch/powerpc/include/asm/mmu_context.h
+++ b/arch/powerpc/include/asm/mmu_context.h
@@ -10,7 +10,6 @@
 #include <asm/mmu.h>
 #include <asm/cputable.h>
 #include <asm/cputhreads.h>
-#include <linux/sched.h>
 
 /*
  * Most if the context management is out of line
@@ -248,15 +247,9 @@ static inline bool arch_vma_access_permitted(struct vm_area_struct *vma,
 		bool write, bool execute, bool foreign)
 {
 	/* by default, allow everything */
-	if (likely(vma_write_allowed(vma, write, execute, foreign)))
-		return true;
-
-	pr_err_once("Error : PID[%d] %s writes to read only memory\n",
-			current->tgid, current->comm);
-	return false;
+	return true;
 }
 
-#endif
 #define pkey_mm_init(mm)
 #define thread_pkey_regs_save(thread)
 #define thread_pkey_regs_restore(new_thread, old_thread)
-- 
2.17.1


  parent reply	other threads:[~2020-04-13 15:33 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-13 15:32 [PATCH v3 0/5] hardening : prevent write to proces's read-only pages Lev Olshvang
2020-04-13 15:32 ` [PATCH v3 1/5] Hardening x86: Forbid writes to read-only memory pages of a process Lev Olshvang
2020-04-13 15:32 ` Lev Olshvang [this message]
2020-04-13 15:32 ` [PATCH v3 3/5] Hardening um: " Lev Olshvang
2020-04-13 15:32 ` [PATCH v3 4/5] Hardening unicore32: " Lev Olshvang
2020-04-13 15:32 ` [PATCH v3 5/5] Hardening : PPC book3s64: " Lev Olshvang
2020-04-13 17:13 ` [PATCH v3 0/5] hardening : prevent write to proces's read-only pages Kees Cook

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=20200413153211.29876-3-levonshe@gmail.com \
    --to=levonshe@gmail.com \
    --cc=keescook@chromium.orh \
    --cc=kernel-hardening@lists.openwall.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.