mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
do_last(): don't let a bogus return value from ->open() et.al. to confuse us
commit c80567c82a upstream.
... into returning a positive to path_openat(), which would interpret that
as "symlink had been encountered" and proceed to corrupt memory, etc.
It can only happen due to a bug in some ->open() instance or in some LSM
hook, etc., so we report any such event *and* make sure it doesn't trick
us into further unpleasantness.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f634ac98bd
commit
80d18c0026
@@ -3210,6 +3210,10 @@ opened:
|
||||
goto exit_fput;
|
||||
}
|
||||
out:
|
||||
if (unlikely(error > 0)) {
|
||||
WARN_ON(1);
|
||||
error = -EINVAL;
|
||||
}
|
||||
if (got_write)
|
||||
mnt_drop_write(nd->path.mnt);
|
||||
path_put(&save_parent);
|
||||
|
||||
Reference in New Issue
Block a user