In the Linux kernel, the following vulnerability has been resolved:
cpufreq: qcom: fix writes in read-only memory region
This commit fixes a kernel oops because of a write in some read-only memory:
[ 9.068287] Unable to handle kernel write to read-only memory at virtual address ffff800009240ad8
..snip..
[ 9.138790] Internal error: Oops: 9600004f [#1] PREEMPT SMP
..snip..
[ 9.269161] Call trace:
[ 9.276271] __memcpy+0x5c/0x230
[ 9.278531] snprintf+0x58/0x80
[ 9.282002] qcom_cpufreq_msm8939_name_version+0xb4/0x190
[ 9.284869] qcom_cpufreq_probe+0xc8/0x39c
..snip..
The following line defines a pointer that point to a char buffer stored in read-only memory:
char *pvs_name = "speedXX-pvsXX-vXX";
This pointer is meant to hold a template "speedXX-pvsXX-vXX" where the XX values get overridden by the qcomcpufreqkraitnameversion function. Since the template is actually stored in read-only memory, when the function executes the following call we get an oops:
snprintf(*pvs_name, sizeof("speedXX-pvsXX-vXX"), "speed%d-pvs%d-v%d",
speed, pvs, pvs_ver);
To fix this issue, we instead store the template name onto the stack by using the following syntax:
char pvs_name_buffer[] = "speedXX-pvsXX-vXX";
Because the pvs_name needs to be able to be assigned to NULL, the
template buffer is stored in the pvsnamebuffer and not under the
pvs_name variable.
{
"osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2022/50xxx/CVE-2022-50239.json",
"cna_assigner": "Linux"
}[
{
"signature_type": "Function",
"signature_version": "v1",
"target": {
"file": "drivers/cpufreq/qcom-cpufreq-nvmem.c",
"function": "qcom_cpufreq_probe"
},
"id": "CVE-2022-50239-1d8bf81b",
"deprecated": false,
"source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01039fb8e90c9cb684430414bff70cea9eb168c5",
"digest": {
"function_hash": "34004929606606270886159325084342994996",
"length": 2254.0
}
},
{
"signature_type": "Line",
"signature_version": "v1",
"target": {
"file": "drivers/cpufreq/qcom-cpufreq-nvmem.c"
},
"id": "CVE-2022-50239-20e7d8e8",
"deprecated": false,
"source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01039fb8e90c9cb684430414bff70cea9eb168c5",
"digest": {
"line_hashes": [
"180209545664785011562527809248411507849",
"63940302921647862972125320808130403380",
"54768967140912357252963693289801097056",
"294994909209592301671438973921498718941"
],
"threshold": 0.9
}
},
{
"signature_type": "Function",
"signature_version": "v1",
"target": {
"file": "drivers/cpufreq/qcom-cpufreq-nvmem.c",
"function": "qcom_cpufreq_probe"
},
"id": "CVE-2022-50239-56572b21",
"deprecated": false,
"source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@14d260f94ff89543597ffea13db8b277a810e08e",
"digest": {
"function_hash": "50894660353530055572873738515522236999",
"length": 3429.0
}
},
{
"signature_type": "Line",
"signature_version": "v1",
"target": {
"file": "drivers/cpufreq/qcom-cpufreq-nvmem.c"
},
"id": "CVE-2022-50239-7315e766",
"deprecated": false,
"source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@14d260f94ff89543597ffea13db8b277a810e08e",
"digest": {
"line_hashes": [
"180209545664785011562527809248411507849",
"63940302921647862972125320808130403380",
"54768967140912357252963693289801097056",
"294994909209592301671438973921498718941"
],
"threshold": 0.9
}
},
{
"signature_type": "Function",
"signature_version": "v1",
"target": {
"file": "drivers/cpufreq/qcom-cpufreq-nvmem.c",
"function": "qcom_cpufreq_probe"
},
"id": "CVE-2022-50239-b0d1a272",
"deprecated": false,
"source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@794ded0bc461287a268bed21fea2eebb6e5d232c",
"digest": {
"function_hash": "50894660353530055572873738515522236999",
"length": 3429.0
}
},
{
"signature_type": "Line",
"signature_version": "v1",
"target": {
"file": "drivers/cpufreq/qcom-cpufreq-nvmem.c"
},
"id": "CVE-2022-50239-dc95b6ee",
"deprecated": false,
"source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@794ded0bc461287a268bed21fea2eebb6e5d232c",
"digest": {
"line_hashes": [
"180209545664785011562527809248411507849",
"63940302921647862972125320808130403380",
"54768967140912357252963693289801097056",
"294994909209592301671438973921498718941"
],
"threshold": 0.9
}
}
]
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2022-50239.json"