提交 a89f355e 编写于 作者: M Manivannan Sadhasivam 提交者: Bjorn Andersson

soc: qcom: aoss: Fix the out of bound usage of cooling_devs

In "qmp_cooling_devices_register", the count value is initially
QMP_NUM_COOLING_RESOURCES, which is 2. Based on the initial count value,
the memory for cooling_devs is allocated. Then while calling the
"qmp_cooling_device_add" function, count value is post-incremented for
each child node.

This makes the out of bound access to the cooling_dev array. Fix it by
passing the QMP_NUM_COOLING_RESOURCES definition to devm_kzalloc() and
initializing the count to 0.

While at it, let's also free the memory allocated to cooling_dev if no
cooling device is found in DT and during unroll phase.

Cc: stable@vger.kernel.org # 5.4
Fixes: 05589b30 ("soc: qcom: Extend AOSS QMP driver to support resources that are used to wake up the SoC.")
Signed-off-by: NManivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Link: https://lore.kernel.org/r/20210629153249.73428-1-manivannan.sadhasivam@linaro.orgSigned-off-by: NBjorn Andersson <bjorn.andersson@linaro.org>
上级 b42000e4
...@@ -476,12 +476,12 @@ static int qmp_cooling_device_add(struct qmp *qmp, ...@@ -476,12 +476,12 @@ static int qmp_cooling_device_add(struct qmp *qmp,
static int qmp_cooling_devices_register(struct qmp *qmp) static int qmp_cooling_devices_register(struct qmp *qmp)
{ {
struct device_node *np, *child; struct device_node *np, *child;
int count = QMP_NUM_COOLING_RESOURCES; int count = 0;
int ret; int ret;
np = qmp->dev->of_node; np = qmp->dev->of_node;
qmp->cooling_devs = devm_kcalloc(qmp->dev, count, qmp->cooling_devs = devm_kcalloc(qmp->dev, QMP_NUM_COOLING_RESOURCES,
sizeof(*qmp->cooling_devs), sizeof(*qmp->cooling_devs),
GFP_KERNEL); GFP_KERNEL);
...@@ -497,12 +497,16 @@ static int qmp_cooling_devices_register(struct qmp *qmp) ...@@ -497,12 +497,16 @@ static int qmp_cooling_devices_register(struct qmp *qmp)
goto unroll; goto unroll;
} }
if (!count)
devm_kfree(qmp->dev, qmp->cooling_devs);
return 0; return 0;
unroll: unroll:
while (--count >= 0) while (--count >= 0)
thermal_cooling_device_unregister thermal_cooling_device_unregister
(qmp->cooling_devs[count].cdev); (qmp->cooling_devs[count].cdev);
devm_kfree(qmp->dev, qmp->cooling_devs);
return ret; return ret;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册