summaryrefslogtreecommitdiff
path: root/debuggerd/handler/debuggerd_handler.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:09 +0000
commit1dd395fc78fca987a3fac9d30b9242273969da3a (patch)
treef9e456bf2c293f3c4006e721cabb14fbce891adf /debuggerd/handler/debuggerd_handler.cpp
parent65ea6e433d8262304481186d27d52f5c63414a8e (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 'debuggerd/handler/debuggerd_handler.cpp')
0 files changed, 0 insertions, 0 deletions