lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Mon, 17 Jun 2024 14:17:49 -0700
From: Kees Cook <kees@...nel.org>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: Gabriel Krisman Bertazi <krisman@...e.de>,
	linux-cve-announce@...r.kernel.org, cve@...nel.org,
	linux-kernel@...r.kernel.org
Subject: Re: CVE-2023-52685: pstore: ram_core: fix possible overflow in
 persistent_ram_init_ecc()

On Tue, May 28, 2024 at 09:01:13PM +0200, Greg Kroah-Hartman wrote:
> On Mon, May 27, 2024 at 08:32:54PM -0400, Gabriel Krisman Bertazi wrote:
> > Greg Kroah-Hartman <gregkh@...uxfoundation.org> writes:
> > 
> > > Description
> > > ===========
> > >
> > > In the Linux kernel, the following vulnerability has been resolved:
> > >
> > > pstore: ram_core: fix possible overflow in persistent_ram_init_ecc()
> > >
> > > In persistent_ram_init_ecc(), on 64-bit arches DIV_ROUND_UP() will return
> > > 64-bit value since persistent_ram_zone::buffer_size has type size_t which
> > > is derived from the 64-bit *unsigned long*, while the ecc_blocks variable
> > > this value gets assigned to has (always 32-bit) *int* type.  Even if that
> > > value fits into *int* type, an overflow is still possible when calculating
> > > the size_t typed ecc_total variable further below since there's no cast to
> > > any 64-bit type before multiplication.  Declaring the ecc_blocks variable
> > > as *size_t* should fix this mess...
> > >
> > > Found by Linux Verification Center (linuxtesting.org) with the SVACE static
> > > analysis tool.
> > 
> > Hi Greg,
> > 
> > [Cc'ing Kees, who is listed as the pstore maintainer]
> > 
> > I want to dispute this CVE.  The overflow is in the module
> > initialization path, and can only happen at boot time or if the module
> > is loaded with specific parameters or due to specific acpi/device tree
> > data.  Either way, it would require root privileges to trigger.
> 
> Normally root privileges isn't the issue, as many containers allow root
> to do things (including loading modules, crazy systems...)
> 
> Anyway, I'll defer to Kees as to if this should be revoked or not.

It's a module parameter or device tree value that is at most INT_MAX or
UINT_MAX respectively. Also, it is bounds checked against the buffer
itself:
        if (ecc_total >= prz->buffer_size) {

So even if it wrapped around and got "too small", there's no damage to
be had here.

The worst case is that the ramoops info goes missing because pstore
refuses to do anything with the bad value, but pstore can be disabled
way more easily than that, by design.

So, no, I don't think this is CVE worthy. I took the patch because it's
reasonable to try to get the math right and provide better error
reporting.

-- 
Kees Cook

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ