Message ID | 20201117203355.389661-1-saeedm@nvidia.com (mailing list archive) |
---|---|
State | Changes Requested |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net,1/2] net/tls: Protect from calling tls_dev_del for TLS RX twice | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Clearly marked for net |
netdev/subject_prefix | success | Link |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 87 this patch: 87 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | warning | WARNING: line length of 90 exceeds 80 columns |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 87 this patch: 87 |
netdev/header_inline | success | Link |
netdev/stable | success | Stable not CCed |
On Tue, 17 Nov 2020 12:33:54 -0800 Saeed Mahameed wrote: > From: Maxim Mikityanskiy <maximmi@mellanox.com> > > 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: e8f69799810c ("net/tls: Add generic NIC offload infrastructure") > Signed-off-by: Maxim Mikityanskiy <maximmi@mellanox.com> > Signed-off-by: Saeed Mahameed <saeedm@nvidia.com> > --- > For -stable: 5.3 > > include/net/tls.h | 1 + > net/tls/tls_device.c | 3 ++- > 2 files changed, 3 insertions(+), 1 deletion(-) > > diff --git a/include/net/tls.h b/include/net/tls.h > index baf1e99d8193..a0deddfde412 100644 > --- a/include/net/tls.h > +++ b/include/net/tls.h > @@ -199,6 +199,7 @@ enum tls_context_flags { > * to be atomic. > */ > TLS_TX_SYNC_SCHED = 1, Please add a comment here explaining that this bit is set when device state is partially released, and ctx->netdev cannot be cleared but RX side was already removed. > + TLS_RX_DEV_RELEASED = 2, > }; > > struct cipher_context { > diff --git a/net/tls/tls_device.c b/net/tls/tls_device.c > index cec86229a6a0..b2261caac6be 100644 > --- a/net/tls/tls_device.c > +++ b/net/tls/tls_device.c > @@ -1241,6 +1241,7 @@ void tls_device_offload_cleanup_rx(struct sock *sk) > > netdev->tlsdev_ops->tls_dev_del(netdev, tls_ctx, > TLS_OFFLOAD_CTX_DIR_RX); > + set_bit(TLS_RX_DEV_RELEASED, &tls_ctx->flags); Would the semantics of the bit be clearer if we only set the bit in an else branch below and renamed it TLS_RX_DEV_CLOSED? Otherwise it could be confusing to the reader that his bit is only set here but not in tls_device_down(). > if (tls_ctx->tx_conf != TLS_HW) { > dev_put(netdev); > @@ -1274,7 +1275,7 @@ static int tls_device_down(struct net_device *netdev) > if (ctx->tx_conf == TLS_HW) > netdev->tlsdev_ops->tls_dev_del(netdev, ctx, > TLS_OFFLOAD_CTX_DIR_TX); > - if (ctx->rx_conf == TLS_HW) > + if (ctx->rx_conf == TLS_HW && !test_bit(TLS_RX_DEV_RELEASED, &ctx->flags)) > netdev->tlsdev_ops->tls_dev_del(netdev, ctx, > TLS_OFFLOAD_CTX_DIR_RX); > WRITE_ONCE(ctx->netdev, NULL);
On Wed, 2020-11-18 at 17:13 -0800, Jakub Kicinski wrote: > On Tue, 17 Nov 2020 12:33:54 -0800 Saeed Mahameed wrote: > > From: Maxim Mikityanskiy <maximmi@mellanox.com> > > > > 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: e8f69799810c ("net/tls: Add generic NIC offload > > infrastructure") > > Signed-off-by: Maxim Mikityanskiy <maximmi@mellanox.com> > > Signed-off-by: Saeed Mahameed <saeedm@nvidia.com> > > --- > > For -stable: 5.3 > > > > include/net/tls.h | 1 + > > net/tls/tls_device.c | 3 ++- > > 2 files changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/include/net/tls.h b/include/net/tls.h > > index baf1e99d8193..a0deddfde412 100644 > > --- a/include/net/tls.h > > +++ b/include/net/tls.h > > @@ -199,6 +199,7 @@ enum tls_context_flags { > > * to be atomic. > > */ > > TLS_TX_SYNC_SCHED = 1, > > Please add a comment here explaining that this bit is set when device > state is partially released, and ctx->netdev cannot be cleared but RX > side was already removed. > > > + TLS_RX_DEV_RELEASED = 2, > > }; > > > > struct cipher_context { > > diff --git a/net/tls/tls_device.c b/net/tls/tls_device.c > > index cec86229a6a0..b2261caac6be 100644 > > --- a/net/tls/tls_device.c > > +++ b/net/tls/tls_device.c > > @@ -1241,6 +1241,7 @@ void tls_device_offload_cleanup_rx(struct > > sock *sk) > > > > netdev->tlsdev_ops->tls_dev_del(netdev, tls_ctx, > > TLS_OFFLOAD_CTX_DIR_RX); > > + set_bit(TLS_RX_DEV_RELEASED, &tls_ctx->flags); > > Would the semantics of the bit be clearer if we only set the bit in > an > else branch below and renamed it TLS_RX_DEV_CLOSED? > > Otherwise it could be confusing to the reader that his bit is only > set > here but not in tls_device_down(). > Thanks Jakub, Maxim handled both comments, I will send V2 and drop the other patch !
diff --git a/include/net/tls.h b/include/net/tls.h index baf1e99d8193..a0deddfde412 100644 --- a/include/net/tls.h +++ b/include/net/tls.h @@ -199,6 +199,7 @@ enum tls_context_flags { * to be atomic. */ TLS_TX_SYNC_SCHED = 1, + TLS_RX_DEV_RELEASED = 2, }; struct cipher_context { diff --git a/net/tls/tls_device.c b/net/tls/tls_device.c index cec86229a6a0..b2261caac6be 100644 --- a/net/tls/tls_device.c +++ b/net/tls/tls_device.c @@ -1241,6 +1241,7 @@ void tls_device_offload_cleanup_rx(struct sock *sk) netdev->tlsdev_ops->tls_dev_del(netdev, tls_ctx, TLS_OFFLOAD_CTX_DIR_RX); + set_bit(TLS_RX_DEV_RELEASED, &tls_ctx->flags); if (tls_ctx->tx_conf != TLS_HW) { dev_put(netdev); @@ -1274,7 +1275,7 @@ static int tls_device_down(struct net_device *netdev) if (ctx->tx_conf == TLS_HW) netdev->tlsdev_ops->tls_dev_del(netdev, ctx, TLS_OFFLOAD_CTX_DIR_TX); - if (ctx->rx_conf == TLS_HW) + if (ctx->rx_conf == TLS_HW && !test_bit(TLS_RX_DEV_RELEASED, &ctx->flags)) netdev->tlsdev_ops->tls_dev_del(netdev, ctx, TLS_OFFLOAD_CTX_DIR_RX); WRITE_ONCE(ctx->netdev, NULL);