linux-crypto.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/42] crypto: Convert to platform remove callback returning void
@ 2023-10-20  7:55 Uwe Kleine-König
  2023-10-20  7:55 ` [PATCH 01/42] crypto: sun4i-ss - " Uwe Kleine-König
                   ` (41 more replies)
  0 siblings, 42 replies; 69+ messages in thread
From: Uwe Kleine-König @ 2023-10-20  7:55 UTC (permalink / raw)
  To: Herbert Xu, David S. Miller
  Cc: Corentin Labbe, Chen-Yu Tsai, Jernej Skrabec, Samuel Holland,
	Jonathan Corbet, Rob Herring, linux-crypto, linux-arm-kernel,
	linux-sunxi, kernel, Yu Zhe, Corentin Labbe, linux-amlogic,
	Neal Liu, Joel Stanley, Andrew Jeffery, linux-aspeed,
	Nicolas Ferre, Alexandre Belloni, Claudiu Beznea, Jesper Nilsson,
	Lars Persson, linux-arm-kernel, Arnd Bergmann, Horia Geantă,
	Pankaj Gupta, Gaurav Jain, Tom Lendacky, John Allen,
	Gilad Ben-Yossef, Krzysztof Kozlowski, Alim Akhtar,
	linux-samsung-soc, Hans Ulli Kroll, Linus Walleij, Ruan Jinjie,
	Weili Qian, Antoine Tenart, Linus Walleij, Imre Kaloz,
	Daniele Alessandrelli, Prabhjot Khurana, Mark Gross,
	Declan Murphy, Boris Brezillon, Arnaud Ebalard, Srujana Challa,
	Shawn Guo, Sascha Hauer, Fabio Estevam, NXP Linux Team,
	Thara Gopinath, linux-arm-msm, Andy Gross, Bjorn Andersson,
	Konrad Dybcio, Heiko Stuebner, linux-rockchip, Vladimir Zapolskiy,
	Maxime Coquelin, Alexandre Torgue, linux-stm32,
	nicolas.toromanoff, Colin Ian King, Michal Simek, Harsha

Hello,

this series converts all platform drivers below drivers/crypto to use
.remove_new(). Compared to the traditional .remove() callback
.remove_new() returns no value. This is a good thing because the driver
core doesn't (and cannot) cope for errors during remove. The only effect
of a non-zero return value in .remove() is that the driver core emits a
warning. The device is removed anyhow and an early return from .remove()
usually yields resource leaks and/or use-after-free bugs.

There are three drivers that got that wrong and potentially returned an
error code (caam/jr.c, stm32/stm32-crc32.c, stm32/stm32-cryp.c). These
are fixed accordingly. The other drivers could be transformed trivially.

See commit 5c5a7680e67b ("platform: Provide a remove callback that
returns no value") for an extended explanation and the eventual goal.

There are no interdependencies in this series. As there are still quite
a few drivers to convert, I'm happy about every patch that makes it in.
So even if there is a merge conflict with one patch until you apply (or
a different concern that doesn't apply to all patches), please apply the
remainder of this series anyhow. I'll come back to the part that you
(maybe) skipped at a later point.

Best regards and thanks
Uwe

Uwe Kleine-König (42):
  crypto: sun4i-ss - Convert to platform remove callback returning void
  crypto: sun8i-ce - Convert to platform remove callback returning void
  crypto: sun8i-ss - Convert to platform remove callback returning void
  crypto: amcc/crypto4xx - Convert to platform remove callback returning void
  crypto: amlogic-gxl-core - Convert to platform remove callback returning void
  crypto: aspeed-acry - Convert to platform remove callback returning void
  crypto: aspeed-hace - Convert to platform remove callback returning void
  crypto: atmel-aes - Convert to platform remove callback returning void
  crypto: atmel-sha - Convert to platform remove callback returning void
  crypto: atmel-tdes - Convert to platform remove callback returning void
  crypto: axis/artpec6 - Convert to platform remove callback returning void
  crypto: bcm/cipher - Convert to platform remove callback returning void
  crypto: caam/jr - Convert to platform remove callback returning void
  crypto: ccp/sp - Convert to platform remove callback returning void
  crypto: ccree/cc - Convert to platform remove callback returning void
  crypto: exynos-rng - Convert to platform remove callback returning void
  crypto: gemini/sl3516-ce - Convert to platform remove callback returning void
  crypto: hisilicon/sec - Convert to platform remove callback returning void
  crypto: hisilicon/trng - Convert to platform remove callback returning void
  crypto: img-hash - Convert to platform remove callback returning void
  crypto: inside-secure/safexcel - Convert to platform remove callback returning void
  crypto: intel/ixp4xx-crypto - Convert to platform remove callback returning void
  crypto: intel/keembay-ocs-aes - Convert to platform remove callback returning void
  crypto: intel/keembay-ocs-ecc - Convert to platform remove callback returning void
  crypto: intel/keembay-ocs-hcu - Convert to platform remove callback returning void
  crypto: marvell/cesa - Convert to platform remove callback returning void
  crypto: mxs-dcp - Convert to platform remove callback returning void
  crypto: n2_core - Convert to platform remove callback returning void
  crypto: omap-aes - Convert to platform remove callback returning void
  crypto: omap-des - Convert to platform remove callback returning void
  crypto: omap-sham - Convert to platform remove callback returning void
  crypto: qce - Convert to platform remove callback returning void
  crypto: qcom-rng - Convert to platform remove callback returning void
  crypto: rockchip/rk3288 - Convert to platform remove callback returning void
  crypto: s5p-sss - Convert to platform remove callback returning void
  crypto: sa2ul - Convert to platform remove callback returning void
  crypto: sahara - Convert to platform remove callback returning void
  crypto: stm32/crc32 - Convert to platform remove callback returning void
  crypto: stm32/cryp - Convert to platform remove callback returning void
  crypto: talitos - Convert to platform remove callback returning void
  crypto: xilinx/zynqmp-aes-gcm - Convert to platform remove callback returning void
  crypto: xilinx/zynqmp-sha - Convert to platform remove callback returning void

 .../crypto/allwinner/sun4i-ss/sun4i-ss-core.c |  5 ++---
 .../crypto/allwinner/sun8i-ce/sun8i-ce-core.c |  5 ++---
 .../crypto/allwinner/sun8i-ss/sun8i-ss-core.c |  6 ++---
 drivers/crypto/amcc/crypto4xx_core.c          |  6 ++---
 drivers/crypto/amlogic/amlogic-gxl-core.c     |  5 ++---
 drivers/crypto/aspeed/aspeed-acry.c           |  6 ++---
 drivers/crypto/aspeed/aspeed-hace.c           |  6 ++---
 drivers/crypto/atmel-aes.c                    |  6 ++---
 drivers/crypto/atmel-sha.c                    |  6 ++---
 drivers/crypto/atmel-tdes.c                   |  6 ++---
 drivers/crypto/axis/artpec6_crypto.c          |  5 ++---
 drivers/crypto/bcm/cipher.c                   |  5 ++---
 drivers/crypto/caam/jr.c                      | 22 ++++++++-----------
 drivers/crypto/ccp/sp-platform.c              |  6 ++---
 drivers/crypto/ccree/cc_driver.c              |  6 ++---
 drivers/crypto/exynos-rng.c                   |  6 ++---
 drivers/crypto/gemini/sl3516-ce-core.c        |  6 ++---
 drivers/crypto/hisilicon/sec/sec_drv.c        |  6 ++---
 drivers/crypto/hisilicon/trng/trng.c          |  6 ++---
 drivers/crypto/img-hash.c                     |  6 ++---
 drivers/crypto/inside-secure/safexcel.c       |  6 ++---
 drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c   |  6 ++---
 .../intel/keembay/keembay-ocs-aes-core.c      |  6 ++---
 .../crypto/intel/keembay/keembay-ocs-ecc.c    |  6 ++---
 .../intel/keembay/keembay-ocs-hcu-core.c      |  6 ++---
 drivers/crypto/marvell/cesa/cesa.c            |  6 ++---
 drivers/crypto/mxs-dcp.c                      |  6 ++---
 drivers/crypto/n2_core.c                      | 12 ++++------
 drivers/crypto/omap-aes.c                     |  6 ++---
 drivers/crypto/omap-des.c                     |  6 ++---
 drivers/crypto/omap-sham.c                    |  6 ++---
 drivers/crypto/qce/core.c                     |  5 ++---
 drivers/crypto/qcom-rng.c                     |  6 ++---
 drivers/crypto/rockchip/rk3288_crypto.c       |  5 ++---
 drivers/crypto/s5p-sss.c                      |  6 ++---
 drivers/crypto/sa2ul.c                        |  6 ++---
 drivers/crypto/sahara.c                       |  6 ++---
 drivers/crypto/stm32/stm32-crc32.c            | 15 +++++--------
 drivers/crypto/stm32/stm32-cryp.c             | 16 +++++---------
 drivers/crypto/talitos.c                      |  6 ++---
 drivers/crypto/xilinx/zynqmp-aes-gcm.c        |  6 ++---
 drivers/crypto/xilinx/zynqmp-sha.c            |  6 ++---
 42 files changed, 99 insertions(+), 187 deletions(-)

base-commit: 4230ea146b1e64628f11e44290bb4008e391bc24
-- 
2.42.0


^ permalink raw reply	[flat|nested] 69+ messages in thread

end of thread, other threads:[~2023-10-25 13:32 UTC | newest]

Thread overview: 69+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-20  7:55 [PATCH 00/42] crypto: Convert to platform remove callback returning void Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 01/42] crypto: sun4i-ss - " Uwe Kleine-König
2023-10-20 10:10   ` Andre Przywara
2023-10-20 14:08   ` Jernej Škrabec
2023-10-25 13:13   ` Corentin Labbe
2023-10-20  7:55 ` [PATCH 02/42] crypto: sun8i-ce " Uwe Kleine-König
2023-10-20 10:12   ` Andre Przywara
2023-10-20 14:08   ` Jernej Škrabec
2023-10-25 13:14   ` Corentin Labbe
2023-10-20  7:55 ` [PATCH 03/42] crypto: sun8i-ss " Uwe Kleine-König
2023-10-20 10:12   ` Andre Przywara
2023-10-20 14:09   ` Jernej Škrabec
2023-10-25 13:14   ` Corentin Labbe
2023-10-20  7:55 ` [PATCH 04/42] crypto: amcc/crypto4xx " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 05/42] crypto: amlogic-gxl-core " Uwe Kleine-König
2023-10-25 13:30   ` Corentin LABBE
2023-10-20  7:55 ` [PATCH 06/42] crypto: aspeed-acry " Uwe Kleine-König
2023-10-23  2:35   ` Andrew Jeffery
2023-10-20  7:55 ` [PATCH 07/42] crypto: aspeed-hace " Uwe Kleine-König
2023-10-23  2:36   ` Andrew Jeffery
2023-10-20  7:55 ` [PATCH 08/42] crypto: atmel-aes " Uwe Kleine-König
2023-10-20  8:49   ` Hari.PrasathGE
2023-10-20  7:55 ` [PATCH 09/42] crypto: atmel-sha " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 10/42] crypto: atmel-tdes " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 11/42] crypto: axis/artpec6 " Uwe Kleine-König
2023-10-23  7:36   ` Jesper Nilsson
2023-10-20  7:55 ` [PATCH 12/42] crypto: bcm/cipher " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 13/42] crypto: caam/jr " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 14/42] crypto: ccp/sp " Uwe Kleine-König
2023-10-20 18:00   ` Tom Lendacky
2023-10-20  7:55 ` [PATCH 15/42] crypto: ccree/cc " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 16/42] crypto: exynos-rng " Uwe Kleine-König
2023-10-20  8:18   ` Krzysztof Kozlowski
2023-10-24 21:52   ` Andi Shyti
2023-10-20  7:55 ` [PATCH 17/42] crypto: gemini/sl3516-ce " Uwe Kleine-König
2023-10-25 13:30   ` Corentin LABBE
2023-10-20  7:55 ` [PATCH 18/42] crypto: hisilicon/sec " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 19/42] crypto: hisilicon/trng " Uwe Kleine-König
2023-10-20  9:39   ` Weili Qian
2023-10-20  7:55 ` [PATCH 20/42] crypto: img-hash " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 21/42] crypto: inside-secure/safexcel " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 22/42] crypto: intel/ixp4xx-crypto " Uwe Kleine-König
2023-10-25 13:30   ` Corentin LABBE
2023-10-20  7:55 ` [PATCH 23/42] crypto: intel/keembay-ocs-aes " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 24/42] crypto: intel/keembay-ocs-ecc " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 25/42] crypto: intel/keembay-ocs-hcu " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 26/42] crypto: marvell/cesa " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 27/42] crypto: mxs-dcp " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 28/42] crypto: n2_core " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 29/42] crypto: omap-aes " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 30/42] crypto: omap-des " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 31/42] crypto: omap-sham " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 32/42] crypto: qce " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 33/42] crypto: qcom-rng " Uwe Kleine-König
2023-10-21 17:23   ` Konrad Dybcio
2023-10-20  7:55 ` [PATCH 34/42] crypto: rockchip/rk3288 " Uwe Kleine-König
2023-10-20  8:13   ` Heiko Stübner
2023-10-25 13:31   ` Corentin LABBE
2023-10-20  7:55 ` [PATCH 35/42] crypto: s5p-sss " Uwe Kleine-König
2023-10-20  8:18   ` Krzysztof Kozlowski
2023-10-20  7:55 ` [PATCH 36/42] crypto: sa2ul " Uwe Kleine-König
2023-10-20  7:55 ` [PATCH 37/42] crypto: sahara " Uwe Kleine-König
2023-10-20  7:56 ` [PATCH 38/42] crypto: stm32/crc32 " Uwe Kleine-König
2023-10-20  7:56 ` [PATCH 39/42] crypto: stm32/cryp " Uwe Kleine-König
2023-10-20  7:56 ` [PATCH 40/42] crypto: talitos " Uwe Kleine-König
2023-10-20  7:56 ` [PATCH 41/42] crypto: xilinx/zynqmp-aes-gcm " Uwe Kleine-König
2023-10-20  9:19   ` Michal Simek
2023-10-20  7:56 ` [PATCH 42/42] crypto: xilinx/zynqmp-sha " Uwe Kleine-König
2023-10-20  9:20   ` Michal Simek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).