Commit 5e46b7f3 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] Better argument size tracking in fs/exec.c

From: Matthew Wilcox <willy@debian.org>

Introduce a new variable "arg_size" and set it appropriately in each arm of
the CONFIG_STACK_GROWSUP.  This patch fixes a bug for PA-RISC and makes the
code cleaner for everyone.
parent 0e4b3163
...@@ -341,6 +341,7 @@ int setup_arg_pages(struct linux_binprm *bprm) ...@@ -341,6 +341,7 @@ int setup_arg_pages(struct linux_binprm *bprm)
struct vm_area_struct *mpnt; struct vm_area_struct *mpnt;
struct mm_struct *mm = current->mm; struct mm_struct *mm = current->mm;
int i; int i;
long arg_size;
#ifdef CONFIG_STACK_GROWSUP #ifdef CONFIG_STACK_GROWSUP
/* Move the argument and environment strings to the bottom of the /* Move the argument and environment strings to the bottom of the
...@@ -375,6 +376,7 @@ int setup_arg_pages(struct linux_binprm *bprm) ...@@ -375,6 +376,7 @@ int setup_arg_pages(struct linux_binprm *bprm)
bprm->p = PAGE_SIZE * i - offset; bprm->p = PAGE_SIZE * i - offset;
stack_base = STACK_TOP - current->rlim[RLIMIT_STACK].rlim_max; stack_base = STACK_TOP - current->rlim[RLIMIT_STACK].rlim_max;
mm->arg_start = stack_base; mm->arg_start = stack_base;
arg_size = i << PAGE_SHIFT;
/* zero pages that were copied above */ /* zero pages that were copied above */
while (i < MAX_ARG_PAGES) while (i < MAX_ARG_PAGES)
...@@ -382,6 +384,7 @@ int setup_arg_pages(struct linux_binprm *bprm) ...@@ -382,6 +384,7 @@ int setup_arg_pages(struct linux_binprm *bprm)
#else #else
stack_base = STACK_TOP - MAX_ARG_PAGES * PAGE_SIZE; stack_base = STACK_TOP - MAX_ARG_PAGES * PAGE_SIZE;
mm->arg_start = bprm->p + stack_base; mm->arg_start = bprm->p + stack_base;
arg_size = STACK_TOP - (PAGE_MASK & (unsigned long) mm->arg_start);
#endif #endif
bprm->p += stack_base; bprm->p += stack_base;
...@@ -393,7 +396,7 @@ int setup_arg_pages(struct linux_binprm *bprm) ...@@ -393,7 +396,7 @@ int setup_arg_pages(struct linux_binprm *bprm)
if (!mpnt) if (!mpnt)
return -ENOMEM; return -ENOMEM;
if (security_vm_enough_memory((STACK_TOP - (PAGE_MASK & (unsigned long) bprm->p))>>PAGE_SHIFT)) { if (security_vm_enough_memory(arg_size >> PAGE_SHIFT)) {
kmem_cache_free(vm_area_cachep, mpnt); kmem_cache_free(vm_area_cachep, mpnt);
return -ENOMEM; return -ENOMEM;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment