mirror of https://gitee.com/openkylin/linux.git
sys_pipe(): fix file descriptor leaks
Remember to close the files if copy_to_user() failed. Spotted by dm.n9107@gmail.com. Signed-off-by: Ulrich Drepper <drepper@redhat.com> Cc: DM <dm.n9107@gmail.com> Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
c1236d31a1
commit
ba719baeab
|
@ -40,8 +40,11 @@ asmlinkage int sys_pipe(unsigned long __user * fildes)
|
||||||
error = do_pipe(fd);
|
error = do_pipe(fd);
|
||||||
unlock_kernel();
|
unlock_kernel();
|
||||||
if (!error) {
|
if (!error) {
|
||||||
if (copy_to_user(fildes, fd, 2*sizeof(int)))
|
if (copy_to_user(fildes, fd, 2*sizeof(int))) {
|
||||||
|
sys_close(fd[0]);
|
||||||
|
sys_close(fd[1]);
|
||||||
error = -EFAULT;
|
error = -EFAULT;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,8 +90,11 @@ sys_pipe(unsigned long r0, unsigned long r1, unsigned long r2,
|
||||||
|
|
||||||
error = do_pipe(fd);
|
error = do_pipe(fd);
|
||||||
if (!error) {
|
if (!error) {
|
||||||
if (copy_to_user((void __user *)r0, fd, 2*sizeof(int)))
|
if (copy_to_user((void __user *)r0, fd, 2*sizeof(int))) {
|
||||||
|
sys_close(fd[0]);
|
||||||
|
sys_close(fd[1]);
|
||||||
error = -EFAULT;
|
error = -EFAULT;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include <linux/highmem.h>
|
#include <linux/highmem.h>
|
||||||
#include <linux/pagemap.h>
|
#include <linux/pagemap.h>
|
||||||
#include <linux/audit.h>
|
#include <linux/audit.h>
|
||||||
|
#include <linux/syscalls.h>
|
||||||
|
|
||||||
#include <asm/uaccess.h>
|
#include <asm/uaccess.h>
|
||||||
#include <asm/ioctls.h>
|
#include <asm/ioctls.h>
|
||||||
|
@ -1086,8 +1087,11 @@ asmlinkage long __weak sys_pipe(int __user *fildes)
|
||||||
|
|
||||||
error = do_pipe(fd);
|
error = do_pipe(fd);
|
||||||
if (!error) {
|
if (!error) {
|
||||||
if (copy_to_user(fildes, fd, sizeof(fd)))
|
if (copy_to_user(fildes, fd, sizeof(fd))) {
|
||||||
|
sys_close(fd[0]);
|
||||||
|
sys_close(fd[1]);
|
||||||
error = -EFAULT;
|
error = -EFAULT;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue