CVE-2023-53526
MediumIn the Linux kernel, the following vulnerability has been resolved: jbd2: check 'jh->b_transaction' before removing it from checkpoint Following process will corrupt ext4 image: Step 1: jbd2_journal_commit_transaction __jbd2_journal_insert_checkpoint(jh, commit_transaction) // Put jh into trans1->t_checkpoint_list journal->j_checkpoint_transactions = commit_transaction // Put trans1 into journal->j_checkpoint_transactions Step 2: do_get_write_access test_clear_buffer_dirty(bh) // clear buffer dirty,set jbd dirty __jbd2_journal_file_buffer(jh, transaction) // jh belongs to trans2 Step 3: drop_cache journal_shrink_one_cp_list jbd2_journal_try_remove_checkpoint if (!trylock_buffer(bh)) // lock bh, true if (buffer_dirty(bh)) // buffer is not dirty __jbd2_journal_remove_checkpoint(jh) // remove jh from trans1->t_checkpoint_list Step 4: jbd2_log_do_checkpoint trans1 = journal->j_checkpoint_transactions // jh is not in trans1->t_checkpoint_list jbd2_cleanup_journal_tail(journal) // trans1 is done Step 5: Power cut, trans2 is not committed, jh is lost in next mounting. Fix it by checking 'jh->b_transaction' before remove it from checkpoint.
CVSS 3.1 score
5.5
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Affected versions
Linux kernel versions
5.15.129,
6.1.50,
6.4.13,
6.5
and later are affected. Fixed in
5.15.132,
6.1.54,
6.5.4,
6.6
and their respective stable series.
References
The following references provide additional information about CVE-2023-53526 including vendor advisories, patch commits, exploit details, and third-party analysis. Links are sourced from the NIST NVD database.
-
PatchKernel patch commithttps://git.kernel.org/stable/c/2298f2589903a8bc03061b54b31fd97985ab6529
-
PatchKernel patch commithttps://git.kernel.org/stable/c/590a809ff743e7bd890ba5fb36bc38e20a36de53
-
PatchKernel patch commithttps://git.kernel.org/stable/c/dbafe636db415299e54d9dfefc1003bda9e71c9d
Frequently asked questions
-
What is CVE-2023-53526?
CVE-2023-53526 is a Medium severity Linux kernel vulnerability with a CVSS score of 5.5 out of 10 . It affects Linux kernel versions from 5.15.129 onward and has been patched in 5.15.132, 6.1.54, 6.5.4 and others. CVE-2023-53526 has not been confirmed as actively exploited and is not listed in the CISA KEV catalog.
-
What is the CVSS score for CVE-2023-53526?
CVE-2023-53526 has a CVSS score of 5.5 out of 10, rated Medium severity (CVSS 3.1). The vector string is
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H. -
Is there a patch available for CVE-2023-53526?
Yes — CVE-2023-53526 has been patched. Fixed versions include 5.15.132, 6.1.54, 6.5.4 and others. If you are running Linux kernel 5.15.129 or later up to the fix versions, apply the relevant patch for your kernel branch.
-
Is CVE-2023-53526 actively exploited?
No — CVE-2023-53526 has not been confirmed as actively exploited. It is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog.