diff options
author | Mathias Krause <[email protected]> | 2022-02-07 16:01:19 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2022-02-11 12:13:22 +0100 |
commit | c72ea20503610a4a7ba26c769357d31602769c01 (patch) | |
tree | 062ddea6ce0e4f227e8d69025a2b21b6b88972a7 /net/lapb/lapb_timer.c | |
parent | bca828ccdd6548d24613d0cede04ada4dfb2f89c (diff) |
iio: buffer: Fix file related error handling in IIO_BUFFER_GET_FD_IOCTL
If we fail to copy the just created file descriptor to userland, we
try to clean up by putting back 'fd' and freeing 'ib'. The code uses
put_unused_fd() for the former which is wrong, as the file descriptor
was already published by fd_install() which gets called internally by
anon_inode_getfd().
This makes the error handling code leaving a half cleaned up file
descriptor table around and a partially destructed 'file' object,
allowing userland to play use-after-free tricks on us, by abusing
the still usable fd and making the code operate on a dangling
'file->private_data' pointer.
Instead of leaving the kernel in a partially corrupted state, don't
attempt to explicitly clean up and leave this to the process exit
path that'll release any still valid fds, including the one created
by the previous call to anon_inode_getfd(). Simply return -EFAULT to
indicate the error.
Fixes: f73f7f4da581 ("iio: buffer: add ioctl() to support opening extra buffers for IIO device")
Cc: [email protected]
Cc: Jonathan Cameron <[email protected]>
Cc: Alexandru Ardelean <[email protected]>
Cc: Lars-Peter Clausen <[email protected]>
Cc: Nuno Sa <[email protected]>
Reported-by: Dan Carpenter <[email protected]>
Signed-off-by: Mathias Krause <[email protected]>
Reviewed-by: Jonathan Cameron <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'net/lapb/lapb_timer.c')
0 files changed, 0 insertions, 0 deletions