Bug 2297582 (CVE-2024-40998) - CVE-2024-40998 kernel: ext4: fix uninitialized ratelimit_state->lock access in __ext4_fill_super()
Summary: CVE-2024-40998 kernel: ext4: fix uninitialized ratelimit_state->lock acces...
Keywords:
Status: NEW
Alias: CVE-2024-40998
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Product Security DevOps Team
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2024-07-12 13:49 UTC by OSIDB Bzimport
Modified: 2024-11-08 18:39 UTC (History)
4 users (show)

Fixed In Version: kernel 6.6.36, kernel 6.9.7, kernel 6.10-rc1
Clone Of:
Environment:
Last Closed:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHBA-2024:7043 0 None None None 2024-09-24 09:43:12 UTC
Red Hat Product Errata RHBA-2024:7198 0 None None None 2024-09-26 09:50:52 UTC
Red Hat Product Errata RHBA-2024:7236 0 None None None 2024-09-26 14:33:25 UTC
Red Hat Product Errata RHBA-2024:7637 0 None None None 2024-10-03 14:46:00 UTC
Red Hat Product Errata RHBA-2024:8227 0 None None None 2024-10-17 06:46:03 UTC
Red Hat Product Errata RHBA-2024:9014 0 None None None 2024-11-07 15:10:50 UTC
Red Hat Product Errata RHSA-2024:7000 0 None None None 2024-09-24 02:34:39 UTC
Red Hat Product Errata RHSA-2024:7001 0 None None None 2024-09-24 00:39:21 UTC
Red Hat Product Errata RHSA-2024:8107 0 None None None 2024-10-15 00:35:43 UTC
Red Hat Product Errata RHSA-2024:8613 0 None None None 2024-10-30 00:32:17 UTC
Red Hat Product Errata RHSA-2024:8614 0 None None None 2024-10-30 00:13:04 UTC
Red Hat Product Errata RHSA-2024:8616 0 None None None 2024-10-30 00:34:19 UTC
Red Hat Product Errata RHSA-2024:8617 0 None None None 2024-10-30 01:26:44 UTC

Description OSIDB Bzimport 2024-07-12 13:49:16 UTC
In the Linux kernel, the following vulnerability has been resolved:

ext4: fix uninitialized ratelimit_state->lock access in __ext4_fill_super()

In the following concurrency we will access the uninitialized rs->lock:

ext4_fill_super
  ext4_register_sysfs
   // sysfs registered msg_ratelimit_interval_ms
                             // Other processes modify rs->interval to
                             // non-zero via msg_ratelimit_interval_ms
  ext4_orphan_cleanup
    ext4_msg(sb, KERN_INFO, "Errors on filesystem, "
      __ext4_msg
        ___ratelimit(&(EXT4_SB(sb)->s_msg_ratelimit_state)
          if (!rs->interval)  // do nothing if interval is 0
            return 1;
          raw_spin_trylock_irqsave(&rs->lock, flags)
            raw_spin_trylock(lock)
              _raw_spin_trylock
                __raw_spin_trylock
                  spin_acquire(&lock->dep_map, 0, 1, _RET_IP_)
                    lock_acquire
                      __lock_acquire
                        register_lock_class
                          assign_lock_key
                            dump_stack();
  ratelimit_state_init(&sbi->s_msg_ratelimit_state, 5 * HZ, 10);
    raw_spin_lock_init(&rs->lock);
    // init rs->lock here

and get the following dump_stack:

=========================================================
INFO: trying to register non-static key.
The code is fine but needs lockdep annotation, or maybe
you didn't initialize this object before use?
turning off the locking correctness validator.
CPU: 12 PID: 753 Comm: mount Tainted: G E 6.7.0-rc6-next-20231222 #504
[...]
Call Trace:
 dump_stack_lvl+0xc5/0x170
 dump_stack+0x18/0x30
 register_lock_class+0x740/0x7c0
 __lock_acquire+0x69/0x13a0
 lock_acquire+0x120/0x450
 _raw_spin_trylock+0x98/0xd0
 ___ratelimit+0xf6/0x220
 __ext4_msg+0x7f/0x160 [ext4]
 ext4_orphan_cleanup+0x665/0x740 [ext4]
 __ext4_fill_super+0x21ea/0x2b10 [ext4]
 ext4_fill_super+0x14d/0x360 [ext4]
[...]
=========================================================

Normally interval is 0 until s_msg_ratelimit_state is initialized, so
___ratelimit() does nothing. But registering sysfs precedes initializing
rs->lock, so it is possible to change rs->interval to a non-zero value
via the msg_ratelimit_interval_ms interface of sysfs while rs->lock is
uninitialized, and then a call to ext4_msg triggers the problem by
accessing an uninitialized rs->lock. Therefore register sysfs after all
initializations are complete to avoid such problems.

Comment 11 errata-xmlrpc 2024-09-24 00:39:20 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 8

Via RHSA-2024:7001 https://access.redhat.com/errata/RHSA-2024:7001

Comment 12 errata-xmlrpc 2024-09-24 02:34:38 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 8

Via RHSA-2024:7000 https://access.redhat.com/errata/RHSA-2024:7000

Comment 13 errata-xmlrpc 2024-10-15 00:35:42 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 8.8 Extended Update Support

Via RHSA-2024:8107 https://access.redhat.com/errata/RHSA-2024:8107

Comment 14 errata-xmlrpc 2024-10-30 00:13:03 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 9.2 Extended Update Support

Via RHSA-2024:8614 https://access.redhat.com/errata/RHSA-2024:8614

Comment 15 errata-xmlrpc 2024-10-30 00:32:15 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 9.2 Extended Update Support

Via RHSA-2024:8613 https://access.redhat.com/errata/RHSA-2024:8613

Comment 16 errata-xmlrpc 2024-10-30 00:34:18 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 8.6 Advanced Mission Critical Update Support
  Red Hat Enterprise Linux 8.6 Update Services for SAP Solutions
  Red Hat Enterprise Linux 8.6 Telecommunications Update Service

Via RHSA-2024:8616 https://access.redhat.com/errata/RHSA-2024:8616

Comment 17 errata-xmlrpc 2024-10-30 01:26:42 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 9

Via RHSA-2024:8617 https://access.redhat.com/errata/RHSA-2024:8617


Note You need to log in before you can comment on or make changes to this bug.