From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 671C97097D; Wed, 6 Dec 2023 21:43:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="e4Woje4H" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D12B7C433C8; Wed, 6 Dec 2023 21:43:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1701899002; bh=M6QR7jmJtF0bi+CXOH3OmbL5+zqx/nverCaKK0xbSJc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=e4Woje4H3pBspHNglsWdUfKEDsITiAguirACEeOB+nqS0EleDRko9eC3FTNEmZxrm k2RVbczUh6NvmBWNDME12TNRybekES9cIp0la/HrIFuqIVv8MEm8bMk6P2mXPvPNza /jTxkuMRyXbTk5skJJm4R2MzFjYKNvEeq9+WpsClvQQ/Llxuz4rcRhuwGnxknRm41L oBpiPXbWHTLIaDx9Ly5W9+YkU1T5EEW1dSgfmlfEo9/jg+C1lSVeKqfLM5yvtK9QZx jxvKf3K4amREpeI6Mc6Pleotq4rNjCe98hDVQ+ghmYkoufZ61ZBPv/2n5LtiShIzvW XMB+6Ys/OVxoQ== Date: Wed, 6 Dec 2023 13:43:22 -0800 From: Saeed Mahameed To: Shifeng Li Cc: saeedm@nvidia.com, leon@kernel.org, davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, ogerlitz@mellanox.com, netdev@vger.kernel.org, linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org, dinghui@sangfor.com.cn, lishifeng1992@126.com Subject: Re: [PATCH] net/mlx5e: Fix slab-out-of-bounds in mlx5_query_nic_vport_mac_list() Message-ID: References: <20231130094656.894412-1-lishifeng@sangfor.com.cn> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20231130094656.894412-1-lishifeng@sangfor.com.cn> On 30 Nov 01:46, Shifeng Li wrote: >Out_sz that the size of out buffer is calculated using query_nic_vport >_context_in structure when driver query the MAC list. However query_nic >_vport_context_in structure is smaller than query_nic_vport_context_out. >When allowed_list_size is greater than 96, calling ether_addr_copy() will >trigger an slab-out-of-bounds. > >[ 1170.055866] BUG: KASAN: slab-out-of-bounds in mlx5_query_nic_vport_mac_list+0x481/0x4d0 [mlx5_core] >[ 1170.055869] Read of size 4 at addr ffff88bdbc57d912 by task kworker/u128:1/461 >[ 1170.055870] >[ 1170.055932] Workqueue: mlx5_esw_wq esw_vport_change_handler [mlx5_core] >[ 1170.055936] Call Trace: >[ 1170.055949] dump_stack+0x8b/0xbb >[ 1170.055958] print_address_description+0x6a/0x270 >[ 1170.055961] kasan_report+0x179/0x2c0 >[ 1170.056061] mlx5_query_nic_vport_mac_list+0x481/0x4d0 [mlx5_core] >[ 1170.056162] esw_update_vport_addr_list+0x2c5/0xcd0 [mlx5_core] >[ 1170.056257] esw_vport_change_handle_locked+0xd08/0x1a20 [mlx5_core] >[ 1170.056377] esw_vport_change_handler+0x6b/0x90 [mlx5_core] >[ 1170.056381] process_one_work+0x65f/0x12d0 >[ 1170.056383] worker_thread+0x87/0xb50 >[ 1170.056390] kthread+0x2e9/0x3a0 >[ 1170.056394] ret_from_fork+0x1f/0x40 > >Fixes: e16aea2744ab ("net/mlx5: Introduce access functions to modify/query vport mac lists") >Cc: Ding Hui >Signed-off-by: Shifeng Li Applied to net-mlx5. Thanks, Saeed.