Commit 362e6663 authored by Jason Baron's avatar Jason Baron Committed by Linus Torvalds

exec.c, compat.c: fix count(), compat_count() bounds checking

With MAX_ARG_STRINGS set to 0x7FFFFFFF, and being passed to 'count()' and
compat_count(), it would appear that the current max bounds check of
fs/exec.c:394:

	if(++i > max)
		return -E2BIG;

would never trigger. Since 'i' is of type int, so values would wrap and the
function would continue looping.

Simple fix seems to be chaning ++i to i++ and checking for '>='.
Signed-off-by: default avatarJason Baron <jbaron@redhat.com>
Acked-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Cc: "Ollie Wild" <aaw@google.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 9679e4dd
...@@ -1239,7 +1239,7 @@ static int compat_count(compat_uptr_t __user *argv, int max) ...@@ -1239,7 +1239,7 @@ static int compat_count(compat_uptr_t __user *argv, int max)
if (!p) if (!p)
break; break;
argv++; argv++;
if(++i > max) if (i++ >= max)
return -E2BIG; return -E2BIG;
} }
} }
......
...@@ -391,7 +391,7 @@ static int count(char __user * __user * argv, int max) ...@@ -391,7 +391,7 @@ static int count(char __user * __user * argv, int max)
if (!p) if (!p)
break; break;
argv++; argv++;
if(++i > max) if (i++ >= max)
return -E2BIG; return -E2BIG;
cond_resched(); cond_resched();
} }
......
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