Commit df7d32af authored by Olaf Hering's avatar Olaf Hering Committed by Linus Torvalds

[PATCH] compat_do_execve() fix

For some reasons ls -l /proc/$$/exe doesnt work all time for me,
with 2.6.8.1 on ppc64. Sometimes it does, sometimes not. No pattern.
A few printks show that this check in proc_pid_readlink() triggers
an -EACCES:

	current->fsuid != inode->i_uid

proc_pid_readlink(755) error -13 ntptrace(11408) fsuid 100 i_uid 0 0
sys_readlink(281) ntptrace(11408) error -13 readlink
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 96f2a9c6
......@@ -1392,6 +1392,8 @@ int compat_do_execve(char * filename,
bprm.sh_bang = 0;
bprm.loader = 0;
bprm.exec = 0;
bprm.interp_flags = 0;
bprm.interp_data = 0;
bprm.security = NULL;
bprm.mm = mm_alloc();
retval = -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