lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20230227155352.3399bb10@kernel.org> Date: Mon, 27 Feb 2023 15:53:52 -0800 From: Jakub Kicinski <kuba@...nel.org> To: Eric Dumazet <edumazet@...gle.com> Cc: syzbot <syzbot+9c0268252b8ef967c62e@...kaller.appspotmail.com>, borisp@...dia.com, bpf@...r.kernel.org, davem@...emloft.net, john.fastabend@...il.com, linux-kernel@...r.kernel.org, netdev@...r.kernel.org, pabeni@...hat.com, syzkaller-bugs@...glegroups.com Subject: Re: [syzbot] [net?] INFO: task hung in tls_sw_sendpage (3) On Mon, 27 Feb 2023 21:35:41 +0100 Eric Dumazet wrote: > This looks suspicious to me > > commit 79ffe6087e9145d2377385cac48d0d6a6b4225a5 > Author: Jakub Kicinski <kuba@...nel.org> > Date: Tue Nov 5 14:24:35 2019 -0800 > > net/tls: add a TX lock > > > If tls_sw_sendpage() has to call sk_stream_wait_memory(), > sk_stream_wait_memory() is properly releasing the socket lock, > but knows nothing about mutex_{un}lock(&tls_ctx->tx_lock); That's supposed to be the point of the lock, prevent new writers from messing with the partially pushed records when the original writer is waiting for write space. Obvious hack but the async crypto support makes TLS a bit of a mess :| sendpage_lock not taking tx_lock may lead to obvious problems, I'm not seeing where the deadlock is, tho..
Powered by blists - more mailing lists