From: Reinette Chatre <reinette.chatre@intel.com>
To: Martin Kletzander <nert.pinx@gmail.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
Dave Hansen <dave.hansen@linux.intel.com>, <x86@kernel.org>,
"H. Peter Anvin" <hpa@zytor.com>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2] x86/resctrl: Avoid overflow in MB settings in bw_validate()
Date: Tue, 17 Sep 2024 08:08:50 -0700 [thread overview]
Message-ID: <7467f313-761a-42ed-ae2d-cdadfd93db90@intel.com> (raw)
In-Reply-To: <Zuk5_3qzSfld5dvD@wheatley.k8r.cz>
Hi Martin,
On 9/17/24 1:12 AM, Martin Kletzander wrote:
> On Mon, Sep 16, 2024 at 09:56:01AM -0700, Reinette Chatre wrote:
>> On 9/16/24 6:07 AM, Martin Kletzander wrote:
>>> When resctrl is mounted with the "mba_MBps" option the default (maximum)
>>> bandwidth is the maximum unsigned value for the type. However when
>>> using the same value that already exists in the schemata file it is then
>>> rounded up to the bandwidth granularity and overflows to a small number
>>> instead, making it difficult to reset memory bandwidth allocation value
>>> back to its default.
>>>
>>> Since the granularity and minimum bandwidth are not used when the
>>> software controller is used (resctrl is mounted with the "mba_MBps"),
>>> skip the rounding up as well and return early from bw_validate().
>>
>> Thank you very much for finding the issue and proposing a fix.
>>
>>>
>>> Signed-off-by: Martin Kletzander <nert.pinx@gmail.com>
>>> ---
>>> Changes in v2:
>>> - actually save the value in the output parameter @data
>>>
>>> arch/x86/kernel/cpu/resctrl/ctrlmondata.c | 9 +++++++--
>>> 1 file changed, 7 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/arch/x86/kernel/cpu/resctrl/ctrlmondata.c b/arch/x86/kernel/cpu/resctrl/ctrlmondata.c
>>> index 50fa1fe9a073..702b1a372e9c 100644
>>> --- a/arch/x86/kernel/cpu/resctrl/ctrlmondata.c
>>> +++ b/arch/x86/kernel/cpu/resctrl/ctrlmondata.c
>>> @@ -48,8 +48,13 @@ static bool bw_validate(char *buf, unsigned long *data, struct rdt_resource *r)
>>> return false;
>>> }
>>>
>>> - if ((bw < r->membw.min_bw || bw > r->default_ctrl) &&
>>> - !is_mba_sc(r)) {
>>> + /* Nothing else to do if software controller is enabled */
>>> + if (is_mba_sc(r)) {
>>> + *data = bw;
>>> + return true;
>>
>> While this would fix the scenario tested I do not believe this fully addresses the
>> overflow issue. As I understand the test wrote U32_MAX to the schemata file,
>> which triggered the overflow because of the rounding and is fixed by this patch. Looks like,
>> after this patch, writing "U32_MAX + 1" will still trigger the overflow.
>>
>> The overflow appears to result from some inconsistent type use and not using
>> appropriate parsing API that is able to detect overflow.
>>
>> How about something like below:
>>
>
> That makes much more sense, I have not considered changing the data type
> as I wanted to keep the changes at minimum, but your solution is even
> better. Should I leave the fix up to you or do you want me to send a v3?
Could you please try it out to ensure it works for you and then send a v3?
Thank you very much.
Reinette
next prev parent reply other threads:[~2024-09-17 15:11 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-16 13:07 Martin Kletzander
2024-09-16 16:56 ` Reinette Chatre
2024-09-17 8:12 ` Martin Kletzander
2024-09-17 15:08 ` Reinette Chatre [this message]
2024-09-17 15:47 ` Martin Kletzander
2024-09-17 17:19 ` Reinette Chatre
2024-09-23 16:50 ` Reinette Chatre
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7467f313-761a-42ed-ae2d-cdadfd93db90@intel.com \
--to=reinette.chatre@intel.com \
--cc=bp@alien8.de \
--cc=dave.hansen@linux.intel.com \
--cc=fenghua.yu@intel.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=nert.pinx@gmail.com \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®