Home

Description

In the Linux kernel, the following vulnerability has been resolved: soundwire: bus: Fix unbalanced pm_runtime_put() causing usage count underflow This reverts commit 443a98e649b4 ("soundwire: bus: use pm_runtime_resume_and_get()") Change calls to pm_runtime_resume_and_get() back to pm_runtime_get_sync(). This fixes a usage count underrun caused by doing a pm_runtime_put() even though pm_runtime_resume_and_get() returned an error. The three affected functions ignore -EACCES error from trying to get pm_runtime, and carry on, including a put at the end of the function. But pm_runtime_resume_and_get() does not increment the usage count if it returns an error. So in the -EACCES case you must not call pm_runtime_put(). The documentation for pm_runtime_get_sync() says: "Consider using pm_runtime_resume_and_get() ... as this is likely to result in cleaner code." In this case I don't think it results in cleaner code because the pm_runtime_put() at the end of the function would have to be conditional on the return value from pm_runtime_resume_and_get() at the top of the function. pm_runtime_get_sync() doesn't have this problem because it always increments the count, so always needs a put. The code can just flow through and do the pm_runtime_put() unconditionally.

PUBLISHED Reserved 2025-12-30 | Published 2025-12-30 | Updated 2025-12-30 | Assigner Linux

Product status

Default status
unaffected

1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (git) before 4e5e9da139c007dfc397a159093b4c4187ee67fa
affected

1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (git) before 203aa4374c433159f163acde2d0bd4118f23bbaf
affected

1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (git) before e9537962519e88969f5f69cd0571eb4f6984403c
affected

Default status
affected

6.1.30 (semver)
unaffected

6.3.4 (semver)
unaffected

6.4 (original_commit_for_fix)
unaffected

References

git.kernel.org/...c/4e5e9da139c007dfc397a159093b4c4187ee67fa

git.kernel.org/...c/203aa4374c433159f163acde2d0bd4118f23bbaf

git.kernel.org/...c/e9537962519e88969f5f69cd0571eb4f6984403c

cve.org (CVE-2023-54259)

nvd.nist.gov (CVE-2023-54259)

Download JSON

Data based on CVE®. Copyright © 1999-2025, The MITRE Corporation. All rights reserved.