net: fix compat pointer in get_compat_msghdr()
authorJens Axboe <axboe@kernel.dk>
Fri, 15 Jul 2022 21:54:47 +0000 (15:54 -0600)
committerJens Axboe <axboe@kernel.dk>
Thu, 21 Jul 2022 14:47:14 +0000 (08:47 -0600)
commit7f91d3066ae1b75eb96ed1eef2b5d7d648762da4
tree7df22d19d20af25a269f29844ac16a0e9335251c
parentb8fcaacbf65840d411ec58bee5eabd6e0b514874
net: fix compat pointer in get_compat_msghdr()

A previous change enabled external users to copy the data before
calling __get_compat_msghdr(), but didn't modify get_compat_msghdr() or
__io_compat_recvmsg_copy_hdr() to take that into account. They are both
stil passing in the __user pointer rather than the copied version.

Ensure we pass in the kernel struct, not the pointer to the user data.

Link: https://lore.kernel.org/all/46439555-644d-08a1-7d66-16f8f9a320f0@samsung.com/
Fixes: 1a3e4e94a1b9 ("net: copy from user before calling __get_compat_msghdr")
Reported-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/net.c
net/compat.c