summaryrefslogtreecommitdiff
path: root/trusty/coverage/coverage.cpp
diff options
context:
space:
mode:
authorP.Adarsh Reddy <padarshr@codeaurora.org>2020-07-28 20:26:25 +0530
committerP Adarsh Reddy <padarshr@codeaurora.org>2020-07-28 15:11:11 +0000
commitcb57ba76305f640f20f309a335ca29e480ab6ec8 (patch)
tree969c33e00460f34787b52775919ff7cf28a9f7fe /trusty/coverage/coverage.cpp
parent516b918206d79bd83c74f0daa9061e6ea5b19f6f (diff)
Ueventd: Fix a corner case in ReadUevent() that triggers duplicate firmware loading.
Presently, within ReadUevent(), true is returned for a successful case as well as for the case where we read an invalid uevent (overflowed buffer)where the Uevent object is not cleared, and the caller calls the callback (with the earlier stored uevent object),leading to duplicate firmware loading. Uevent uevent; while (ReadUevent(&uevent)) { if (callback(uevent) == ListenerAction::kStop) return; } Scenario: 1. Proper Uevent received and callback is called (firmware loading is triggered). 2. Overflowed uevent is received as part of the same ReadUevent session, ReadUevent() returns true, but the uevent object is not cleared and still has earlier event values. 3. Callback is called again, leading to duplicate firmware load. Handle it by adding explicit return codes to let the caller know if the uevent read is invalid, and the caller can ignore it and read further pending uevents. CRs-Fixed: 2715769 Bug: 161580785 Change-Id: I09e80052337fd1495b968dc02ecff5ceb683da18 (cherry picked from commit a86bf05a012e871c41b4676b0cc947b1baea194b)
Diffstat (limited to 'trusty/coverage/coverage.cpp')
0 files changed, 0 insertions, 0 deletions