From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Lutomirski Subject: Re: [PATCH net-next v5 02/20] zinc: introduce minimal cryptography library Date: Thu, 20 Sep 2018 21:52:04 -0700 Message-ID: References: <20180918161646.19105-1-Jason@zx2c4.com> <20180918161646.19105-3-Jason@zx2c4.com> <20180921031255.GB11109@lunn.ch> <8FA361E3-FBCB-469E-88DC-F4085BD91175@amacapital.net> Mime-Version: 1.0 (1.0) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: "Jason A. Donenfeld" , Andrew Lunn , Arnd Bergmann , Eric Biggers , LKML , Netdev , Linux Crypto Mailing List , David Miller , Greg Kroah-Hartman , Samuel Neves , Andrew Lutomirski , Jean-Philippe Aumasson To: Ard Biesheuvel Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-crypto.vger.kernel.org > On Sep 20, 2018, at 9:30 PM, Ard Biesheuvel wr= ote: >=20 >> On 20 September 2018 at 21:15, Jason A. Donenfeld wrote= : >> Hi Andy, >>=20 >>> On Fri, Sep 21, 2018 at 5:23 AM Andy Lutomirski wr= ote: >>> At the risk on suggesting something awful: on x86_64, since we turn pree= mption off for simd, it wouldn=E2=80=99t be *completely* insane to do the cr= ypto on the irq stack. It would look like: >>>=20 >>> kernel_fpu_call(func, arg); >>>=20 >>> And this helper would disable preemption, enable FPU, switch to the irq s= tack, call func(arg), disable FPU, enable preemption, and return. And we can= have large IRQ stacks. >>>=20 >>> I refuse to touch this with a ten-foot pole until the lazy FPU restore p= atches land. >>=20 >> Haha. That's fun, and maybe we'll do that at some point, but I have >> some other reasons too for being on a workqueue now. >>=20 >=20 > Kernel mode crypto is callable from any context, and SIMD can be used > in softirq context on arm64 (and on x86, even from hardirq context > IIRC if the interrupt is taken from userland), in which case we'd > already be on the irq stack. The x86_64 irq stack handles nesting already.