CVE-2024-26807

Source
https://cve.org/CVERecord?id=CVE-2024-26807
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2024-26807.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2024-26807
Downstream
Related
Published
2024-04-04T08:20:34.155Z
Modified
2026-03-13T07:51:58.706959Z
Summary
spi: cadence-qspi: fix pointer reference in runtime PM hooks
Details

In the Linux kernel, the following vulnerability has been resolved:

Both cadence-quadspi ->runtimesuspend() and ->runtimeresume() implementations start with:

struct cqspi_st *cqspi = dev_get_drvdata(dev);
struct spi_controller *host = dev_get_drvdata(dev);

This obviously cannot be correct, unless "struct cqspist" is the first member of " struct spicontroller", or the other way around, but it is not the case. "struct spicontroller" is allocated by devmspiallochost(), which allocates an extra amount of memory for private data, used to store "struct cqspi_st".

The ->probe() function of the cadence-quadspi driver then sets the device drvdata to store the address of the "struct cqspi_st" structure. Therefore:

struct cqspi_st *cqspi = dev_get_drvdata(dev);

is correct, but:

struct spi_controller *host = dev_get_drvdata(dev);

is not, as it makes "host" point not to a "struct spicontroller" but to the same "struct cqspist" structure as above.

This obviously leads to bad things (memory corruption, kernel crashes) directly during ->probe(), as ->probe() enables the device using PM runtime, leading the ->runtimeresume() hook being called, which in turns calls spicontroller_resume() with the wrong pointer.

This has at least been reported [0] to cause a kernel crash, but the exact behavior will depend on the memory contents.

[0] https://lore.kernel.org/all/20240226121803.5a7r5wkpbbowcxgx@dhruva/

This issue potentially affects all platforms that are currently using the cadence-quadspi driver.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2024/26xxx/CVE-2024-26807.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
79acf7fb856eade9c3d0cf00fd34a04bf5c43a1c
Fixed
2c914aac9522f6e93822c18dff233d3e92399c81
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
2087e85bb66ee3652dafe732bb9b9b896229eafc
Fixed
03f1573c9587029730ca68503f5062105b122f61
Fixed
34e1d5c4407c78de0e3473e1fbf8fb74dbe66d03
Fixed
32ce3bb57b6b402de2aec1012511e7ac4e7449dc
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
0 Unknown introduced commit / All previous commits are affected
Last affected
e3f9fc9a4f1499cc9e1bad4482d377494e367b3d
Last affected
6716203844bc8489af5e5564f0fa31e0c094a7ff
Last affected
b24f1ecc8fe2ceefc14af02edb1744c246d87bf7
Last affected
d453f25faf681799d636fe9d6899ad91c45aa11e
Last affected
18cb554e9da81bc4eca653c17a0d65e8b5835c09
Last affected
1368dbc0a432acf9fc0dcb23bfe52d32ca4c09ab

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2024-26807.json"