Re: [PATCH] crypto: rsassa-pkcs1 - Copy source data for SG list

From: Lukas Wunner
Date: Sat Nov 30 2024 - 03:42:02 EST


On Fri, Nov 29, 2024 at 05:53:16PM +0800, Herbert Xu wrote:
> As virtual addresses in general may not be suitable for DMA, always
> perform a copy before using them in an SG list.

Just a heads-up, this won't work for use cases when the src buffer
isn't accessible by the kernel. E.g. if the virtual address pointed to
by src is in TEE restricted memory which was mapped into virtual address
space by dma_buf_vmap():

https://lore.kernel.org/all/20241128150927.1377981-1-jens.wiklander@xxxxxxxxxx/

Thanks,

Lukas