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 0A101C6379F for ; Tue, 14 Feb 2023 07:23:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230446AbjBNHXW (ORCPT ); Tue, 14 Feb 2023 02:23:22 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37538 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229593AbjBNHXU (ORCPT ); Tue, 14 Feb 2023 02:23:20 -0500 Received: from forwardcorp1c.mail.yandex.net (forwardcorp1c.mail.yandex.net [178.154.239.200]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2D53310276; Mon, 13 Feb 2023 23:23:17 -0800 (PST) Received: from iva8-99b070b76c56.qloud-c.yandex.net (iva8-99b070b76c56.qloud-c.yandex.net [IPv6:2a02:6b8:c0c:1099:0:640:99b0:70b7]) by forwardcorp1c.mail.yandex.net (Yandex) with ESMTP id 03E91600C2; Tue, 14 Feb 2023 10:23:13 +0300 (MSK) Received: from [IPV6:2a02:6b8:b081:b4bf::1:1b] (unknown [2a02:6b8:b081:b4bf::1:1b]) by iva8-99b070b76c56.qloud-c.yandex.net (smtpcorp/Yandex) with ESMTPSA id BNdkK00QjuQ1-MFrY2dqA; Tue, 14 Feb 2023 10:23:12 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex-team.ru; s=default; t=1676359392; bh=HbEOKzJSJ4csTBpqCWVtgV9gSTvVyanacGFOo6u2Wjw=; h=From:In-Reply-To:Cc:Date:References:To:Subject:Message-ID; b=Ty5V8AudFLsfPKlXLfDOobgno4TotPd1+4qJ5HTv0UOfwOaWWmaKKSuvJEYsePYhS O2tSaDkQi6QckpZHEJnlD5PUIqxsE0vejA7YEJmjkekA/2wMwR8E4tdTrJqyO/lIN0 rv5angqQAF4P1Nh4bBpUYCu4QnlBTZXis5xrQoOs= Authentication-Results: iva8-99b070b76c56.qloud-c.yandex.net; dkim=pass header.i=@yandex-team.ru Message-ID: Date: Tue, 14 Feb 2023 10:23:11 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Subject: Re: [PATCH v0] qed/qed_dev: guard against a possible division by zero Content-Language: en-US To: Simon Horman Cc: Ariel Elior , Manish Chopra , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Yuval Mintz , netdev@vger.kernel.org, linux-kernel@vger.kernel.org References: <20230209103813.2500486-1-d-tatianin@yandex-team.ru> From: Daniil Tatianin In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2/9/23 2:13 PM, Simon Horman wrote: > On Thu, Feb 09, 2023 at 01:38:13PM +0300, Daniil Tatianin wrote: >> Previously we would divide total_left_rate by zero if num_vports >> happened to be 1 because non_requested_count is calculated as >> num_vports - req_count. Guard against this by explicitly checking for >> zero when doing the division. >> >> Found by Linux Verification Center (linuxtesting.org) with the SVACE >> static analysis tool. >> >> Fixes: bcd197c81f63 ("qed: Add vport WFQ configuration APIs") >> Signed-off-by: Daniil Tatianin >> --- >> drivers/net/ethernet/qlogic/qed/qed_dev.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/net/ethernet/qlogic/qed/qed_dev.c b/drivers/net/ethernet/qlogic/qed/qed_dev.c >> index d61cd32ec3b6..90927f68c459 100644 >> --- a/drivers/net/ethernet/qlogic/qed/qed_dev.c >> +++ b/drivers/net/ethernet/qlogic/qed/qed_dev.c >> @@ -5123,7 +5123,7 @@ static int qed_init_wfq_param(struct qed_hwfn *p_hwfn, >> >> total_left_rate = min_pf_rate - total_req_min_rate; >> >> - left_rate_per_vp = total_left_rate / non_requested_count; >> + left_rate_per_vp = total_left_rate / (non_requested_count ?: 1); > > I don't know if num_vports can be 1. > But if it is then I agree that the above will be a divide by zero. > > I do, however, wonder if it would be better to either: > > * Treat this case as invalid and return with -EINVAL if num_vports is 1; or I think that's a good idea considering num_vports == 1 is indeed an invalid value. I'd like to hear a maintainer's opinion on this. > * Skip both the calculation immediately above and the code > in the if condition below, which is the only place where > the calculated value is used, if num_vports is 1. > I don't think the if clause makes much sense if num_vports is one.left_rate_per_vp is also used below the if clause, it is assigned to .min_speed in a for loop. Looking at that code division by 1 seems to make sense to me in this case. > >> if (left_rate_per_vp < min_pf_rate / QED_WFQ_UNIT) { >> DP_VERBOSE(p_hwfn, NETIF_MSG_LINK, >> "Non WFQ configured vports rate [%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n", >> -- >> 2.25.1 >>