diff options
author | Tetsuo Handa <penguin-kernel@i-love.sakura.ne.jp> | 2008-04-29 03:59:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 11:06:03 -0400 |
commit | 175a06ae300188af8a61db68a78e1af44dc7d44f (patch) | |
tree | ed088932ad725985ead11fbf9e4cd7754af0dcc8 /fs/exec.c | |
parent | ecd0fa9825a1270e31fb48bc9edcfb28918b6c51 (diff) |
exec: remove argv_len from struct linux_binprm
I noticed that 2.6.24.2 calculates bprm->argv_len at do_execve(). But it
doesn't update bprm->argv_len after "remove_arg_zero() +
copy_strings_kernel()" at load_script() etc.
audit_bprm() is called from search_binary_handler() and
search_binary_handler() is called from load_script() etc. Thus, I think the
condition check
if (bprm->argv_len > (audit_argv_kb << 10))
return -E2BIG;
in audit_bprm() might return wrong result when strlen(removed_arg) !=
strlen(spliced_args). Why not update bprm->argv_len at load_script() etc. ?
By the way, 2.6.25-rc3 seems to not doing the condition check. Is the field
bprm->argv_len no longer needed?
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Cc: Ollie Wild <aaw@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/exec.c')
-rw-r--r-- | fs/exec.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -1268,7 +1268,6 @@ int do_execve(char * filename, | |||
1268 | { | 1268 | { |
1269 | struct linux_binprm *bprm; | 1269 | struct linux_binprm *bprm; |
1270 | struct file *file; | 1270 | struct file *file; |
1271 | unsigned long env_p; | ||
1272 | struct files_struct *displaced; | 1271 | struct files_struct *displaced; |
1273 | int retval; | 1272 | int retval; |
1274 | 1273 | ||
@@ -1321,11 +1320,9 @@ int do_execve(char * filename, | |||
1321 | if (retval < 0) | 1320 | if (retval < 0) |
1322 | goto out; | 1321 | goto out; |
1323 | 1322 | ||
1324 | env_p = bprm->p; | ||
1325 | retval = copy_strings(bprm->argc, argv, bprm); | 1323 | retval = copy_strings(bprm->argc, argv, bprm); |
1326 | if (retval < 0) | 1324 | if (retval < 0) |
1327 | goto out; | 1325 | goto out; |
1328 | bprm->argv_len = env_p - bprm->p; | ||
1329 | 1326 | ||
1330 | retval = search_binary_handler(bprm,regs); | 1327 | retval = search_binary_handler(bprm,regs); |
1331 | if (retval >= 0) { | 1328 | if (retval >= 0) { |