diff mbox series

[net,v2] net/tls: Fix kernel panic when socket is in tls toe mode

Message ID 20201205113529.14574-1-vinay.yadav@chelsio.com
State Superseded
Headers show
Series [net,v2] net/tls: Fix kernel panic when socket is in tls toe mode | expand

Commit Message

Vinay Kumar Yadav Dec. 5, 2020, 11:35 a.m. UTC
When socket is in tls-toe (TLS_HW_RECORD) and connections
are established in kernel stack, on every connection close
it clears tls context which is created once on socket creation,
causing kernel panic. fix it by not initializing listen in
kernel stack incase of tls-toe, allow listen in only adapter.

v1->v2:
- warning correction.

Fixes: dd0bed1665d6 ("tls: support for Inline tls record")
Signed-off-by: Rohit Maheshwari <rohitm@chelsio.com>
Signed-off-by: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
---
 net/tls/tls_toe.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

Comments

Jakub Kicinski Dec. 8, 2020, 6:19 p.m. UTC | #1
On Sat,  5 Dec 2020 17:05:30 +0530 Vinay Kumar Yadav wrote:
> When socket is in tls-toe (TLS_HW_RECORD) and connections
> are established in kernel stack, on every connection close
> it clears tls context which is created once on socket creation,
> causing kernel panic. fix it by not initializing listen in
> kernel stack incase of tls-toe, allow listen in only adapter.

IOW the socket will no longer be present in kernel's hash tables?
Vinay Kumar Yadav Dec. 8, 2020, 7:16 p.m. UTC | #2
On 12/8/2020 11:49 PM, Jakub Kicinski wrote:
> On Sat,  5 Dec 2020 17:05:30 +0530 Vinay Kumar Yadav wrote:
>> When socket is in tls-toe (TLS_HW_RECORD) and connections
>> are established in kernel stack, on every connection close
>> it clears tls context which is created once on socket creation,
>> causing kernel panic. fix it by not initializing listen in
>> kernel stack incase of tls-toe, allow listen in only adapter.
> 
> IOW the socket will no longer be present in kernel's hash tables?
> 
Yes, when tls-toe devices are present.
Jakub Kicinski Dec. 8, 2020, 8:54 p.m. UTC | #3
On Wed, 9 Dec 2020 00:46:23 +0530 Vinay Kumar Yadav wrote:
> On 12/8/2020 11:49 PM, Jakub Kicinski wrote:
> > On Sat,  5 Dec 2020 17:05:30 +0530 Vinay Kumar Yadav wrote:  
> >> When socket is in tls-toe (TLS_HW_RECORD) and connections
> >> are established in kernel stack, on every connection close
> >> it clears tls context which is created once on socket creation,
> >> causing kernel panic. fix it by not initializing listen in
> >> kernel stack incase of tls-toe, allow listen in only adapter.  
> > 
> > IOW the socket will no longer be present in kernel's hash tables?
>
> Yes, when tls-toe devices are present.

I don't think that's acceptable for a transparently enabled
netdev-sanctioned feature.
diff mbox series

Patch

diff --git a/net/tls/tls_toe.c b/net/tls/tls_toe.c
index 7e1330f19..f38861ce9 100644
--- a/net/tls/tls_toe.c
+++ b/net/tls/tls_toe.c
@@ -81,7 +81,6 @@  int tls_toe_bypass(struct sock *sk)
 
 void tls_toe_unhash(struct sock *sk)
 {
-	struct tls_context *ctx = tls_get_ctx(sk);
 	struct tls_toe_device *dev;
 
 	spin_lock_bh(&device_spinlock);
@@ -95,16 +94,13 @@  void tls_toe_unhash(struct sock *sk)
 		}
 	}
 	spin_unlock_bh(&device_spinlock);
-	ctx->sk_proto->unhash(sk);
 }
 
 int tls_toe_hash(struct sock *sk)
 {
-	struct tls_context *ctx = tls_get_ctx(sk);
 	struct tls_toe_device *dev;
-	int err;
+	int err = 0;
 
-	err = ctx->sk_proto->hash(sk);
 	spin_lock_bh(&device_spinlock);
 	list_for_each_entry(dev, &device_list, dev_list) {
 		if (dev->hash) {