mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* c/r: prctl: Drop VMA flags test on PR_SET_MM_ stack data assignment
@ 2012-04-26 16:08 Cyrill Gorcunov
  2012-04-26 18:17 ` Kees Cook
  0 siblings, 1 reply; 2+ messages in thread
From: Cyrill Gorcunov @ 2012-04-26 16:08 UTC (permalink / raw)
  To: Andrew Morton
  Cc: linux-kernel, Cyrill Gorcunov, Oleg Nesterov, Kees Cook,
	Pavel Emelyanov, Serge Hallyn, KAMEZAWA Hiroyuki

From: Cyrill Gorcunov <gorcunov@openvz.org>

With the

 | commit b76437579d1344b612cf1851ae610c636cec7db0
 | Author: Siddhesh Poyarekar <siddhesh.poyarekar@gmail.com>
 | Date:   Wed Mar 21 16:34:04 2012 -0700
 |
 | procfs: mark thread stack correctly in proc/<pid>/maps

the stack allocated via clone() is marked in /proc/<pid>/maps as
[stack:%d] thus it might be out of the former mm->start_stack/end_stack
values (and even has some custom VMA flags set). So to be able to
restore mm->start_stack/end_stack drop vma flags test, but still
require the undrlied VMA to exist.

As always note this feature is under CONFIG_CHECKPOINT_RESTORE
and requires CAP_SYS_RESOURCE to be granted.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Pavel Emelyanov <xemul@parallels.com>
Cc: Serge Hallyn <serge.hallyn@canonical.com>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
---
 kernel/sys.c |   14 --------------
 1 file changed, 14 deletions(-)

Index: linux-2.6.git/kernel/sys.c
===================================================================
--- linux-2.6.git.orig/kernel/sys.c
+++ linux-2.6.git/kernel/sys.c
@@ -1704,14 +1704,6 @@ SYSCALL_DEFINE1(umask, int, mask)
 }
 
 #ifdef CONFIG_CHECKPOINT_RESTORE
-static bool vma_flags_mismatch(struct vm_area_struct *vma,
-			       unsigned long required,
-			       unsigned long banned)
-{
-	return (vma->vm_flags & required) != required ||
-		(vma->vm_flags & banned);
-}
-
 static int prctl_set_mm_exe_file(struct mm_struct *mm, unsigned int fd)
 {
 	struct file *exe_file;
@@ -1842,12 +1834,6 @@ static int prctl_set_mm(int opt, unsigne
 			error = -EFAULT;
 			goto out;
 		}
-#ifdef CONFIG_STACK_GROWSUP
-		if (vma_flags_mismatch(vma, VM_READ | VM_WRITE | VM_GROWSUP, 0))
-#else
-		if (vma_flags_mismatch(vma, VM_READ | VM_WRITE | VM_GROWSDOWN, 0))
-#endif
-			goto out;
 		if (opt == PR_SET_MM_START_STACK)
 			mm->start_stack = addr;
 		else if (opt == PR_SET_MM_ARG_START)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: c/r: prctl: Drop VMA flags test on PR_SET_MM_ stack data assignment
  2012-04-26 16:08 c/r: prctl: Drop VMA flags test on PR_SET_MM_ stack data assignment Cyrill Gorcunov
@ 2012-04-26 18:17 ` Kees Cook
  0 siblings, 0 replies; 2+ messages in thread
From: Kees Cook @ 2012-04-26 18:17 UTC (permalink / raw)
  To: Cyrill Gorcunov
  Cc: Andrew Morton, linux-kernel, Cyrill Gorcunov, Oleg Nesterov,
	Pavel Emelyanov, Serge Hallyn, KAMEZAWA Hiroyuki

On Thu, Apr 26, 2012 at 9:08 AM, Cyrill Gorcunov <gorcunov@gmail.com> wrote:
> From: Cyrill Gorcunov <gorcunov@openvz.org>
>
> With the
>
>  | commit b76437579d1344b612cf1851ae610c636cec7db0
>  | Author: Siddhesh Poyarekar <siddhesh.poyarekar@gmail.com>
>  | Date:   Wed Mar 21 16:34:04 2012 -0700
>  |
>  | procfs: mark thread stack correctly in proc/<pid>/maps
>
> the stack allocated via clone() is marked in /proc/<pid>/maps as
> [stack:%d] thus it might be out of the former mm->start_stack/end_stack
> values (and even has some custom VMA flags set). So to be able to
> restore mm->start_stack/end_stack drop vma flags test, but still
> require the undrlied VMA to exist.
>
> As always note this feature is under CONFIG_CHECKPOINT_RESTORE
> and requires CAP_SYS_RESOURCE to be granted.
>
> Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>

It'd be nice if there was some sensible per-thread kernel record of
where the stack is expected to be. Regardless:

Acked-by: Kees Cook <keescook@chromium.org>

-- 
Kees Cook
Chrome OS Security

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-04-26 18:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-26 16:08 c/r: prctl: Drop VMA flags test on PR_SET_MM_ stack data assignment Cyrill Gorcunov
2012-04-26 18:17 ` Kees Cook

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome