summaryrefslogtreecommitdiff
path: root/libutils/Unicode.cpp
diff options
context:
space:
mode:
authorP.Adarsh Reddy <quic_padarshr@quicinc.com>2020-07-21 03:09:28 +0530
committerP.Adarsh Reddy <quic_padarshr@quicinc.com>2020-07-21 03:09:28 +0530
commita86bf05a012e871c41b4676b0cc947b1baea194b (patch)
treedbe807bc279e7b73be1f3f983870a4cce74bb584 /libutils/Unicode.cpp
parentaf7c3d5873d0b180fc352b24f6e0274863eb1913 (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. Bug: 161580785 Change-Id: I09e80052337fd1495b968dc02ecff5ceb683da18
Diffstat (limited to 'libutils/Unicode.cpp')
0 files changed, 0 insertions, 0 deletions