[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <ce600dd6-90c2-6a4d-48df-02152174ad51@grimberg.me>
Date: Wed, 19 Jul 2023 14:54:24 +0300
From: Sagi Grimberg <sagi@...mberg.me>
To: Hannes Reinecke <hare@...e.de>, Jakub Kicinski <kuba@...nel.org>
Cc: "linux-nvme@...ts.infradead.org" <linux-nvme@...ts.infradead.org>,
"open list:NETWORKING [GENERAL]" <netdev@...r.kernel.org>
Subject: Re: nvme-tls and TCP window full
>>>>> And my reading seems that the current in-kernel TLS implementation
>>>>> assumes TCP as the underlying transport anyway, so no harm done.
>>>>> Jakub?
>>>>
>>>> While it is correct that the assumption for tcp only, I think the
>>>> right thing to do would be to store the original read_sock and call
>>>> that...
>>>
>>> Ah, sure. Or that.
>>
>> Yup, sorry for late reply, read_sock could also be replaced by BPF
>> or some other thing, even if it's always TCP "at the bottom".
>
> Hmm. So what do you suggest?
> Remember, the current patch does this:
>
> @@ -377,7 +376,7 @@ static int tls_strp_read_copyin(struct tls_strparser
> *strp)
> desc.count = 1; /* give more than one skb per call */
>
> /* sk should be locked here, so okay to do read_sock */
> - sock->ops->read_sock(strp->sk, &desc, tls_strp_copyin);
> + tcp_read_sock(strp->sk, &desc, tls_strp_copyin);
>
> return desc.error;
> }
>
> precisely because ->read_sock() gets redirected when TLS engages.
> And also remember TLS does _not_ use the normal redirection by
> intercepting the callbacks from 'struct sock', but rather replaces the
> ->ops callback in struct socket.
>
> So I'm slightly at a loss on how to implement a new callback without
> having to redo the entire TLS handover.
> Hence I vastly prefer just the simple patch by using tcp_read_sock()
> directly.
I think this is fine. The tls parser is exclusive to the bottom socket
being a tcp socket anyways, read_sock() was by definition until Hannes's
patch 6/6 always tcp_read_sock. So this is a valid replacement IMO.
I don't think that it is worth the effort to "prepare" for generalizing
the tls parser.
Powered by blists - more mailing lists