Skip to content

Commit

Permalink
i2c: qcom-cci: don't put a device tree node before i2c_add_adapter()
Browse files Browse the repository at this point in the history
commit 02a4a69 upstream.

There is a minor chance for a race, if a pointer to an i2c-bus subnode
is stored and then reused after releasing its reference, and it would
be sufficient to get one more reference under a loop over children
subnodes.

Fixes: e517526 ("i2c: Add Qualcomm CCI I2C driver")
Signed-off-by: Vladimir Zapolskiy <vladimir.zapolskiy@linaro.org>
Reviewed-by: Robert Foss <robert.foss@linaro.org>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Vladimir Zapolskiy authored and gregkh committed Feb 23, 2022
1 parent 9b4fb30 commit 213d038
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions drivers/i2c/busses/i2c-qcom-cci.c
Expand Up @@ -558,7 +558,7 @@ static int cci_probe(struct platform_device *pdev)
cci->master[idx].adap.quirks = &cci->data->quirks;
cci->master[idx].adap.algo = &cci_algo;
cci->master[idx].adap.dev.parent = dev;
cci->master[idx].adap.dev.of_node = child;
cci->master[idx].adap.dev.of_node = of_node_get(child);
cci->master[idx].master = idx;
cci->master[idx].cci = cci;

Expand Down Expand Up @@ -643,8 +643,10 @@ static int cci_probe(struct platform_device *pdev)
continue;

ret = i2c_add_adapter(&cci->master[i].adap);
if (ret < 0)
if (ret < 0) {
of_node_put(cci->master[i].adap.dev.of_node);
goto error_i2c;
}
}

pm_runtime_set_autosuspend_delay(dev, MSEC_PER_SEC);
Expand All @@ -656,8 +658,10 @@ static int cci_probe(struct platform_device *pdev)

error_i2c:
for (--i ; i >= 0; i--) {
if (cci->master[i].cci)
if (cci->master[i].cci) {
i2c_del_adapter(&cci->master[i].adap);
of_node_put(cci->master[i].adap.dev.of_node);
}
}
error:
disable_irq(cci->irq);
Expand All @@ -673,8 +677,10 @@ static int cci_remove(struct platform_device *pdev)
int i;

for (i = 0; i < cci->data->num_masters; i++) {
if (cci->master[i].cci)
if (cci->master[i].cci) {
i2c_del_adapter(&cci->master[i].adap);
of_node_put(cci->master[i].adap.dev.of_node);
}
cci_halt(cci, i);
}

Expand Down

0 comments on commit 213d038

Please sign in to comment.