Re: [RFC PATCH 0/4] net/io_uring: pass a kernel pointer via optlen_t to proto[_ops].getsockopt()
From: David Laight
Date: Wed Apr 02 2025 - 08:37:04 EST
On Tue, 1 Apr 2025 17:40:19 -0700
Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> wrote:
> "
>
> On Mon, 31 Mar 2025 at 13:11, Stefan Metzmacher <metze@xxxxxxxxx> wrote:
> >
> > But as Linus don't like 'sockptr_t' I used a different approach.
>
> So the sockptr_t thing has already happened. I hate it, and I think
> it's ugly as hell, but it is what it is.
>
> I think it's a complete hack and having that "kernel or user" pointer
> flag is disgusting.
I have proposed a patch which replaced it with a structure.
That showed up some really hacky code in IIRC io_uring.
Using sockptr_t for the buffer was one thing, the generic code
can't copy the buffer to/from user because code lies about the length.
But using for the length is just brain-dead.
That is fixed size and can be copied from/to user by the wrapper.
The code bloat reduction will be significant.
David