From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C9F94C77B61 for ; Mon, 10 Apr 2023 16:49:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230009AbjDJQt1 (ORCPT ); Mon, 10 Apr 2023 12:49:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54568 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229778AbjDJQt0 (ORCPT ); Mon, 10 Apr 2023 12:49:26 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8BC79199E for ; Mon, 10 Apr 2023 09:49:25 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 26D4161184 for ; Mon, 10 Apr 2023 16:49:25 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C3892C4339B; Mon, 10 Apr 2023 16:49:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1681145364; bh=3ZQfrybk/jIB2kL+V0Ymq3KuHqSGaTlZZVw82ZvqBs8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ehmxVPPKlvLOYVzuh8/IXL88b27Zrh3yotlJa1jX6nxYGpjkxK7pns6Rty+ngJJD7 4at4qja4qovdsmEAEv9FDMuBReat5ZUZjpNNoPy/2B0mlJ1gc1merX81UMSG+Kkuh7 t5qPkUv8L2ECe0+L0Q23F8YOrMviMK50gKX377G4dbwialrt2vx4uWYhc9wiGTkTK2 v8/nf3f/rS2gACqMocDc9tWiWKYbD+51cqL08eTDOLzN33xNekygJJnHvDrRJzEUh+ rmXv7SZN8spyv4PFqtX7mFUBf3gUUG1bVuyaDWf1r6etzPATHCAZUPXcbR33Cu8KRP 3uz256k1SKqXQ== Date: Mon, 10 Apr 2023 19:49:20 +0300 From: Leon Romanovsky To: Simon Horman Cc: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Steffen Klassert , Herbert Xu , netdev@vger.kernel.org, Saeed Mahameed , Raed Salem , Emeel Hakim Subject: Re: [PATCH net-next 09/10] net/mlx5e: Create IPsec table with tunnel support only when encap is disabled Message-ID: <20230410164920.GU182481@unreal> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Mon, Apr 10, 2023 at 04:29:09PM +0200, Simon Horman wrote: > On Mon, Apr 10, 2023 at 09:19:11AM +0300, Leon Romanovsky wrote: > > From: Leon Romanovsky > > > > Current hardware doesn't support double encapsulation which is > > happening when IPsec packet offload tunnel mode is configured > > together with eswitch encap option. > > > > Any user attempt to add new SA/policy after he/she sets encap mode, will > > generate the following FW syndrome: > > > > mlx5_core 0000:08:00.0: mlx5_cmd_out_err:803:(pid 1904): CREATE_FLOW_TABLE(0x930) op_mod(0x0) failed, > > status bad parameter(0x3), syndrome (0xa43321), err(-22) > > > > Make sure that we block encap changes before creating flow steering tables. > > This is applicable only for packet offload in tunnel mode, while packet > > offload in transport mode and crypto offload, don't have such limitation > > as they don't perform encapsulation. > > > > Reviewed-by: Raed Salem > > Signed-off-by: Leon Romanovsky > > Hi Raed and Leon, > > some minor feedback from me below. > > > --- > > .../mellanox/mlx5/core/en_accel/ipsec.c | 7 ++++ > > .../mellanox/mlx5/core/en_accel/ipsec.h | 1 + > > .../mellanox/mlx5/core/en_accel/ipsec_fs.c | 33 +++++++++++++++++-- > > 3 files changed, 38 insertions(+), 3 deletions(-) > > > > diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec.c b/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec.c > > index b64281fd4142..e95004ac7a20 100644 > > --- a/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec.c > > +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec.c > > @@ -668,6 +668,13 @@ static int mlx5e_xfrm_add_state(struct xfrm_state *x, > > if (err) > > goto err_hw_ctx; > > > > + if (x->props.mode == XFRM_MODE_TUNNEL && > > + x->xso.type == XFRM_DEV_OFFLOAD_PACKET && > > + !mlx5e_ipsec_fs_tunnel_enabled(sa_entry)) { > > + NL_SET_ERR_MSG_MOD(extack, "Packet offload tunnel mode is disabled due to encap settings"); > > + goto err_add_rule; > > The err_add_rule will return err. > But err is zero here. > Perhaps it should be set to an negative error code? Thanks, I overlooked it. > > Flagged by Smatch as: > > drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec.c:753 mlx5e_xfrm_free_state() error: we previously assumed 'sa_entry->work' could be null (see line 744) I don't get such warnings from my CI, will try to understand why. What are the command line arguments you use to run smatch? What is the version of smatch? Thanks > > > + } > > + > > /* We use *_bh() variant because xfrm_timer_handler(), which runs > > * in softirq context, can reach our state delete logic and we need > > * xa_erase_bh() there. > > ...