mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-10 12:57:06 +09:00
net/tls: Protect from calling tls_dev_del for TLS RX twice
[ Upstream commit025cc2fb6a] tls_device_offload_cleanup_rx doesn't clear tls_ctx->netdev after calling tls_dev_del if TLX TX offload is also enabled. Clearing tls_ctx->netdev gets postponed until tls_device_gc_task. It leaves a time frame when tls_device_down may get called and call tls_dev_del for RX one extra time, confusing the driver, which may lead to a crash. This patch corrects this racy behavior by adding a flag to prevent tls_device_down from calling tls_dev_del the second time. Fixes:e8f6979981("net/tls: Add generic NIC offload infrastructure") Signed-off-by: Maxim Mikityanskiy <maximmi@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@nvidia.com> Link: https://lore.kernel.org/r/20201125221810.69870-1-saeedm@nvidia.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
39553ecdea
commit
2ba413da62
@@ -163,6 +163,12 @@ enum {
|
||||
|
||||
enum tls_context_flags {
|
||||
TLS_RX_SYNC_RUNNING = 0,
|
||||
/* tls_dev_del was called for the RX side, device state was released,
|
||||
* but tls_ctx->netdev might still be kept, because TX-side driver
|
||||
* resources might not be released yet. Used to prevent the second
|
||||
* tls_dev_del call in tls_device_down if it happens simultaneously.
|
||||
*/
|
||||
TLS_RX_DEV_CLOSED = 2,
|
||||
};
|
||||
|
||||
struct cipher_context {
|
||||
|
||||
Reference in New Issue
Block a user