blob: d6fa74de35b5c06f78616b0dd354b15ed81d7fd2 [file] [log] [blame]
Michael Wrightd02c5b62014-02-10 15:10:22 -08001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "InputDispatcher"
18#define ATRACE_TAG ATRACE_TAG_INPUT
19
John Recke0710582019-09-26 13:46:12 -070020#define LOG_NDEBUG 1
Michael Wrightd02c5b62014-02-10 15:10:22 -080021
22// Log detailed debug messages about each inbound event notification to the dispatcher.
23#define DEBUG_INBOUND_EVENT_DETAILS 0
24
25// Log detailed debug messages about each outbound event processed by the dispatcher.
26#define DEBUG_OUTBOUND_EVENT_DETAILS 0
27
28// Log debug messages about the dispatch cycle.
29#define DEBUG_DISPATCH_CYCLE 0
30
Garfield Tan15601662020-09-22 15:32:38 -070031// Log debug messages about channel creation
32#define DEBUG_CHANNEL_CREATION 0
Michael Wrightd02c5b62014-02-10 15:10:22 -080033
34// Log debug messages about input event injection.
35#define DEBUG_INJECTION 0
36
37// Log debug messages about input focus tracking.
Siarhei Vishniakou86587282019-09-09 18:20:15 +010038static constexpr bool DEBUG_FOCUS = false;
Michael Wrightd02c5b62014-02-10 15:10:22 -080039
Bernardo Rufino4bae0ac2020-10-14 18:33:46 +000040// Log debug messages about touch occlusion
41// STOPSHIP(b/169067926): Set to false
42static constexpr bool DEBUG_TOUCH_OCCLUSION = true;
43
Michael Wrightd02c5b62014-02-10 15:10:22 -080044// Log debug messages about the app switch latency optimization.
45#define DEBUG_APP_SWITCH 0
46
47// Log debug messages about hover events.
48#define DEBUG_HOVER 0
49
50#include "InputDispatcher.h"
51
Michael Wright2b3c3302018-03-02 17:19:13 +000052#include <android-base/chrono_utils.h>
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -080053#include <android-base/stringprintf.h>
Siarhei Vishniakou70622952020-07-30 11:17:23 -050054#include <android/os/IInputConstants.h>
Robert Carr4e670e52018-08-15 13:26:12 -070055#include <binder/Binder.h>
Siarhei Vishniakou0d8ed6e2020-01-17 15:48:59 -080056#include <input/InputDevice.h>
Michael Wright44753b12020-07-08 13:48:11 +010057#include <input/InputWindow.h>
Garfield Tan0fc2fa72019-08-29 17:22:15 -070058#include <log/log.h>
Siarhei Vishniakou887b7d92020-06-18 00:43:02 +000059#include <log/log_event_list.h>
Garfield Tan0fc2fa72019-08-29 17:22:15 -070060#include <powermanager/PowerManager.h>
Michael Wright44753b12020-07-08 13:48:11 +010061#include <statslog.h>
62#include <unistd.h>
Garfield Tan0fc2fa72019-08-29 17:22:15 -070063#include <utils/Trace.h>
Michael Wrightd02c5b62014-02-10 15:10:22 -080064
Michael Wright44753b12020-07-08 13:48:11 +010065#include <cerrno>
66#include <cinttypes>
67#include <climits>
68#include <cstddef>
69#include <ctime>
70#include <queue>
71#include <sstream>
72
73#include "Connection.h"
74
Michael Wrightd02c5b62014-02-10 15:10:22 -080075#define INDENT " "
76#define INDENT2 " "
77#define INDENT3 " "
78#define INDENT4 " "
79
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -080080using android::base::StringPrintf;
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -080081using android::os::BlockUntrustedTouchesMode;
82using android::os::InputEventInjectionResult;
83using android::os::InputEventInjectionSync;
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -080084
Garfield Tane84e6f92019-08-29 17:28:41 -070085namespace android::inputdispatcher {
Michael Wrightd02c5b62014-02-10 15:10:22 -080086
87// Default input dispatching timeout if there is no focused application or paused window
88// from which to determine an appropriate dispatching timeout.
Siarhei Vishniakou70622952020-07-30 11:17:23 -050089constexpr std::chrono::duration DEFAULT_INPUT_DISPATCHING_TIMEOUT =
90 std::chrono::milliseconds(android::os::IInputConstants::DEFAULT_DISPATCHING_TIMEOUT_MILLIS);
Michael Wrightd02c5b62014-02-10 15:10:22 -080091
92// Amount of time to allow for all pending events to be processed when an app switch
93// key is on the way. This is used to preempt input dispatch and drop input events
94// when an application takes too long to respond and the user has pressed an app switch key.
Michael Wright2b3c3302018-03-02 17:19:13 +000095constexpr nsecs_t APP_SWITCH_TIMEOUT = 500 * 1000000LL; // 0.5sec
Michael Wrightd02c5b62014-02-10 15:10:22 -080096
97// Amount of time to allow for an event to be dispatched (measured since its eventTime)
98// before considering it stale and dropping it.
Michael Wright2b3c3302018-03-02 17:19:13 +000099constexpr nsecs_t STALE_EVENT_TIMEOUT = 10000 * 1000000LL; // 10sec
Michael Wrightd02c5b62014-02-10 15:10:22 -0800100
Michael Wrightd02c5b62014-02-10 15:10:22 -0800101// Log a warning when an event takes longer than this to process, even if an ANR does not occur.
Michael Wright2b3c3302018-03-02 17:19:13 +0000102constexpr nsecs_t SLOW_EVENT_PROCESSING_WARNING_TIMEOUT = 2000 * 1000000LL; // 2sec
103
104// Log a warning when an interception call takes longer than this to process.
105constexpr std::chrono::milliseconds SLOW_INTERCEPTION_THRESHOLD = 50ms;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800106
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700107// Additional key latency in case a connection is still processing some motion events.
108// This will help with the case when a user touched a button that opens a new window,
109// and gives us the chance to dispatch the key to this new window.
110constexpr std::chrono::nanoseconds KEY_WAITING_FOR_EVENTS_TIMEOUT = 500ms;
111
Michael Wrightd02c5b62014-02-10 15:10:22 -0800112// Number of recent events to keep for debugging purposes.
Michael Wright2b3c3302018-03-02 17:19:13 +0000113constexpr size_t RECENT_QUEUE_MAX_SIZE = 10;
114
Siarhei Vishniakou887b7d92020-06-18 00:43:02 +0000115// Event log tags. See EventLogTags.logtags for reference
116constexpr int LOGTAG_INPUT_INTERACTION = 62000;
117constexpr int LOGTAG_INPUT_FOCUS = 62001;
118
Michael Wrightd02c5b62014-02-10 15:10:22 -0800119static inline nsecs_t now() {
120 return systemTime(SYSTEM_TIME_MONOTONIC);
121}
122
123static inline const char* toString(bool value) {
124 return value ? "true" : "false";
125}
126
127static inline int32_t getMotionEventActionPointerIndex(int32_t action) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700128 return (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) >>
129 AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800130}
131
132static bool isValidKeyAction(int32_t action) {
133 switch (action) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700134 case AKEY_EVENT_ACTION_DOWN:
135 case AKEY_EVENT_ACTION_UP:
136 return true;
137 default:
138 return false;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800139 }
140}
141
142static bool validateKeyEvent(int32_t action) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700143 if (!isValidKeyAction(action)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800144 ALOGE("Key event has invalid action code 0x%x", action);
145 return false;
146 }
147 return true;
148}
149
Michael Wright7b159c92015-05-14 14:48:03 +0100150static bool isValidMotionAction(int32_t action, int32_t actionButton, int32_t pointerCount) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800151 switch (action & AMOTION_EVENT_ACTION_MASK) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700152 case AMOTION_EVENT_ACTION_DOWN:
153 case AMOTION_EVENT_ACTION_UP:
154 case AMOTION_EVENT_ACTION_CANCEL:
155 case AMOTION_EVENT_ACTION_MOVE:
156 case AMOTION_EVENT_ACTION_OUTSIDE:
157 case AMOTION_EVENT_ACTION_HOVER_ENTER:
158 case AMOTION_EVENT_ACTION_HOVER_MOVE:
159 case AMOTION_EVENT_ACTION_HOVER_EXIT:
160 case AMOTION_EVENT_ACTION_SCROLL:
161 return true;
162 case AMOTION_EVENT_ACTION_POINTER_DOWN:
163 case AMOTION_EVENT_ACTION_POINTER_UP: {
164 int32_t index = getMotionEventActionPointerIndex(action);
165 return index >= 0 && index < pointerCount;
166 }
167 case AMOTION_EVENT_ACTION_BUTTON_PRESS:
168 case AMOTION_EVENT_ACTION_BUTTON_RELEASE:
169 return actionButton != 0;
170 default:
171 return false;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800172 }
173}
174
Siarhei Vishniakouc1ae5562020-06-30 14:22:57 -0500175static int64_t millis(std::chrono::nanoseconds t) {
176 return std::chrono::duration_cast<std::chrono::milliseconds>(t).count();
177}
178
Michael Wright7b159c92015-05-14 14:48:03 +0100179static bool validateMotionEvent(int32_t action, int32_t actionButton, size_t pointerCount,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700180 const PointerProperties* pointerProperties) {
181 if (!isValidMotionAction(action, actionButton, pointerCount)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800182 ALOGE("Motion event has invalid action code 0x%x", action);
183 return false;
184 }
185 if (pointerCount < 1 || pointerCount > MAX_POINTERS) {
Narayan Kamath37764c72014-03-27 14:21:09 +0000186 ALOGE("Motion event has invalid pointer count %zu; value must be between 1 and %d.",
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700187 pointerCount, MAX_POINTERS);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800188 return false;
189 }
190 BitSet32 pointerIdBits;
191 for (size_t i = 0; i < pointerCount; i++) {
192 int32_t id = pointerProperties[i].id;
193 if (id < 0 || id > MAX_POINTER_ID) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700194 ALOGE("Motion event has invalid pointer id %d; value must be between 0 and %d", id,
195 MAX_POINTER_ID);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800196 return false;
197 }
198 if (pointerIdBits.hasBit(id)) {
199 ALOGE("Motion event has duplicate pointer id %d", id);
200 return false;
201 }
202 pointerIdBits.markBit(id);
203 }
204 return true;
205}
206
Bernardo Rufino53fc31e2020-11-03 11:01:07 +0000207static std::string dumpRegion(const Region& region) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800208 if (region.isEmpty()) {
Bernardo Rufino53fc31e2020-11-03 11:01:07 +0000209 return "<empty>";
Michael Wrightd02c5b62014-02-10 15:10:22 -0800210 }
211
Bernardo Rufino53fc31e2020-11-03 11:01:07 +0000212 std::string dump;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800213 bool first = true;
214 Region::const_iterator cur = region.begin();
215 Region::const_iterator const tail = region.end();
216 while (cur != tail) {
217 if (first) {
218 first = false;
219 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800220 dump += "|";
Michael Wrightd02c5b62014-02-10 15:10:22 -0800221 }
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800222 dump += StringPrintf("[%d,%d][%d,%d]", cur->left, cur->top, cur->right, cur->bottom);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800223 cur++;
224 }
Bernardo Rufino53fc31e2020-11-03 11:01:07 +0000225 return dump;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800226}
227
Siarhei Vishniakou14411c92020-09-18 21:15:05 -0500228static std::string dumpQueue(const std::deque<DispatchEntry*>& queue, nsecs_t currentTime) {
229 constexpr size_t maxEntries = 50; // max events to print
230 constexpr size_t skipBegin = maxEntries / 2;
231 const size_t skipEnd = queue.size() - maxEntries / 2;
232 // skip from maxEntries / 2 ... size() - maxEntries/2
233 // only print from 0 .. skipBegin and then from skipEnd .. size()
234
235 std::string dump;
236 for (size_t i = 0; i < queue.size(); i++) {
237 const DispatchEntry& entry = *queue[i];
238 if (i >= skipBegin && i < skipEnd) {
239 dump += StringPrintf(INDENT4 "<skipped %zu entries>\n", skipEnd - skipBegin);
240 i = skipEnd - 1; // it will be incremented to "skipEnd" by 'continue'
241 continue;
242 }
243 dump.append(INDENT4);
244 dump += entry.eventEntry->getDescription();
245 dump += StringPrintf(", seq=%" PRIu32
246 ", targetFlags=0x%08x, resolvedAction=%d, age=%" PRId64 "ms",
247 entry.seq, entry.targetFlags, entry.resolvedAction,
248 ns2ms(currentTime - entry.eventEntry->eventTime));
249 if (entry.deliveryTime != 0) {
250 // This entry was delivered, so add information on how long we've been waiting
251 dump += StringPrintf(", wait=%" PRId64 "ms", ns2ms(currentTime - entry.deliveryTime));
252 }
253 dump.append("\n");
254 }
255 return dump;
256}
257
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -0700258/**
259 * Find the entry in std::unordered_map by key, and return it.
260 * If the entry is not found, return a default constructed entry.
261 *
262 * Useful when the entries are vectors, since an empty vector will be returned
263 * if the entry is not found.
264 * Also useful when the entries are sp<>. If an entry is not found, nullptr is returned.
265 */
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -0700266template <typename K, typename V>
267static V getValueByKey(const std::unordered_map<K, V>& map, K key) {
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -0700268 auto it = map.find(key);
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -0700269 return it != map.end() ? it->second : V{};
Tiger Huang721e26f2018-07-24 22:26:19 +0800270}
271
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -0700272/**
273 * Find the entry in std::unordered_map by value, and remove it.
274 * If more than one entry has the same value, then all matching
275 * key-value pairs will be removed.
276 *
277 * Return true if at least one value has been removed.
278 */
279template <typename K, typename V>
280static bool removeByValue(std::unordered_map<K, V>& map, const V& value) {
281 bool removed = false;
282 for (auto it = map.begin(); it != map.end();) {
283 if (it->second == value) {
284 it = map.erase(it);
285 removed = true;
286 } else {
287 it++;
288 }
289 }
290 return removed;
291}
Michael Wrightd02c5b62014-02-10 15:10:22 -0800292
Vishnu Nair958da932020-08-21 17:12:37 -0700293/**
294 * Find the entry in std::unordered_map by key and return the value as an optional.
295 */
296template <typename K, typename V>
297static std::optional<V> getOptionalValueByKey(const std::unordered_map<K, V>& map, K key) {
298 auto it = map.find(key);
299 return it != map.end() ? std::optional<V>{it->second} : std::nullopt;
300}
301
chaviwaf87b3e2019-10-01 16:59:28 -0700302static bool haveSameToken(const sp<InputWindowHandle>& first, const sp<InputWindowHandle>& second) {
303 if (first == second) {
304 return true;
305 }
306
307 if (first == nullptr || second == nullptr) {
308 return false;
309 }
310
311 return first->getToken() == second->getToken();
312}
313
Siarhei Vishniakouadfd4fa2019-12-20 11:02:58 -0800314static bool isStaleEvent(nsecs_t currentTime, const EventEntry& entry) {
315 return currentTime - entry.eventTime >= STALE_EVENT_TIMEOUT;
316}
317
Chavi Weingarten65f98b82020-01-16 18:56:50 +0000318static std::unique_ptr<DispatchEntry> createDispatchEntry(const InputTarget& inputTarget,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700319 std::shared_ptr<EventEntry> eventEntry,
Chavi Weingarten65f98b82020-01-16 18:56:50 +0000320 int32_t inputTargetFlags) {
chaviw1ff3d1e2020-07-01 15:53:47 -0700321 if (inputTarget.useDefaultPointerTransform()) {
322 const ui::Transform& transform = inputTarget.getDefaultPointerTransform();
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700323 return std::make_unique<DispatchEntry>(eventEntry, inputTargetFlags, transform,
chaviw1ff3d1e2020-07-01 15:53:47 -0700324 inputTarget.globalScaleFactor);
Chavi Weingarten65f98b82020-01-16 18:56:50 +0000325 }
326
327 ALOG_ASSERT(eventEntry->type == EventEntry::Type::MOTION);
328 const MotionEntry& motionEntry = static_cast<const MotionEntry&>(*eventEntry);
329
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700330 std::vector<PointerCoords> pointerCoords;
331 pointerCoords.resize(motionEntry.pointerCount);
Chavi Weingarten65f98b82020-01-16 18:56:50 +0000332
333 // Use the first pointer information to normalize all other pointers. This could be any pointer
334 // as long as all other pointers are normalized to the same value and the final DispatchEntry
chaviw1ff3d1e2020-07-01 15:53:47 -0700335 // uses the transform for the normalized pointer.
336 const ui::Transform& firstPointerTransform =
337 inputTarget.pointerTransforms[inputTarget.pointerIds.firstMarkedBit()];
338 ui::Transform inverseFirstTransform = firstPointerTransform.inverse();
Chavi Weingarten65f98b82020-01-16 18:56:50 +0000339
340 // Iterate through all pointers in the event to normalize against the first.
341 for (uint32_t pointerIndex = 0; pointerIndex < motionEntry.pointerCount; pointerIndex++) {
342 const PointerProperties& pointerProperties = motionEntry.pointerProperties[pointerIndex];
343 uint32_t pointerId = uint32_t(pointerProperties.id);
chaviw1ff3d1e2020-07-01 15:53:47 -0700344 const ui::Transform& currTransform = inputTarget.pointerTransforms[pointerId];
Chavi Weingarten65f98b82020-01-16 18:56:50 +0000345
346 pointerCoords[pointerIndex].copyFrom(motionEntry.pointerCoords[pointerIndex]);
chaviw1ff3d1e2020-07-01 15:53:47 -0700347 // First, apply the current pointer's transform to update the coordinates into
348 // window space.
349 pointerCoords[pointerIndex].transform(currTransform);
350 // Next, apply the inverse transform of the normalized coordinates so the
351 // current coordinates are transformed into the normalized coordinate space.
352 pointerCoords[pointerIndex].transform(inverseFirstTransform);
Chavi Weingarten65f98b82020-01-16 18:56:50 +0000353 }
354
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700355 std::unique_ptr<MotionEntry> combinedMotionEntry =
356 std::make_unique<MotionEntry>(motionEntry.id, motionEntry.eventTime,
357 motionEntry.deviceId, motionEntry.source,
358 motionEntry.displayId, motionEntry.policyFlags,
359 motionEntry.action, motionEntry.actionButton,
360 motionEntry.flags, motionEntry.metaState,
361 motionEntry.buttonState, motionEntry.classification,
362 motionEntry.edgeFlags, motionEntry.xPrecision,
363 motionEntry.yPrecision, motionEntry.xCursorPosition,
364 motionEntry.yCursorPosition, motionEntry.downTime,
365 motionEntry.pointerCount, motionEntry.pointerProperties,
366 pointerCoords.data(), 0 /* xOffset */, 0 /* yOffset */);
Chavi Weingarten65f98b82020-01-16 18:56:50 +0000367
368 if (motionEntry.injectionState) {
369 combinedMotionEntry->injectionState = motionEntry.injectionState;
370 combinedMotionEntry->injectionState->refCount += 1;
371 }
372
373 std::unique_ptr<DispatchEntry> dispatchEntry =
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700374 std::make_unique<DispatchEntry>(std::move(combinedMotionEntry), inputTargetFlags,
375 firstPointerTransform, inputTarget.globalScaleFactor);
Chavi Weingarten65f98b82020-01-16 18:56:50 +0000376 return dispatchEntry;
377}
378
Siarhei Vishniakouf0007dd2020-04-13 11:40:37 -0700379static void addGestureMonitors(const std::vector<Monitor>& monitors,
380 std::vector<TouchedMonitor>& outTouchedMonitors, float xOffset = 0,
381 float yOffset = 0) {
382 if (monitors.empty()) {
383 return;
384 }
385 outTouchedMonitors.reserve(monitors.size() + outTouchedMonitors.size());
386 for (const Monitor& monitor : monitors) {
387 outTouchedMonitors.emplace_back(monitor, xOffset, yOffset);
388 }
389}
390
Garfield Tan15601662020-09-22 15:32:38 -0700391static status_t openInputChannelPair(const std::string& name,
392 std::shared_ptr<InputChannel>& serverChannel,
393 std::unique_ptr<InputChannel>& clientChannel) {
394 std::unique_ptr<InputChannel> uniqueServerChannel;
395 status_t result = InputChannel::openInputChannelPair(name, uniqueServerChannel, clientChannel);
396
397 serverChannel = std::move(uniqueServerChannel);
398 return result;
399}
400
Vishnu Nair958da932020-08-21 17:12:37 -0700401const char* InputDispatcher::typeToString(InputDispatcher::FocusResult result) {
402 switch (result) {
403 case InputDispatcher::FocusResult::OK:
404 return "Ok";
405 case InputDispatcher::FocusResult::NO_WINDOW:
406 return "Window not found";
407 case InputDispatcher::FocusResult::NOT_FOCUSABLE:
408 return "Window not focusable";
409 case InputDispatcher::FocusResult::NOT_VISIBLE:
410 return "Window not visible";
411 }
412}
413
Siarhei Vishniakoue41c4512020-09-08 19:35:58 -0500414template <typename T>
415static bool sharedPointersEqual(const std::shared_ptr<T>& lhs, const std::shared_ptr<T>& rhs) {
416 if (lhs == nullptr && rhs == nullptr) {
417 return true;
418 }
419 if (lhs == nullptr || rhs == nullptr) {
420 return false;
421 }
422 return *lhs == *rhs;
423}
424
Michael Wrightd02c5b62014-02-10 15:10:22 -0800425// --- InputDispatcher ---
426
Garfield Tan00f511d2019-06-12 16:55:40 -0700427InputDispatcher::InputDispatcher(const sp<InputDispatcherPolicyInterface>& policy)
428 : mPolicy(policy),
429 mPendingEvent(nullptr),
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700430 mLastDropReason(DropReason::NOT_DROPPED),
Garfield Tanff1f1bb2020-01-28 13:24:04 -0800431 mIdGenerator(IdGenerator::Source::INPUT_DISPATCHER),
Garfield Tan00f511d2019-06-12 16:55:40 -0700432 mAppSwitchSawKeyDown(false),
433 mAppSwitchDueTime(LONG_LONG_MAX),
434 mNextUnblockedEvent(nullptr),
435 mDispatchEnabled(false),
436 mDispatchFrozen(false),
437 mInputFilterEnabled(false),
Siarhei Vishniakouf3bc1aa2019-11-25 13:48:53 -0800438 // mInTouchMode will be initialized by the WindowManager to the default device config.
439 // To avoid leaking stack in case that call never comes, and for tests,
440 // initialize it here anyways.
441 mInTouchMode(true),
Bernardo Rufinoea97d182020-08-19 14:43:14 +0100442 mMaximumObscuringOpacityForTouch(1.0f),
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700443 mFocusedDisplayId(ADISPLAY_ID_DEFAULT) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800444 mLooper = new Looper(false);
Prabir Pradhanf93562f2018-11-29 12:13:37 -0800445 mReporter = createInputReporter();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800446
Yi Kong9b14ac62018-07-17 13:48:38 -0700447 mKeyRepeatState.lastKeyEntry = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800448
449 policy->getDispatcherConfiguration(&mConfig);
450}
451
452InputDispatcher::~InputDispatcher() {
453 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -0800454 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800455
456 resetKeyRepeatLocked();
457 releasePendingEventLocked();
458 drainInboundQueueLocked();
459 }
460
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -0700461 while (!mConnectionsByFd.empty()) {
462 sp<Connection> connection = mConnectionsByFd.begin()->second;
Garfield Tan15601662020-09-22 15:32:38 -0700463 removeInputChannel(connection->inputChannel->getConnectionToken());
Michael Wrightd02c5b62014-02-10 15:10:22 -0800464 }
465}
466
Prabir Pradhan3608aad2019-10-02 17:08:26 -0700467status_t InputDispatcher::start() {
Prabir Pradhan5a57cff2019-10-31 18:40:33 -0700468 if (mThread) {
Prabir Pradhan3608aad2019-10-02 17:08:26 -0700469 return ALREADY_EXISTS;
470 }
Prabir Pradhan5a57cff2019-10-31 18:40:33 -0700471 mThread = std::make_unique<InputThread>(
472 "InputDispatcher", [this]() { dispatchOnce(); }, [this]() { mLooper->wake(); });
473 return OK;
Prabir Pradhan3608aad2019-10-02 17:08:26 -0700474}
475
476status_t InputDispatcher::stop() {
Prabir Pradhan5a57cff2019-10-31 18:40:33 -0700477 if (mThread && mThread->isCallingThread()) {
478 ALOGE("InputDispatcher cannot be stopped from its own thread!");
Prabir Pradhan3608aad2019-10-02 17:08:26 -0700479 return INVALID_OPERATION;
480 }
Prabir Pradhan5a57cff2019-10-31 18:40:33 -0700481 mThread.reset();
482 return OK;
Prabir Pradhan3608aad2019-10-02 17:08:26 -0700483}
484
Michael Wrightd02c5b62014-02-10 15:10:22 -0800485void InputDispatcher::dispatchOnce() {
486 nsecs_t nextWakeupTime = LONG_LONG_MAX;
487 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -0800488 std::scoped_lock _l(mLock);
489 mDispatcherIsAlive.notify_all();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800490
491 // Run a dispatch loop if there are no pending commands.
492 // The dispatch loop might enqueue commands to run afterwards.
493 if (!haveCommandsLocked()) {
494 dispatchOnceInnerLocked(&nextWakeupTime);
495 }
496
497 // Run all pending commands if there are any.
498 // If any commands were run then force the next poll to wake up immediately.
499 if (runCommandsLockedInterruptible()) {
500 nextWakeupTime = LONG_LONG_MIN;
501 }
Siarhei Vishniakou2bfa9052019-11-21 18:10:54 -0800502
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700503 // If we are still waiting for ack on some events,
504 // we might have to wake up earlier to check if an app is anr'ing.
505 const nsecs_t nextAnrCheck = processAnrsLocked();
506 nextWakeupTime = std::min(nextWakeupTime, nextAnrCheck);
507
Siarhei Vishniakou2bfa9052019-11-21 18:10:54 -0800508 // We are about to enter an infinitely long sleep, because we have no commands or
509 // pending or queued events
510 if (nextWakeupTime == LONG_LONG_MAX) {
511 mDispatcherEnteredIdle.notify_all();
512 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800513 } // release lock
514
515 // Wait for callback or timeout or wake. (make sure we round up, not down)
516 nsecs_t currentTime = now();
517 int timeoutMillis = toMillisecondTimeoutDelay(currentTime, nextWakeupTime);
518 mLooper->pollOnce(timeoutMillis);
519}
520
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700521/**
Siarhei Vishniakouf56b2692020-09-08 19:43:33 -0500522 * Raise ANR if there is no focused window.
523 * Before the ANR is raised, do a final state check:
524 * 1. The currently focused application must be the same one we are waiting for.
525 * 2. Ensure we still don't have a focused window.
526 */
527void InputDispatcher::processNoFocusedWindowAnrLocked() {
528 // Check if the application that we are waiting for is still focused.
529 std::shared_ptr<InputApplicationHandle> focusedApplication =
530 getValueByKey(mFocusedApplicationHandlesByDisplay, mAwaitedApplicationDisplayId);
531 if (focusedApplication == nullptr ||
532 focusedApplication->getApplicationToken() !=
533 mAwaitedFocusedApplication->getApplicationToken()) {
534 // Unexpected because we should have reset the ANR timer when focused application changed
535 ALOGE("Waited for a focused window, but focused application has already changed to %s",
536 focusedApplication->getName().c_str());
537 return; // The focused application has changed.
538 }
539
540 const sp<InputWindowHandle>& focusedWindowHandle =
541 getFocusedWindowHandleLocked(mAwaitedApplicationDisplayId);
542 if (focusedWindowHandle != nullptr) {
543 return; // We now have a focused window. No need for ANR.
544 }
545 onAnrLocked(mAwaitedFocusedApplication);
546}
547
548/**
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700549 * Check if any of the connections' wait queues have events that are too old.
550 * If we waited for events to be ack'ed for more than the window timeout, raise an ANR.
551 * Return the time at which we should wake up next.
552 */
553nsecs_t InputDispatcher::processAnrsLocked() {
554 const nsecs_t currentTime = now();
555 nsecs_t nextAnrCheck = LONG_LONG_MAX;
556 // Check if we are waiting for a focused window to appear. Raise ANR if waited too long
557 if (mNoFocusedWindowTimeoutTime.has_value() && mAwaitedFocusedApplication != nullptr) {
558 if (currentTime >= *mNoFocusedWindowTimeoutTime) {
Siarhei Vishniakouf56b2692020-09-08 19:43:33 -0500559 processNoFocusedWindowAnrLocked();
Chris Yea209fde2020-07-22 13:54:51 -0700560 mAwaitedFocusedApplication.reset();
Siarhei Vishniakouf56b2692020-09-08 19:43:33 -0500561 mNoFocusedWindowTimeoutTime = std::nullopt;
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700562 return LONG_LONG_MIN;
563 } else {
Siarhei Vishniakou38a6d272020-10-20 20:29:33 -0500564 // Keep waiting. We will drop the event when mNoFocusedWindowTimeoutTime comes.
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700565 nextAnrCheck = *mNoFocusedWindowTimeoutTime;
566 }
567 }
568
569 // Check if any connection ANRs are due
570 nextAnrCheck = std::min(nextAnrCheck, mAnrTracker.firstTimeout());
571 if (currentTime < nextAnrCheck) { // most likely scenario
572 return nextAnrCheck; // everything is normal. Let's check again at nextAnrCheck
573 }
574
575 // If we reached here, we have an unresponsive connection.
576 sp<Connection> connection = getConnectionLocked(mAnrTracker.firstToken());
577 if (connection == nullptr) {
578 ALOGE("Could not find connection for entry %" PRId64, mAnrTracker.firstTimeout());
579 return nextAnrCheck;
580 }
581 connection->responsive = false;
582 // Stop waking up for this unresponsive connection
583 mAnrTracker.eraseToken(connection->inputChannel->getConnectionToken());
Siarhei Vishniakoua72accd2020-09-22 21:43:09 -0500584 onAnrLocked(*connection);
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700585 return LONG_LONG_MIN;
586}
587
Siarhei Vishniakou70622952020-07-30 11:17:23 -0500588std::chrono::nanoseconds InputDispatcher::getDispatchingTimeoutLocked(const sp<IBinder>& token) {
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700589 sp<InputWindowHandle> window = getWindowHandleLocked(token);
590 if (window != nullptr) {
Siarhei Vishniakou70622952020-07-30 11:17:23 -0500591 return window->getDispatchingTimeout(DEFAULT_INPUT_DISPATCHING_TIMEOUT);
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700592 }
Siarhei Vishniakou70622952020-07-30 11:17:23 -0500593 return DEFAULT_INPUT_DISPATCHING_TIMEOUT;
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700594}
595
Michael Wrightd02c5b62014-02-10 15:10:22 -0800596void InputDispatcher::dispatchOnceInnerLocked(nsecs_t* nextWakeupTime) {
597 nsecs_t currentTime = now();
598
Jeff Browndc5992e2014-04-11 01:27:26 -0700599 // Reset the key repeat timer whenever normal dispatch is suspended while the
600 // device is in a non-interactive state. This is to ensure that we abort a key
601 // repeat if the device is just coming out of sleep.
602 if (!mDispatchEnabled) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800603 resetKeyRepeatLocked();
604 }
605
606 // If dispatching is frozen, do not process timeouts or try to deliver any new events.
607 if (mDispatchFrozen) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +0100608 if (DEBUG_FOCUS) {
609 ALOGD("Dispatch frozen. Waiting some more.");
610 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800611 return;
612 }
613
614 // Optimize latency of app switches.
615 // Essentially we start a short timeout when an app switch key (HOME / ENDCALL) has
616 // been pressed. When it expires, we preempt dispatch and drop all other pending events.
617 bool isAppSwitchDue = mAppSwitchDueTime <= currentTime;
618 if (mAppSwitchDueTime < *nextWakeupTime) {
619 *nextWakeupTime = mAppSwitchDueTime;
620 }
621
622 // Ready to start a new event.
623 // If we don't already have a pending event, go grab one.
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700624 if (!mPendingEvent) {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700625 if (mInboundQueue.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800626 if (isAppSwitchDue) {
627 // The inbound queue is empty so the app switch key we were waiting
628 // for will never arrive. Stop waiting for it.
629 resetPendingAppSwitchLocked(false);
630 isAppSwitchDue = false;
631 }
632
633 // Synthesize a key repeat if appropriate.
634 if (mKeyRepeatState.lastKeyEntry) {
635 if (currentTime >= mKeyRepeatState.nextRepeatTime) {
636 mPendingEvent = synthesizeKeyRepeatLocked(currentTime);
637 } else {
638 if (mKeyRepeatState.nextRepeatTime < *nextWakeupTime) {
639 *nextWakeupTime = mKeyRepeatState.nextRepeatTime;
640 }
641 }
642 }
643
644 // Nothing to do if there is no pending event.
645 if (!mPendingEvent) {
646 return;
647 }
648 } else {
649 // Inbound queue has at least one entry.
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700650 mPendingEvent = mInboundQueue.front();
651 mInboundQueue.pop_front();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800652 traceInboundQueueLengthLocked();
653 }
654
655 // Poke user activity for this event.
656 if (mPendingEvent->policyFlags & POLICY_FLAG_PASS_TO_USER) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700657 pokeUserActivityLocked(*mPendingEvent);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800658 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800659 }
660
661 // Now we have an event to dispatch.
662 // All events are eventually dequeued and processed this way, even if we intend to drop them.
Yi Kong9b14ac62018-07-17 13:48:38 -0700663 ALOG_ASSERT(mPendingEvent != nullptr);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800664 bool done = false;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700665 DropReason dropReason = DropReason::NOT_DROPPED;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800666 if (!(mPendingEvent->policyFlags & POLICY_FLAG_PASS_TO_USER)) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700667 dropReason = DropReason::POLICY;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800668 } else if (!mDispatchEnabled) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700669 dropReason = DropReason::DISABLED;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800670 }
671
672 if (mNextUnblockedEvent == mPendingEvent) {
Yi Kong9b14ac62018-07-17 13:48:38 -0700673 mNextUnblockedEvent = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800674 }
675
676 switch (mPendingEvent->type) {
Siarhei Vishniakou49483272019-10-22 13:13:47 -0700677 case EventEntry::Type::CONFIGURATION_CHANGED: {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700678 const ConfigurationChangedEntry& typedEntry =
679 static_cast<const ConfigurationChangedEntry&>(*mPendingEvent);
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700680 done = dispatchConfigurationChangedLocked(currentTime, typedEntry);
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700681 dropReason = DropReason::NOT_DROPPED; // configuration changes are never dropped
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700682 break;
683 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800684
Siarhei Vishniakou49483272019-10-22 13:13:47 -0700685 case EventEntry::Type::DEVICE_RESET: {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700686 const DeviceResetEntry& typedEntry =
687 static_cast<const DeviceResetEntry&>(*mPendingEvent);
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700688 done = dispatchDeviceResetLocked(currentTime, typedEntry);
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700689 dropReason = DropReason::NOT_DROPPED; // device resets are never dropped
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700690 break;
691 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800692
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100693 case EventEntry::Type::FOCUS: {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700694 std::shared_ptr<FocusEntry> typedEntry =
695 std::static_pointer_cast<FocusEntry>(mPendingEvent);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100696 dispatchFocusLocked(currentTime, typedEntry);
697 done = true;
698 dropReason = DropReason::NOT_DROPPED; // focus events are never dropped
699 break;
700 }
701
Siarhei Vishniakou49483272019-10-22 13:13:47 -0700702 case EventEntry::Type::KEY: {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700703 std::shared_ptr<KeyEntry> keyEntry = std::static_pointer_cast<KeyEntry>(mPendingEvent);
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700704 if (isAppSwitchDue) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700705 if (isAppSwitchKeyEvent(*keyEntry)) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700706 resetPendingAppSwitchLocked(true);
707 isAppSwitchDue = false;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700708 } else if (dropReason == DropReason::NOT_DROPPED) {
709 dropReason = DropReason::APP_SWITCH;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700710 }
711 }
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700712 if (dropReason == DropReason::NOT_DROPPED && isStaleEvent(currentTime, *keyEntry)) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700713 dropReason = DropReason::STALE;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700714 }
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700715 if (dropReason == DropReason::NOT_DROPPED && mNextUnblockedEvent) {
716 dropReason = DropReason::BLOCKED;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700717 }
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700718 done = dispatchKeyLocked(currentTime, keyEntry, &dropReason, nextWakeupTime);
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700719 break;
720 }
721
Siarhei Vishniakou49483272019-10-22 13:13:47 -0700722 case EventEntry::Type::MOTION: {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700723 std::shared_ptr<MotionEntry> motionEntry =
724 std::static_pointer_cast<MotionEntry>(mPendingEvent);
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700725 if (dropReason == DropReason::NOT_DROPPED && isAppSwitchDue) {
726 dropReason = DropReason::APP_SWITCH;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800727 }
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700728 if (dropReason == DropReason::NOT_DROPPED && isStaleEvent(currentTime, *motionEntry)) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700729 dropReason = DropReason::STALE;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700730 }
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700731 if (dropReason == DropReason::NOT_DROPPED && mNextUnblockedEvent) {
732 dropReason = DropReason::BLOCKED;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700733 }
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700734 done = dispatchMotionLocked(currentTime, motionEntry, &dropReason, nextWakeupTime);
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700735 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800736 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800737 }
738
739 if (done) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700740 if (dropReason != DropReason::NOT_DROPPED) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700741 dropInboundEventLocked(*mPendingEvent, dropReason);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800742 }
Michael Wright3a981722015-06-10 15:26:13 +0100743 mLastDropReason = dropReason;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800744
745 releasePendingEventLocked();
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700746 *nextWakeupTime = LONG_LONG_MIN; // force next poll to wake up immediately
Michael Wrightd02c5b62014-02-10 15:10:22 -0800747 }
748}
749
Siarhei Vishniakou850ce122020-05-26 22:39:43 -0700750/**
751 * Return true if the events preceding this incoming motion event should be dropped
752 * Return false otherwise (the default behaviour)
753 */
754bool InputDispatcher::shouldPruneInboundQueueLocked(const MotionEntry& motionEntry) {
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700755 const bool isPointerDownEvent = motionEntry.action == AMOTION_EVENT_ACTION_DOWN &&
Siarhei Vishniakou850ce122020-05-26 22:39:43 -0700756 (motionEntry.source & AINPUT_SOURCE_CLASS_POINTER);
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700757
758 // Optimize case where the current application is unresponsive and the user
759 // decides to touch a window in a different application.
760 // If the application takes too long to catch up then we drop all events preceding
761 // the touch into the other window.
762 if (isPointerDownEvent && mAwaitedFocusedApplication != nullptr) {
Siarhei Vishniakou850ce122020-05-26 22:39:43 -0700763 int32_t displayId = motionEntry.displayId;
764 int32_t x = static_cast<int32_t>(
765 motionEntry.pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X));
766 int32_t y = static_cast<int32_t>(
767 motionEntry.pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y));
768 sp<InputWindowHandle> touchedWindowHandle =
769 findTouchedWindowAtLocked(displayId, x, y, nullptr);
770 if (touchedWindowHandle != nullptr &&
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700771 touchedWindowHandle->getApplicationToken() !=
772 mAwaitedFocusedApplication->getApplicationToken()) {
Siarhei Vishniakou850ce122020-05-26 22:39:43 -0700773 // User touched a different application than the one we are waiting on.
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700774 ALOGI("Pruning input queue because user touched a different application while waiting "
775 "for %s",
776 mAwaitedFocusedApplication->getName().c_str());
Siarhei Vishniakou850ce122020-05-26 22:39:43 -0700777 return true;
778 }
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700779
780 // Alternatively, maybe there's a gesture monitor that could handle this event
781 std::vector<TouchedMonitor> gestureMonitors =
782 findTouchedGestureMonitorsLocked(displayId, {});
783 for (TouchedMonitor& gestureMonitor : gestureMonitors) {
784 sp<Connection> connection =
785 getConnectionLocked(gestureMonitor.monitor.inputChannel->getConnectionToken());
Siarhei Vishniakou34ed4d42020-06-18 00:43:02 +0000786 if (connection != nullptr && connection->responsive) {
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700787 // This monitor could take more input. Drop all events preceding this
788 // event, so that gesture monitor could get a chance to receive the stream
789 ALOGW("Pruning the input queue because %s is unresponsive, but we have a "
790 "responsive gesture monitor that may handle the event",
791 mAwaitedFocusedApplication->getName().c_str());
792 return true;
793 }
794 }
795 }
796
797 // Prevent getting stuck: if we have a pending key event, and some motion events that have not
798 // yet been processed by some connections, the dispatcher will wait for these motion
799 // events to be processed before dispatching the key event. This is because these motion events
800 // may cause a new window to be launched, which the user might expect to receive focus.
801 // To prevent waiting forever for such events, just send the key to the currently focused window
802 if (isPointerDownEvent && mKeyIsWaitingForEventsTimeout) {
803 ALOGD("Received a new pointer down event, stop waiting for events to process and "
804 "just send the pending key event to the focused window.");
805 mKeyIsWaitingForEventsTimeout = now();
Siarhei Vishniakou850ce122020-05-26 22:39:43 -0700806 }
807 return false;
808}
809
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700810bool InputDispatcher::enqueueInboundEventLocked(std::unique_ptr<EventEntry> newEntry) {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700811 bool needWake = mInboundQueue.empty();
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700812 mInboundQueue.push_back(std::move(newEntry));
813 EventEntry& entry = *(mInboundQueue.back());
Michael Wrightd02c5b62014-02-10 15:10:22 -0800814 traceInboundQueueLengthLocked();
815
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700816 switch (entry.type) {
Siarhei Vishniakou49483272019-10-22 13:13:47 -0700817 case EventEntry::Type::KEY: {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700818 // Optimize app switch latency.
819 // If the application takes too long to catch up then we drop all events preceding
820 // the app switch key.
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700821 const KeyEntry& keyEntry = static_cast<const KeyEntry&>(entry);
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700822 if (isAppSwitchKeyEvent(keyEntry)) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700823 if (keyEntry.action == AKEY_EVENT_ACTION_DOWN) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700824 mAppSwitchSawKeyDown = true;
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700825 } else if (keyEntry.action == AKEY_EVENT_ACTION_UP) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700826 if (mAppSwitchSawKeyDown) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800827#if DEBUG_APP_SWITCH
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700828 ALOGD("App switch is pending!");
Michael Wrightd02c5b62014-02-10 15:10:22 -0800829#endif
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700830 mAppSwitchDueTime = keyEntry.eventTime + APP_SWITCH_TIMEOUT;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700831 mAppSwitchSawKeyDown = false;
832 needWake = true;
833 }
834 }
835 }
836 break;
837 }
838
Siarhei Vishniakou49483272019-10-22 13:13:47 -0700839 case EventEntry::Type::MOTION: {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700840 if (shouldPruneInboundQueueLocked(static_cast<MotionEntry&>(entry))) {
841 mNextUnblockedEvent = mInboundQueue.back();
Siarhei Vishniakou850ce122020-05-26 22:39:43 -0700842 needWake = true;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800843 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700844 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800845 }
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100846 case EventEntry::Type::FOCUS: {
Siarhei Vishniakou850ce122020-05-26 22:39:43 -0700847 LOG_ALWAYS_FATAL("Focus events should be inserted using enqueueFocusEventLocked");
848 break;
849 }
850 case EventEntry::Type::CONFIGURATION_CHANGED:
851 case EventEntry::Type::DEVICE_RESET: {
Siarhei Vishniakou49483272019-10-22 13:13:47 -0700852 // nothing to do
853 break;
854 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800855 }
856
857 return needWake;
858}
859
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -0700860void InputDispatcher::addRecentEventLocked(std::shared_ptr<EventEntry> entry) {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700861 mRecentQueue.push_back(entry);
862 if (mRecentQueue.size() > RECENT_QUEUE_MAX_SIZE) {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700863 mRecentQueue.pop_front();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800864 }
865}
866
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700867sp<InputWindowHandle> InputDispatcher::findTouchedWindowAtLocked(int32_t displayId, int32_t x,
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -0700868 int32_t y, TouchState* touchState,
869 bool addOutsideTargets,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700870 bool addPortalWindows) {
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -0700871 if ((addPortalWindows || addOutsideTargets) && touchState == nullptr) {
872 LOG_ALWAYS_FATAL(
873 "Must provide a valid touch state if adding portal windows or outside targets");
874 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800875 // Traverse windows from front to back to find touched window.
Vishnu Nairad321cd2020-08-20 16:40:21 -0700876 const std::vector<sp<InputWindowHandle>>& windowHandles = getWindowHandlesLocked(displayId);
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800877 for (const sp<InputWindowHandle>& windowHandle : windowHandles) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800878 const InputWindowInfo* windowInfo = windowHandle->getInfo();
879 if (windowInfo->displayId == displayId) {
Michael Wright44753b12020-07-08 13:48:11 +0100880 auto flags = windowInfo->flags;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800881
882 if (windowInfo->visible) {
Michael Wright44753b12020-07-08 13:48:11 +0100883 if (!flags.test(InputWindowInfo::Flag::NOT_TOUCHABLE)) {
884 bool isTouchModal = !flags.test(InputWindowInfo::Flag::NOT_FOCUSABLE) &&
885 !flags.test(InputWindowInfo::Flag::NOT_TOUCH_MODAL);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800886 if (isTouchModal || windowInfo->touchableRegionContainsPoint(x, y)) {
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800887 int32_t portalToDisplayId = windowInfo->portalToDisplayId;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700888 if (portalToDisplayId != ADISPLAY_ID_NONE &&
889 portalToDisplayId != displayId) {
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800890 if (addPortalWindows) {
891 // For the monitoring channels of the display.
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -0700892 touchState->addPortalWindow(windowHandle);
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800893 }
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -0700894 return findTouchedWindowAtLocked(portalToDisplayId, x, y, touchState,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700895 addOutsideTargets, addPortalWindows);
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800896 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800897 // Found window.
898 return windowHandle;
899 }
900 }
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800901
Michael Wright44753b12020-07-08 13:48:11 +0100902 if (addOutsideTargets && flags.test(InputWindowInfo::Flag::WATCH_OUTSIDE_TOUCH)) {
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -0700903 touchState->addOrUpdateWindow(windowHandle,
904 InputTarget::FLAG_DISPATCH_AS_OUTSIDE,
905 BitSet32(0));
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800906 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800907 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800908 }
909 }
Yi Kong9b14ac62018-07-17 13:48:38 -0700910 return nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800911}
912
Garfield Tane84e6f92019-08-29 17:28:41 -0700913std::vector<TouchedMonitor> InputDispatcher::findTouchedGestureMonitorsLocked(
Siarhei Vishniakouf0007dd2020-04-13 11:40:37 -0700914 int32_t displayId, const std::vector<sp<InputWindowHandle>>& portalWindows) const {
Michael Wright3dd60e22019-03-27 22:06:44 +0000915 std::vector<TouchedMonitor> touchedMonitors;
916
917 std::vector<Monitor> monitors = getValueByKey(mGestureMonitorsByDisplay, displayId);
918 addGestureMonitors(monitors, touchedMonitors);
919 for (const sp<InputWindowHandle>& portalWindow : portalWindows) {
920 const InputWindowInfo* windowInfo = portalWindow->getInfo();
921 monitors = getValueByKey(mGestureMonitorsByDisplay, windowInfo->portalToDisplayId);
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700922 addGestureMonitors(monitors, touchedMonitors, -windowInfo->frameLeft,
923 -windowInfo->frameTop);
Michael Wright3dd60e22019-03-27 22:06:44 +0000924 }
925 return touchedMonitors;
926}
927
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700928void InputDispatcher::dropInboundEventLocked(const EventEntry& entry, DropReason dropReason) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800929 const char* reason;
930 switch (dropReason) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700931 case DropReason::POLICY:
Michael Wrightd02c5b62014-02-10 15:10:22 -0800932#if DEBUG_INBOUND_EVENT_DETAILS
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700933 ALOGD("Dropped event because policy consumed it.");
Michael Wrightd02c5b62014-02-10 15:10:22 -0800934#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700935 reason = "inbound event was dropped because the policy consumed it";
936 break;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700937 case DropReason::DISABLED:
938 if (mLastDropReason != DropReason::DISABLED) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700939 ALOGI("Dropped event because input dispatch is disabled.");
940 }
941 reason = "inbound event was dropped because input dispatch is disabled";
942 break;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700943 case DropReason::APP_SWITCH:
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700944 ALOGI("Dropped event because of pending overdue app switch.");
945 reason = "inbound event was dropped because of pending overdue app switch";
946 break;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700947 case DropReason::BLOCKED:
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700948 ALOGI("Dropped event because the current application is not responding and the user "
949 "has started interacting with a different application.");
950 reason = "inbound event was dropped because the current application is not responding "
951 "and the user has started interacting with a different application";
952 break;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700953 case DropReason::STALE:
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700954 ALOGI("Dropped event because it is stale.");
955 reason = "inbound event was dropped because it is stale";
956 break;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700957 case DropReason::NOT_DROPPED: {
958 LOG_ALWAYS_FATAL("Should not be dropping a NOT_DROPPED event");
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700959 return;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700960 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800961 }
962
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700963 switch (entry.type) {
Siarhei Vishniakou49483272019-10-22 13:13:47 -0700964 case EventEntry::Type::KEY: {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800965 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason);
966 synthesizeCancelationEventsForAllConnectionsLocked(options);
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700967 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800968 }
Siarhei Vishniakou49483272019-10-22 13:13:47 -0700969 case EventEntry::Type::MOTION: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700970 const MotionEntry& motionEntry = static_cast<const MotionEntry&>(entry);
971 if (motionEntry.source & AINPUT_SOURCE_CLASS_POINTER) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700972 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS, reason);
973 synthesizeCancelationEventsForAllConnectionsLocked(options);
974 } else {
975 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason);
976 synthesizeCancelationEventsForAllConnectionsLocked(options);
977 }
978 break;
979 }
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100980 case EventEntry::Type::FOCUS:
Siarhei Vishniakou49483272019-10-22 13:13:47 -0700981 case EventEntry::Type::CONFIGURATION_CHANGED:
982 case EventEntry::Type::DEVICE_RESET: {
983 LOG_ALWAYS_FATAL("Should not drop %s events", EventEntry::typeToString(entry.type));
984 break;
985 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800986 }
987}
988
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800989static bool isAppSwitchKeyCode(int32_t keyCode) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700990 return keyCode == AKEYCODE_HOME || keyCode == AKEYCODE_ENDCALL ||
991 keyCode == AKEYCODE_APP_SWITCH;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800992}
993
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700994bool InputDispatcher::isAppSwitchKeyEvent(const KeyEntry& keyEntry) {
995 return !(keyEntry.flags & AKEY_EVENT_FLAG_CANCELED) && isAppSwitchKeyCode(keyEntry.keyCode) &&
996 (keyEntry.policyFlags & POLICY_FLAG_TRUSTED) &&
997 (keyEntry.policyFlags & POLICY_FLAG_PASS_TO_USER);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800998}
999
1000bool InputDispatcher::isAppSwitchPendingLocked() {
1001 return mAppSwitchDueTime != LONG_LONG_MAX;
1002}
1003
1004void InputDispatcher::resetPendingAppSwitchLocked(bool handled) {
1005 mAppSwitchDueTime = LONG_LONG_MAX;
1006
1007#if DEBUG_APP_SWITCH
1008 if (handled) {
1009 ALOGD("App switch has arrived.");
1010 } else {
1011 ALOGD("App switch was abandoned.");
1012 }
1013#endif
1014}
1015
Michael Wrightd02c5b62014-02-10 15:10:22 -08001016bool InputDispatcher::haveCommandsLocked() const {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07001017 return !mCommandQueue.empty();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001018}
1019
1020bool InputDispatcher::runCommandsLockedInterruptible() {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07001021 if (mCommandQueue.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001022 return false;
1023 }
1024
1025 do {
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07001026 std::unique_ptr<CommandEntry> commandEntry = std::move(mCommandQueue.front());
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07001027 mCommandQueue.pop_front();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001028 Command command = commandEntry->command;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07001029 command(*this, commandEntry.get()); // commands are implicitly 'LockedInterruptible'
Michael Wrightd02c5b62014-02-10 15:10:22 -08001030
1031 commandEntry->connection.clear();
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07001032 } while (!mCommandQueue.empty());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001033 return true;
1034}
1035
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07001036void InputDispatcher::postCommandLocked(std::unique_ptr<CommandEntry> commandEntry) {
1037 mCommandQueue.push_back(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001038}
1039
1040void InputDispatcher::drainInboundQueueLocked() {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07001041 while (!mInboundQueue.empty()) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001042 std::shared_ptr<EventEntry> entry = mInboundQueue.front();
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07001043 mInboundQueue.pop_front();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001044 releaseInboundEventLocked(entry);
1045 }
1046 traceInboundQueueLengthLocked();
1047}
1048
1049void InputDispatcher::releasePendingEventLocked() {
1050 if (mPendingEvent) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001051 releaseInboundEventLocked(mPendingEvent);
Yi Kong9b14ac62018-07-17 13:48:38 -07001052 mPendingEvent = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001053 }
1054}
1055
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001056void InputDispatcher::releaseInboundEventLocked(std::shared_ptr<EventEntry> entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001057 InjectionState* injectionState = entry->injectionState;
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001058 if (injectionState && injectionState->injectionResult == InputEventInjectionResult::PENDING) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001059#if DEBUG_DISPATCH_CYCLE
1060 ALOGD("Injected inbound event was dropped.");
1061#endif
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001062 setInjectionResult(*entry, InputEventInjectionResult::FAILED);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001063 }
1064 if (entry == mNextUnblockedEvent) {
Yi Kong9b14ac62018-07-17 13:48:38 -07001065 mNextUnblockedEvent = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001066 }
1067 addRecentEventLocked(entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001068}
1069
1070void InputDispatcher::resetKeyRepeatLocked() {
1071 if (mKeyRepeatState.lastKeyEntry) {
Yi Kong9b14ac62018-07-17 13:48:38 -07001072 mKeyRepeatState.lastKeyEntry = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001073 }
1074}
1075
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001076std::shared_ptr<KeyEntry> InputDispatcher::synthesizeKeyRepeatLocked(nsecs_t currentTime) {
1077 std::shared_ptr<KeyEntry> entry = mKeyRepeatState.lastKeyEntry;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001078
Michael Wright2e732952014-09-24 13:26:59 -07001079 uint32_t policyFlags = entry->policyFlags &
1080 (POLICY_FLAG_RAW_MASK | POLICY_FLAG_PASS_TO_USER | POLICY_FLAG_TRUSTED);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001081
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001082 std::shared_ptr<KeyEntry> newEntry =
1083 std::make_unique<KeyEntry>(mIdGenerator.nextId(), currentTime, entry->deviceId,
1084 entry->source, entry->displayId, policyFlags, entry->action,
1085 entry->flags, entry->keyCode, entry->scanCode,
1086 entry->metaState, entry->repeatCount + 1, entry->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001087
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001088 newEntry->syntheticRepeat = true;
1089 mKeyRepeatState.lastKeyEntry = newEntry;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001090 mKeyRepeatState.nextRepeatTime = currentTime + mConfig.keyRepeatDelay;
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001091 return newEntry;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001092}
1093
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001094bool InputDispatcher::dispatchConfigurationChangedLocked(nsecs_t currentTime,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001095 const ConfigurationChangedEntry& entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001096#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001097 ALOGD("dispatchConfigurationChanged - eventTime=%" PRId64, entry.eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001098#endif
1099
1100 // Reset key repeating in case a keyboard device was added or removed or something.
1101 resetKeyRepeatLocked();
1102
1103 // Enqueue a command to run outside the lock to tell the policy that the configuration changed.
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07001104 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
1105 &InputDispatcher::doNotifyConfigurationChangedLockedInterruptible);
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001106 commandEntry->eventTime = entry.eventTime;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07001107 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001108 return true;
1109}
1110
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001111bool InputDispatcher::dispatchDeviceResetLocked(nsecs_t currentTime,
1112 const DeviceResetEntry& entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001113#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001114 ALOGD("dispatchDeviceReset - eventTime=%" PRId64 ", deviceId=%d", entry.eventTime,
1115 entry.deviceId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001116#endif
1117
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001118 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS, "device was reset");
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001119 options.deviceId = entry.deviceId;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001120 synthesizeCancelationEventsForAllConnectionsLocked(options);
1121 return true;
1122}
1123
Vishnu Nairad321cd2020-08-20 16:40:21 -07001124void InputDispatcher::enqueueFocusEventLocked(const sp<IBinder>& windowToken, bool hasFocus,
Vishnu Nair7d3d00d2020-08-03 11:20:42 -07001125 std::string_view reason) {
Siarhei Vishniakou850ce122020-05-26 22:39:43 -07001126 if (mPendingEvent != nullptr) {
1127 // Move the pending event to the front of the queue. This will give the chance
1128 // for the pending event to get dispatched to the newly focused window
1129 mInboundQueue.push_front(mPendingEvent);
1130 mPendingEvent = nullptr;
1131 }
1132
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001133 std::unique_ptr<FocusEntry> focusEntry =
1134 std::make_unique<FocusEntry>(mIdGenerator.nextId(), now(), windowToken, hasFocus,
1135 reason);
Siarhei Vishniakou850ce122020-05-26 22:39:43 -07001136
1137 // This event should go to the front of the queue, but behind all other focus events
1138 // Find the last focus event, and insert right after it
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001139 std::deque<std::shared_ptr<EventEntry>>::reverse_iterator it =
Siarhei Vishniakou850ce122020-05-26 22:39:43 -07001140 std::find_if(mInboundQueue.rbegin(), mInboundQueue.rend(),
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001141 [](const std::shared_ptr<EventEntry>& event) {
1142 return event->type == EventEntry::Type::FOCUS;
1143 });
Siarhei Vishniakou850ce122020-05-26 22:39:43 -07001144
1145 // Maintain the order of focus events. Insert the entry after all other focus events.
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001146 mInboundQueue.insert(it.base(), std::move(focusEntry));
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +01001147}
1148
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001149void InputDispatcher::dispatchFocusLocked(nsecs_t currentTime, std::shared_ptr<FocusEntry> entry) {
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -05001150 std::shared_ptr<InputChannel> channel = getInputChannelLocked(entry->connectionToken);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +01001151 if (channel == nullptr) {
1152 return; // Window has gone away
1153 }
1154 InputTarget target;
1155 target.inputChannel = channel;
1156 target.flags = InputTarget::FLAG_DISPATCH_AS_IS;
1157 entry->dispatchInProgress = true;
Siarhei Vishniakou887b7d92020-06-18 00:43:02 +00001158 std::string message = std::string("Focus ") + (entry->hasFocus ? "entering " : "leaving ") +
1159 channel->getName();
Vishnu Nair7d3d00d2020-08-03 11:20:42 -07001160 std::string reason = std::string("reason=").append(entry->reason);
1161 android_log_event_list(LOGTAG_INPUT_FOCUS) << message << reason << LOG_ID_EVENTS;
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +01001162 dispatchEventLocked(currentTime, entry, {target});
1163}
1164
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001165bool InputDispatcher::dispatchKeyLocked(nsecs_t currentTime, std::shared_ptr<KeyEntry> entry,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001166 DropReason* dropReason, nsecs_t* nextWakeupTime) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001167 // Preprocessing.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001168 if (!entry->dispatchInProgress) {
1169 if (entry->repeatCount == 0 && entry->action == AKEY_EVENT_ACTION_DOWN &&
1170 (entry->policyFlags & POLICY_FLAG_TRUSTED) &&
1171 (!(entry->policyFlags & POLICY_FLAG_DISABLE_KEY_REPEAT))) {
1172 if (mKeyRepeatState.lastKeyEntry &&
Chris Ye2ad95392020-09-01 13:44:44 -07001173 mKeyRepeatState.lastKeyEntry->keyCode == entry->keyCode &&
Michael Wrightd02c5b62014-02-10 15:10:22 -08001174 // We have seen two identical key downs in a row which indicates that the device
1175 // driver is automatically generating key repeats itself. We take note of the
1176 // repeat here, but we disable our own next key repeat timer since it is clear that
1177 // we will not need to synthesize key repeats ourselves.
Chris Ye2ad95392020-09-01 13:44:44 -07001178 mKeyRepeatState.lastKeyEntry->deviceId == entry->deviceId) {
1179 // Make sure we don't get key down from a different device. If a different
1180 // device Id has same key pressed down, the new device Id will replace the
1181 // current one to hold the key repeat with repeat count reset.
1182 // In the future when got a KEY_UP on the device id, drop it and do not
1183 // stop the key repeat on current device.
Michael Wrightd02c5b62014-02-10 15:10:22 -08001184 entry->repeatCount = mKeyRepeatState.lastKeyEntry->repeatCount + 1;
1185 resetKeyRepeatLocked();
1186 mKeyRepeatState.nextRepeatTime = LONG_LONG_MAX; // don't generate repeats ourselves
1187 } else {
1188 // Not a repeat. Save key down state in case we do see a repeat later.
1189 resetKeyRepeatLocked();
1190 mKeyRepeatState.nextRepeatTime = entry->eventTime + mConfig.keyRepeatTimeout;
1191 }
1192 mKeyRepeatState.lastKeyEntry = entry;
Chris Ye2ad95392020-09-01 13:44:44 -07001193 } else if (entry->action == AKEY_EVENT_ACTION_UP && mKeyRepeatState.lastKeyEntry &&
1194 mKeyRepeatState.lastKeyEntry->deviceId != entry->deviceId) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001195 // The key on device 'deviceId' is still down, do not stop key repeat
Chris Ye2ad95392020-09-01 13:44:44 -07001196#if DEBUG_INBOUND_EVENT_DETAILS
1197 ALOGD("deviceId=%d got KEY_UP as stale", entry->deviceId);
1198#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001199 } else if (!entry->syntheticRepeat) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001200 resetKeyRepeatLocked();
1201 }
1202
1203 if (entry->repeatCount == 1) {
1204 entry->flags |= AKEY_EVENT_FLAG_LONG_PRESS;
1205 } else {
1206 entry->flags &= ~AKEY_EVENT_FLAG_LONG_PRESS;
1207 }
1208
1209 entry->dispatchInProgress = true;
1210
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001211 logOutboundKeyDetails("dispatchKey - ", *entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001212 }
1213
1214 // Handle case where the policy asked us to try again later last time.
1215 if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER) {
1216 if (currentTime < entry->interceptKeyWakeupTime) {
1217 if (entry->interceptKeyWakeupTime < *nextWakeupTime) {
1218 *nextWakeupTime = entry->interceptKeyWakeupTime;
1219 }
1220 return false; // wait until next wakeup
1221 }
1222 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN;
1223 entry->interceptKeyWakeupTime = 0;
1224 }
1225
1226 // Give the policy a chance to intercept the key.
1227 if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN) {
1228 if (entry->policyFlags & POLICY_FLAG_PASS_TO_USER) {
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07001229 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
Siarhei Vishniakou49a350a2019-07-26 18:44:23 -07001230 &InputDispatcher::doInterceptKeyBeforeDispatchingLockedInterruptible);
Vishnu Nairad321cd2020-08-20 16:40:21 -07001231 sp<IBinder> focusedWindowToken =
1232 getValueByKey(mFocusedWindowTokenByDisplay, getTargetDisplayId(*entry));
Siarhei Vishniakou2b4782c2020-11-07 01:51:18 -06001233 commandEntry->connectionToken = focusedWindowToken;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001234 commandEntry->keyEntry = entry;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07001235 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001236 return false; // wait for the command to run
1237 } else {
1238 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE;
1239 }
1240 } else if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_SKIP) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -07001241 if (*dropReason == DropReason::NOT_DROPPED) {
1242 *dropReason = DropReason::POLICY;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001243 }
1244 }
1245
1246 // Clean up if dropping the event.
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -07001247 if (*dropReason != DropReason::NOT_DROPPED) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001248 setInjectionResult(*entry,
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001249 *dropReason == DropReason::POLICY ? InputEventInjectionResult::SUCCEEDED
1250 : InputEventInjectionResult::FAILED);
Garfield Tan6a5a14e2020-01-28 13:24:04 -08001251 mReporter->reportDroppedKey(entry->id);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001252 return true;
1253 }
1254
1255 // Identify targets.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001256 std::vector<InputTarget> inputTargets;
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001257 InputEventInjectionResult injectionResult =
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001258 findFocusedWindowTargetsLocked(currentTime, *entry, inputTargets, nextWakeupTime);
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001259 if (injectionResult == InputEventInjectionResult::PENDING) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001260 return false;
1261 }
1262
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001263 setInjectionResult(*entry, injectionResult);
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001264 if (injectionResult != InputEventInjectionResult::SUCCEEDED) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001265 return true;
1266 }
1267
Arthur Hung2fbf37f2018-09-13 18:16:41 +08001268 // Add monitor channels from event's or focused display.
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001269 addGlobalMonitoringTargetsLocked(inputTargets, getTargetDisplayId(*entry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001270
1271 // Dispatch the key.
1272 dispatchEventLocked(currentTime, entry, inputTargets);
1273 return true;
1274}
1275
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001276void InputDispatcher::logOutboundKeyDetails(const char* prefix, const KeyEntry& entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001277#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakoua62a8dd2018-06-08 21:17:33 +01001278 ALOGD("%seventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32 ", "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001279 "policyFlags=0x%x, action=0x%x, flags=0x%x, keyCode=0x%x, scanCode=0x%x, "
1280 "metaState=0x%x, repeatCount=%d, downTime=%" PRId64,
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001281 prefix, entry.eventTime, entry.deviceId, entry.source, entry.displayId, entry.policyFlags,
1282 entry.action, entry.flags, entry.keyCode, entry.scanCode, entry.metaState,
1283 entry.repeatCount, entry.downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001284#endif
1285}
1286
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001287bool InputDispatcher::dispatchMotionLocked(nsecs_t currentTime, std::shared_ptr<MotionEntry> entry,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001288 DropReason* dropReason, nsecs_t* nextWakeupTime) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001289 ATRACE_CALL();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001290 // Preprocessing.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001291 if (!entry->dispatchInProgress) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001292 entry->dispatchInProgress = true;
1293
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001294 logOutboundMotionDetails("dispatchMotion - ", *entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001295 }
1296
1297 // Clean up if dropping the event.
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -07001298 if (*dropReason != DropReason::NOT_DROPPED) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001299 setInjectionResult(*entry,
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001300 *dropReason == DropReason::POLICY ? InputEventInjectionResult::SUCCEEDED
1301 : InputEventInjectionResult::FAILED);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001302 return true;
1303 }
1304
1305 bool isPointerEvent = entry->source & AINPUT_SOURCE_CLASS_POINTER;
1306
1307 // Identify targets.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001308 std::vector<InputTarget> inputTargets;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001309
1310 bool conflictingPointerActions = false;
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001311 InputEventInjectionResult injectionResult;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001312 if (isPointerEvent) {
1313 // Pointer event. (eg. touchscreen)
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001314 injectionResult =
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001315 findTouchedWindowTargetsLocked(currentTime, *entry, inputTargets, nextWakeupTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001316 &conflictingPointerActions);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001317 } else {
1318 // Non touch event. (eg. trackball)
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001319 injectionResult =
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001320 findFocusedWindowTargetsLocked(currentTime, *entry, inputTargets, nextWakeupTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001321 }
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001322 if (injectionResult == InputEventInjectionResult::PENDING) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001323 return false;
1324 }
1325
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001326 setInjectionResult(*entry, injectionResult);
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001327 if (injectionResult == InputEventInjectionResult::PERMISSION_DENIED) {
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07001328 ALOGW("Permission denied, dropping the motion (isPointer=%s)", toString(isPointerEvent));
1329 return true;
1330 }
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001331 if (injectionResult != InputEventInjectionResult::SUCCEEDED) {
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07001332 CancelationOptions::Mode mode(isPointerEvent
1333 ? CancelationOptions::CANCEL_POINTER_EVENTS
1334 : CancelationOptions::CANCEL_NON_POINTER_EVENTS);
1335 CancelationOptions options(mode, "input event injection failed");
1336 synthesizeCancelationEventsForMonitorsLocked(options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001337 return true;
1338 }
1339
Arthur Hung2fbf37f2018-09-13 18:16:41 +08001340 // Add monitor channels from event's or focused display.
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001341 addGlobalMonitoringTargetsLocked(inputTargets, getTargetDisplayId(*entry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001342
Tiger Huang85b8c5e2019-01-17 18:34:54 +08001343 if (isPointerEvent) {
Siarhei Vishniakou4700f822020-03-24 19:05:54 -07001344 std::unordered_map<int32_t, TouchState>::iterator it =
1345 mTouchStatesByDisplay.find(entry->displayId);
1346 if (it != mTouchStatesByDisplay.end()) {
1347 const TouchState& state = it->second;
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001348 if (!state.portalWindows.empty()) {
Tiger Huang85b8c5e2019-01-17 18:34:54 +08001349 // The event has gone through these portal windows, so we add monitoring targets of
1350 // the corresponding displays as well.
1351 for (size_t i = 0; i < state.portalWindows.size(); i++) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001352 const InputWindowInfo* windowInfo = state.portalWindows[i]->getInfo();
Michael Wright3dd60e22019-03-27 22:06:44 +00001353 addGlobalMonitoringTargetsLocked(inputTargets, windowInfo->portalToDisplayId,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001354 -windowInfo->frameLeft, -windowInfo->frameTop);
Tiger Huang85b8c5e2019-01-17 18:34:54 +08001355 }
1356 }
1357 }
1358 }
1359
Michael Wrightd02c5b62014-02-10 15:10:22 -08001360 // Dispatch the motion.
1361 if (conflictingPointerActions) {
1362 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001363 "conflicting pointer actions");
Michael Wrightd02c5b62014-02-10 15:10:22 -08001364 synthesizeCancelationEventsForAllConnectionsLocked(options);
1365 }
1366 dispatchEventLocked(currentTime, entry, inputTargets);
1367 return true;
1368}
1369
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001370void InputDispatcher::logOutboundMotionDetails(const char* prefix, const MotionEntry& entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001371#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakou777a10b2018-01-31 16:45:06 -08001372 ALOGD("%seventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001373 ", policyFlags=0x%x, "
1374 "action=0x%x, actionButton=0x%x, flags=0x%x, "
1375 "metaState=0x%x, buttonState=0x%x,"
1376 "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, downTime=%" PRId64,
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001377 prefix, entry.eventTime, entry.deviceId, entry.source, entry.displayId, entry.policyFlags,
1378 entry.action, entry.actionButton, entry.flags, entry.metaState, entry.buttonState,
1379 entry.edgeFlags, entry.xPrecision, entry.yPrecision, entry.downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001380
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001381 for (uint32_t i = 0; i < entry.pointerCount; i++) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001382 ALOGD(" Pointer %d: id=%d, toolType=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001383 "x=%f, y=%f, pressure=%f, size=%f, "
1384 "touchMajor=%f, touchMinor=%f, toolMajor=%f, toolMinor=%f, "
1385 "orientation=%f",
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001386 i, entry.pointerProperties[i].id, entry.pointerProperties[i].toolType,
1387 entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_X),
1388 entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_Y),
1389 entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_PRESSURE),
1390 entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_SIZE),
1391 entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR),
1392 entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR),
1393 entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR),
1394 entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR),
1395 entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001396 }
1397#endif
1398}
1399
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07001400void InputDispatcher::dispatchEventLocked(nsecs_t currentTime,
1401 std::shared_ptr<EventEntry> eventEntry,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001402 const std::vector<InputTarget>& inputTargets) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001403 ATRACE_CALL();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001404#if DEBUG_DISPATCH_CYCLE
1405 ALOGD("dispatchEventToCurrentInputTargets");
1406#endif
1407
Siarhei Vishniakou887b7d92020-06-18 00:43:02 +00001408 updateInteractionTokensLocked(*eventEntry, inputTargets);
1409
Michael Wrightd02c5b62014-02-10 15:10:22 -08001410 ALOG_ASSERT(eventEntry->dispatchInProgress); // should already have been set to true
1411
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001412 pokeUserActivityLocked(*eventEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001413
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001414 for (const InputTarget& inputTarget : inputTargets) {
Siarhei Vishniakou26d3cfb2019-10-15 17:02:32 -07001415 sp<Connection> connection =
1416 getConnectionLocked(inputTarget.inputChannel->getConnectionToken());
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07001417 if (connection != nullptr) {
Siarhei Vishniakou5d6b6612020-01-08 16:03:04 -08001418 prepareDispatchCycleLocked(currentTime, connection, eventEntry, inputTarget);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001419 } else {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001420 if (DEBUG_FOCUS) {
1421 ALOGD("Dropping event delivery to target with channel '%s' because it "
1422 "is no longer registered with the input dispatcher.",
1423 inputTarget.inputChannel->getName().c_str());
1424 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001425 }
1426 }
1427}
1428
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001429void InputDispatcher::cancelEventsForAnrLocked(const sp<Connection>& connection) {
1430 // We will not be breaking any connections here, even if the policy wants us to abort dispatch.
1431 // If the policy decides to close the app, we will get a channel removal event via
1432 // unregisterInputChannel, and will clean up the connection that way. We are already not
1433 // sending new pointers to the connection when it blocked, but focused events will continue to
1434 // pile up.
1435 ALOGW("Canceling events for %s because it is unresponsive",
1436 connection->inputChannel->getName().c_str());
1437 if (connection->status == Connection::STATUS_NORMAL) {
1438 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS,
1439 "application not responding");
1440 synthesizeCancelationEventsForConnectionLocked(connection, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001441 }
1442}
1443
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001444void InputDispatcher::resetNoFocusedWindowTimeoutLocked() {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001445 if (DEBUG_FOCUS) {
1446 ALOGD("Resetting ANR timeouts.");
1447 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001448
1449 // Reset input target wait timeout.
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001450 mNoFocusedWindowTimeoutTime = std::nullopt;
Chris Yea209fde2020-07-22 13:54:51 -07001451 mAwaitedFocusedApplication.reset();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001452}
1453
Tiger Huang721e26f2018-07-24 22:26:19 +08001454/**
1455 * Get the display id that the given event should go to. If this event specifies a valid display id,
1456 * then it should be dispatched to that display. Otherwise, the event goes to the focused display.
1457 * Focused display is the display that the user most recently interacted with.
1458 */
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001459int32_t InputDispatcher::getTargetDisplayId(const EventEntry& entry) {
Tiger Huang721e26f2018-07-24 22:26:19 +08001460 int32_t displayId;
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001461 switch (entry.type) {
Siarhei Vishniakou49483272019-10-22 13:13:47 -07001462 case EventEntry::Type::KEY: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001463 const KeyEntry& keyEntry = static_cast<const KeyEntry&>(entry);
1464 displayId = keyEntry.displayId;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001465 break;
1466 }
Siarhei Vishniakou49483272019-10-22 13:13:47 -07001467 case EventEntry::Type::MOTION: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001468 const MotionEntry& motionEntry = static_cast<const MotionEntry&>(entry);
1469 displayId = motionEntry.displayId;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001470 break;
1471 }
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +01001472 case EventEntry::Type::FOCUS:
Siarhei Vishniakou49483272019-10-22 13:13:47 -07001473 case EventEntry::Type::CONFIGURATION_CHANGED:
1474 case EventEntry::Type::DEVICE_RESET: {
1475 ALOGE("%s events do not have a target display", EventEntry::typeToString(entry.type));
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001476 return ADISPLAY_ID_NONE;
1477 }
Tiger Huang721e26f2018-07-24 22:26:19 +08001478 }
1479 return displayId == ADISPLAY_ID_NONE ? mFocusedDisplayId : displayId;
1480}
1481
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001482bool InputDispatcher::shouldWaitToSendKeyLocked(nsecs_t currentTime,
1483 const char* focusedWindowName) {
1484 if (mAnrTracker.empty()) {
1485 // already processed all events that we waited for
1486 mKeyIsWaitingForEventsTimeout = std::nullopt;
1487 return false;
1488 }
1489
1490 if (!mKeyIsWaitingForEventsTimeout.has_value()) {
1491 // Start the timer
1492 ALOGD("Waiting to send key to %s because there are unprocessed events that may cause "
1493 "focus to change",
1494 focusedWindowName);
Siarhei Vishniakou70622952020-07-30 11:17:23 -05001495 mKeyIsWaitingForEventsTimeout = currentTime +
1496 std::chrono::duration_cast<std::chrono::nanoseconds>(KEY_WAITING_FOR_EVENTS_TIMEOUT)
1497 .count();
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001498 return true;
1499 }
1500
1501 // We still have pending events, and already started the timer
1502 if (currentTime < *mKeyIsWaitingForEventsTimeout) {
1503 return true; // Still waiting
1504 }
1505
1506 // Waited too long, and some connection still hasn't processed all motions
1507 // Just send the key to the focused window
1508 ALOGW("Dispatching key to %s even though there are other unprocessed events",
1509 focusedWindowName);
1510 mKeyIsWaitingForEventsTimeout = std::nullopt;
1511 return false;
1512}
1513
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001514InputEventInjectionResult InputDispatcher::findFocusedWindowTargetsLocked(
1515 nsecs_t currentTime, const EventEntry& entry, std::vector<InputTarget>& inputTargets,
1516 nsecs_t* nextWakeupTime) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001517 std::string reason;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001518
Tiger Huang721e26f2018-07-24 22:26:19 +08001519 int32_t displayId = getTargetDisplayId(entry);
Vishnu Nairad321cd2020-08-20 16:40:21 -07001520 sp<InputWindowHandle> focusedWindowHandle = getFocusedWindowHandleLocked(displayId);
Chris Yea209fde2020-07-22 13:54:51 -07001521 std::shared_ptr<InputApplicationHandle> focusedApplicationHandle =
Tiger Huang721e26f2018-07-24 22:26:19 +08001522 getValueByKey(mFocusedApplicationHandlesByDisplay, displayId);
1523
Michael Wrightd02c5b62014-02-10 15:10:22 -08001524 // If there is no currently focused window and no focused application
1525 // then drop the event.
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001526 if (focusedWindowHandle == nullptr && focusedApplicationHandle == nullptr) {
1527 ALOGI("Dropping %s event because there is no focused window or focused application in "
1528 "display %" PRId32 ".",
1529 EventEntry::typeToString(entry.type), displayId);
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001530 return InputEventInjectionResult::FAILED;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001531 }
1532
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001533 // Compatibility behavior: raise ANR if there is a focused application, but no focused window.
1534 // Only start counting when we have a focused event to dispatch. The ANR is canceled if we
1535 // start interacting with another application via touch (app switch). This code can be removed
1536 // if the "no focused window ANR" is moved to the policy. Input doesn't know whether
1537 // an app is expected to have a focused window.
1538 if (focusedWindowHandle == nullptr && focusedApplicationHandle != nullptr) {
1539 if (!mNoFocusedWindowTimeoutTime.has_value()) {
1540 // We just discovered that there's no focused window. Start the ANR timer
Siarhei Vishniakouc1ae5562020-06-30 14:22:57 -05001541 std::chrono::nanoseconds timeout = focusedApplicationHandle->getDispatchingTimeout(
1542 DEFAULT_INPUT_DISPATCHING_TIMEOUT);
1543 mNoFocusedWindowTimeoutTime = currentTime + timeout.count();
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001544 mAwaitedFocusedApplication = focusedApplicationHandle;
Siarhei Vishniakouf56b2692020-09-08 19:43:33 -05001545 mAwaitedApplicationDisplayId = displayId;
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001546 ALOGW("Waiting because no window has focus but %s may eventually add a "
1547 "window when it finishes starting up. Will wait for %" PRId64 "ms",
Siarhei Vishniakouc1ae5562020-06-30 14:22:57 -05001548 mAwaitedFocusedApplication->getName().c_str(), millis(timeout));
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001549 *nextWakeupTime = *mNoFocusedWindowTimeoutTime;
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001550 return InputEventInjectionResult::PENDING;
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001551 } else if (currentTime > *mNoFocusedWindowTimeoutTime) {
1552 // Already raised ANR. Drop the event
1553 ALOGE("Dropping %s event because there is no focused window",
1554 EventEntry::typeToString(entry.type));
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001555 return InputEventInjectionResult::FAILED;
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001556 } else {
1557 // Still waiting for the focused window
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001558 return InputEventInjectionResult::PENDING;
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001559 }
1560 }
1561
1562 // we have a valid, non-null focused window
1563 resetNoFocusedWindowTimeoutLocked();
1564
Michael Wrightd02c5b62014-02-10 15:10:22 -08001565 // Check permissions.
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001566 if (!checkInjectionPermission(focusedWindowHandle, entry.injectionState)) {
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001567 return InputEventInjectionResult::PERMISSION_DENIED;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001568 }
1569
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001570 if (focusedWindowHandle->getInfo()->paused) {
1571 ALOGI("Waiting because %s is paused", focusedWindowHandle->getName().c_str());
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001572 return InputEventInjectionResult::PENDING;
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001573 }
1574
1575 // If the event is a key event, then we must wait for all previous events to
1576 // complete before delivering it because previous events may have the
1577 // side-effect of transferring focus to a different window and we want to
1578 // ensure that the following keys are sent to the new window.
1579 //
1580 // Suppose the user touches a button in a window then immediately presses "A".
1581 // If the button causes a pop-up window to appear then we want to ensure that
1582 // the "A" key is delivered to the new pop-up window. This is because users
1583 // often anticipate pending UI changes when typing on a keyboard.
1584 // To obtain this behavior, we must serialize key events with respect to all
1585 // prior input events.
1586 if (entry.type == EventEntry::Type::KEY) {
1587 if (shouldWaitToSendKeyLocked(currentTime, focusedWindowHandle->getName().c_str())) {
1588 *nextWakeupTime = *mKeyIsWaitingForEventsTimeout;
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001589 return InputEventInjectionResult::PENDING;
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001590 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001591 }
1592
1593 // Success! Output targets.
Tiger Huang721e26f2018-07-24 22:26:19 +08001594 addWindowTargetLocked(focusedWindowHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001595 InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_DISPATCH_AS_IS,
1596 BitSet32(0), inputTargets);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001597
1598 // Done.
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001599 return InputEventInjectionResult::SUCCEEDED;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001600}
1601
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001602/**
1603 * Given a list of monitors, remove the ones we cannot find a connection for, and the ones
1604 * that are currently unresponsive.
1605 */
1606std::vector<TouchedMonitor> InputDispatcher::selectResponsiveMonitorsLocked(
1607 const std::vector<TouchedMonitor>& monitors) const {
1608 std::vector<TouchedMonitor> responsiveMonitors;
1609 std::copy_if(monitors.begin(), monitors.end(), std::back_inserter(responsiveMonitors),
1610 [this](const TouchedMonitor& monitor) REQUIRES(mLock) {
1611 sp<Connection> connection = getConnectionLocked(
1612 monitor.monitor.inputChannel->getConnectionToken());
1613 if (connection == nullptr) {
1614 ALOGE("Could not find connection for monitor %s",
1615 monitor.monitor.inputChannel->getName().c_str());
1616 return false;
1617 }
1618 if (!connection->responsive) {
1619 ALOGW("Unresponsive monitor %s will not get the new gesture",
1620 connection->inputChannel->getName().c_str());
1621 return false;
1622 }
1623 return true;
1624 });
1625 return responsiveMonitors;
1626}
1627
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001628InputEventInjectionResult InputDispatcher::findTouchedWindowTargetsLocked(
1629 nsecs_t currentTime, const MotionEntry& entry, std::vector<InputTarget>& inputTargets,
1630 nsecs_t* nextWakeupTime, bool* outConflictingPointerActions) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001631 ATRACE_CALL();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001632 enum InjectionPermission {
1633 INJECTION_PERMISSION_UNKNOWN,
1634 INJECTION_PERMISSION_GRANTED,
1635 INJECTION_PERMISSION_DENIED
1636 };
1637
Michael Wrightd02c5b62014-02-10 15:10:22 -08001638 // For security reasons, we defer updating the touch state until we are sure that
1639 // event injection will be allowed.
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001640 int32_t displayId = entry.displayId;
1641 int32_t action = entry.action;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001642 int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK;
1643
1644 // Update the touch state as needed based on the properties of the touch event.
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001645 InputEventInjectionResult injectionResult = InputEventInjectionResult::PENDING;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001646 InjectionPermission injectionPermission = INJECTION_PERMISSION_UNKNOWN;
Garfield Tandf26e862020-07-01 20:18:19 -07001647 sp<InputWindowHandle> newHoverWindowHandle(mLastHoverWindowHandle);
1648 sp<InputWindowHandle> newTouchedWindowHandle;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001649
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001650 // Copy current touch state into tempTouchState.
1651 // This state will be used to update mTouchStatesByDisplay at the end of this function.
1652 // If no state for the specified display exists, then our initial state will be empty.
Yi Kong9b14ac62018-07-17 13:48:38 -07001653 const TouchState* oldState = nullptr;
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001654 TouchState tempTouchState;
Siarhei Vishniakou4700f822020-03-24 19:05:54 -07001655 std::unordered_map<int32_t, TouchState>::iterator oldStateIt =
1656 mTouchStatesByDisplay.find(displayId);
1657 if (oldStateIt != mTouchStatesByDisplay.end()) {
1658 oldState = &(oldStateIt->second);
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001659 tempTouchState.copyFrom(*oldState);
Jeff Brownf086ddb2014-02-11 14:28:48 -08001660 }
1661
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001662 bool isSplit = tempTouchState.split;
1663 bool switchedDevice = tempTouchState.deviceId >= 0 && tempTouchState.displayId >= 0 &&
1664 (tempTouchState.deviceId != entry.deviceId || tempTouchState.source != entry.source ||
1665 tempTouchState.displayId != displayId);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001666 bool isHoverAction = (maskedAction == AMOTION_EVENT_ACTION_HOVER_MOVE ||
1667 maskedAction == AMOTION_EVENT_ACTION_HOVER_ENTER ||
1668 maskedAction == AMOTION_EVENT_ACTION_HOVER_EXIT);
1669 bool newGesture = (maskedAction == AMOTION_EVENT_ACTION_DOWN ||
1670 maskedAction == AMOTION_EVENT_ACTION_SCROLL || isHoverAction);
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001671 const bool isFromMouse = entry.source == AINPUT_SOURCE_MOUSE;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001672 bool wrongDevice = false;
1673 if (newGesture) {
1674 bool down = maskedAction == AMOTION_EVENT_ACTION_DOWN;
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001675 if (switchedDevice && tempTouchState.down && !down && !isHoverAction) {
Siarhei Vishniakouf0007dd2020-04-13 11:40:37 -07001676 ALOGI("Dropping event because a pointer for a different device is already down "
1677 "in display %" PRId32,
1678 displayId);
Kevin Schoedel1eb587b2017-05-03 13:58:56 -04001679 // TODO: test multiple simultaneous input streams.
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001680 injectionResult = InputEventInjectionResult::FAILED;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001681 switchedDevice = false;
1682 wrongDevice = true;
1683 goto Failed;
1684 }
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001685 tempTouchState.reset();
1686 tempTouchState.down = down;
1687 tempTouchState.deviceId = entry.deviceId;
1688 tempTouchState.source = entry.source;
1689 tempTouchState.displayId = displayId;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001690 isSplit = false;
Kevin Schoedel1eb587b2017-05-03 13:58:56 -04001691 } else if (switchedDevice && maskedAction == AMOTION_EVENT_ACTION_MOVE) {
Siarhei Vishniakouf0007dd2020-04-13 11:40:37 -07001692 ALOGI("Dropping move event because a pointer for a different device is already active "
1693 "in display %" PRId32,
1694 displayId);
Kevin Schoedel1eb587b2017-05-03 13:58:56 -04001695 // TODO: test multiple simultaneous input streams.
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001696 injectionResult = InputEventInjectionResult::PERMISSION_DENIED;
Kevin Schoedel1eb587b2017-05-03 13:58:56 -04001697 switchedDevice = false;
1698 wrongDevice = true;
1699 goto Failed;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001700 }
1701
1702 if (newGesture || (isSplit && maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN)) {
1703 /* Case 1: New splittable pointer going down, or need target for hover or scroll. */
1704
Garfield Tan00f511d2019-06-12 16:55:40 -07001705 int32_t x;
1706 int32_t y;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001707 int32_t pointerIndex = getMotionEventActionPointerIndex(action);
Garfield Tan00f511d2019-06-12 16:55:40 -07001708 // Always dispatch mouse events to cursor position.
1709 if (isFromMouse) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001710 x = int32_t(entry.xCursorPosition);
1711 y = int32_t(entry.yCursorPosition);
Garfield Tan00f511d2019-06-12 16:55:40 -07001712 } else {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001713 x = int32_t(entry.pointerCoords[pointerIndex].getAxisValue(AMOTION_EVENT_AXIS_X));
1714 y = int32_t(entry.pointerCoords[pointerIndex].getAxisValue(AMOTION_EVENT_AXIS_Y));
Garfield Tan00f511d2019-06-12 16:55:40 -07001715 }
Michael Wright3dd60e22019-03-27 22:06:44 +00001716 bool isDown = maskedAction == AMOTION_EVENT_ACTION_DOWN;
Garfield Tandf26e862020-07-01 20:18:19 -07001717 newTouchedWindowHandle =
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001718 findTouchedWindowAtLocked(displayId, x, y, &tempTouchState,
1719 isDown /*addOutsideTargets*/, true /*addPortalWindows*/);
Michael Wright3dd60e22019-03-27 22:06:44 +00001720
1721 std::vector<TouchedMonitor> newGestureMonitors = isDown
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001722 ? findTouchedGestureMonitorsLocked(displayId, tempTouchState.portalWindows)
Michael Wright3dd60e22019-03-27 22:06:44 +00001723 : std::vector<TouchedMonitor>{};
Michael Wrightd02c5b62014-02-10 15:10:22 -08001724
Michael Wrightd02c5b62014-02-10 15:10:22 -08001725 // Figure out whether splitting will be allowed for this window.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001726 if (newTouchedWindowHandle != nullptr &&
1727 newTouchedWindowHandle->getInfo()->supportsSplitTouch()) {
Garfield Tanaddb02b2019-06-25 16:36:13 -07001728 // New window supports splitting, but we should never split mouse events.
1729 isSplit = !isFromMouse;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001730 } else if (isSplit) {
1731 // New window does not support splitting but we have already split events.
1732 // Ignore the new window.
Yi Kong9b14ac62018-07-17 13:48:38 -07001733 newTouchedWindowHandle = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001734 }
1735
1736 // Handle the case where we did not find a window.
Yi Kong9b14ac62018-07-17 13:48:38 -07001737 if (newTouchedWindowHandle == nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001738 // Try to assign the pointer to the first foreground window we find, if there is one.
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001739 newTouchedWindowHandle = tempTouchState.getFirstForegroundWindowHandle();
Michael Wright3dd60e22019-03-27 22:06:44 +00001740 }
1741
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001742 if (newTouchedWindowHandle != nullptr && newTouchedWindowHandle->getInfo()->paused) {
1743 ALOGI("Not sending touch event to %s because it is paused",
1744 newTouchedWindowHandle->getName().c_str());
1745 newTouchedWindowHandle = nullptr;
1746 }
1747
Siarhei Vishniakoua2862a02020-07-20 16:36:46 -05001748 // Ensure the window has a connection and the connection is responsive
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001749 if (newTouchedWindowHandle != nullptr) {
Siarhei Vishniakoua2862a02020-07-20 16:36:46 -05001750 const bool isResponsive = hasResponsiveConnectionLocked(*newTouchedWindowHandle);
1751 if (!isResponsive) {
1752 ALOGW("%s will not receive the new gesture at %" PRIu64,
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001753 newTouchedWindowHandle->getName().c_str(), entry.eventTime);
1754 newTouchedWindowHandle = nullptr;
1755 }
1756 }
1757
Bernardo Rufinoea97d182020-08-19 14:43:14 +01001758 // Drop events that can't be trusted due to occlusion
1759 if (newTouchedWindowHandle != nullptr &&
1760 mBlockUntrustedTouchesMode != BlockUntrustedTouchesMode::DISABLED) {
1761 TouchOcclusionInfo occlusionInfo =
1762 computeTouchOcclusionInfoLocked(newTouchedWindowHandle, x, y);
Bernardo Rufino2e1f6512020-10-08 13:42:07 +00001763 if (!isTouchTrustedLocked(occlusionInfo)) {
Bernardo Rufino4bae0ac2020-10-14 18:33:46 +00001764 if (DEBUG_TOUCH_OCCLUSION) {
1765 ALOGD("Stack of obscuring windows during untrusted touch (%d, %d):", x, y);
1766 for (const auto& log : occlusionInfo.debugInfo) {
1767 ALOGD("%s", log.c_str());
1768 }
1769 }
Bernardo Rufino2e1f6512020-10-08 13:42:07 +00001770 onUntrustedTouchLocked(occlusionInfo.obscuringPackage);
1771 if (mBlockUntrustedTouchesMode == BlockUntrustedTouchesMode::BLOCK) {
1772 ALOGW("Dropping untrusted touch event due to %s/%d",
1773 occlusionInfo.obscuringPackage.c_str(), occlusionInfo.obscuringUid);
1774 newTouchedWindowHandle = nullptr;
1775 }
Bernardo Rufinoea97d182020-08-19 14:43:14 +01001776 }
1777 }
1778
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001779 // Also don't send the new touch event to unresponsive gesture monitors
1780 newGestureMonitors = selectResponsiveMonitorsLocked(newGestureMonitors);
1781
Michael Wright3dd60e22019-03-27 22:06:44 +00001782 if (newTouchedWindowHandle == nullptr && newGestureMonitors.empty()) {
1783 ALOGI("Dropping event because there is no touchable window or gesture monitor at "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001784 "(%d, %d) in display %" PRId32 ".",
1785 x, y, displayId);
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001786 injectionResult = InputEventInjectionResult::FAILED;
Michael Wright3dd60e22019-03-27 22:06:44 +00001787 goto Failed;
1788 }
1789
1790 if (newTouchedWindowHandle != nullptr) {
1791 // Set target flags.
1792 int32_t targetFlags = InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_DISPATCH_AS_IS;
1793 if (isSplit) {
1794 targetFlags |= InputTarget::FLAG_SPLIT;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001795 }
Michael Wright3dd60e22019-03-27 22:06:44 +00001796 if (isWindowObscuredAtPointLocked(newTouchedWindowHandle, x, y)) {
1797 targetFlags |= InputTarget::FLAG_WINDOW_IS_OBSCURED;
1798 } else if (isWindowObscuredLocked(newTouchedWindowHandle)) {
1799 targetFlags |= InputTarget::FLAG_WINDOW_IS_PARTIALLY_OBSCURED;
1800 }
1801
1802 // Update hover state.
Garfield Tandf26e862020-07-01 20:18:19 -07001803 if (maskedAction == AMOTION_EVENT_ACTION_HOVER_EXIT) {
1804 newHoverWindowHandle = nullptr;
1805 } else if (isHoverAction) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001806 newHoverWindowHandle = newTouchedWindowHandle;
Michael Wright3dd60e22019-03-27 22:06:44 +00001807 }
1808
1809 // Update the temporary touch state.
1810 BitSet32 pointerIds;
1811 if (isSplit) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001812 uint32_t pointerId = entry.pointerProperties[pointerIndex].id;
Michael Wright3dd60e22019-03-27 22:06:44 +00001813 pointerIds.markBit(pointerId);
1814 }
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001815 tempTouchState.addOrUpdateWindow(newTouchedWindowHandle, targetFlags, pointerIds);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001816 }
1817
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001818 tempTouchState.addGestureMonitors(newGestureMonitors);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001819 } else {
1820 /* Case 2: Pointer move, up, cancel or non-splittable pointer down. */
1821
1822 // If the pointer is not currently down, then ignore the event.
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001823 if (!tempTouchState.down) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001824 if (DEBUG_FOCUS) {
1825 ALOGD("Dropping event because the pointer is not down or we previously "
1826 "dropped the pointer down event in display %" PRId32,
1827 displayId);
1828 }
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001829 injectionResult = InputEventInjectionResult::FAILED;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001830 goto Failed;
1831 }
1832
1833 // Check whether touches should slip outside of the current foreground window.
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001834 if (maskedAction == AMOTION_EVENT_ACTION_MOVE && entry.pointerCount == 1 &&
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001835 tempTouchState.isSlippery()) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001836 int32_t x = int32_t(entry.pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X));
1837 int32_t y = int32_t(entry.pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001838
1839 sp<InputWindowHandle> oldTouchedWindowHandle =
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001840 tempTouchState.getFirstForegroundWindowHandle();
Garfield Tandf26e862020-07-01 20:18:19 -07001841 newTouchedWindowHandle = findTouchedWindowAtLocked(displayId, x, y, &tempTouchState);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001842 if (oldTouchedWindowHandle != newTouchedWindowHandle &&
1843 oldTouchedWindowHandle != nullptr && newTouchedWindowHandle != nullptr) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001844 if (DEBUG_FOCUS) {
1845 ALOGD("Touch is slipping out of window %s into window %s in display %" PRId32,
1846 oldTouchedWindowHandle->getName().c_str(),
1847 newTouchedWindowHandle->getName().c_str(), displayId);
1848 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001849 // Make a slippery exit from the old window.
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001850 tempTouchState.addOrUpdateWindow(oldTouchedWindowHandle,
1851 InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT,
1852 BitSet32(0));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001853
1854 // Make a slippery entrance into the new window.
1855 if (newTouchedWindowHandle->getInfo()->supportsSplitTouch()) {
1856 isSplit = true;
1857 }
1858
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001859 int32_t targetFlags =
1860 InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001861 if (isSplit) {
1862 targetFlags |= InputTarget::FLAG_SPLIT;
1863 }
1864 if (isWindowObscuredAtPointLocked(newTouchedWindowHandle, x, y)) {
1865 targetFlags |= InputTarget::FLAG_WINDOW_IS_OBSCURED;
1866 }
1867
1868 BitSet32 pointerIds;
1869 if (isSplit) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001870 pointerIds.markBit(entry.pointerProperties[0].id);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001871 }
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001872 tempTouchState.addOrUpdateWindow(newTouchedWindowHandle, targetFlags, pointerIds);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001873 }
1874 }
1875 }
1876
1877 if (newHoverWindowHandle != mLastHoverWindowHandle) {
Garfield Tandf26e862020-07-01 20:18:19 -07001878 // Let the previous window know that the hover sequence is over, unless we already did it
1879 // when dispatching it as is to newTouchedWindowHandle.
1880 if (mLastHoverWindowHandle != nullptr &&
1881 (maskedAction != AMOTION_EVENT_ACTION_HOVER_EXIT ||
1882 mLastHoverWindowHandle != newTouchedWindowHandle)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001883#if DEBUG_HOVER
1884 ALOGD("Sending hover exit event to window %s.",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001885 mLastHoverWindowHandle->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001886#endif
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001887 tempTouchState.addOrUpdateWindow(mLastHoverWindowHandle,
1888 InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT, BitSet32(0));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001889 }
1890
Garfield Tandf26e862020-07-01 20:18:19 -07001891 // Let the new window know that the hover sequence is starting, unless we already did it
1892 // when dispatching it as is to newTouchedWindowHandle.
1893 if (newHoverWindowHandle != nullptr &&
1894 (maskedAction != AMOTION_EVENT_ACTION_HOVER_ENTER ||
1895 newHoverWindowHandle != newTouchedWindowHandle)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001896#if DEBUG_HOVER
1897 ALOGD("Sending hover enter event to window %s.",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001898 newHoverWindowHandle->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001899#endif
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001900 tempTouchState.addOrUpdateWindow(newHoverWindowHandle,
1901 InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER,
1902 BitSet32(0));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001903 }
1904 }
1905
1906 // Check permission to inject into all touched foreground windows and ensure there
1907 // is at least one touched foreground window.
1908 {
1909 bool haveForegroundWindow = false;
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001910 for (const TouchedWindow& touchedWindow : tempTouchState.windows) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001911 if (touchedWindow.targetFlags & InputTarget::FLAG_FOREGROUND) {
1912 haveForegroundWindow = true;
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001913 if (!checkInjectionPermission(touchedWindow.windowHandle, entry.injectionState)) {
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001914 injectionResult = InputEventInjectionResult::PERMISSION_DENIED;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001915 injectionPermission = INJECTION_PERMISSION_DENIED;
1916 goto Failed;
1917 }
1918 }
1919 }
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001920 bool hasGestureMonitor = !tempTouchState.gestureMonitors.empty();
Michael Wright3dd60e22019-03-27 22:06:44 +00001921 if (!haveForegroundWindow && !hasGestureMonitor) {
Siarhei Vishniakouf0007dd2020-04-13 11:40:37 -07001922 ALOGI("Dropping event because there is no touched foreground window in display "
1923 "%" PRId32 " or gesture monitor to receive it.",
1924 displayId);
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001925 injectionResult = InputEventInjectionResult::FAILED;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001926 goto Failed;
1927 }
1928
1929 // Permission granted to injection into all touched foreground windows.
1930 injectionPermission = INJECTION_PERMISSION_GRANTED;
1931 }
1932
1933 // Check whether windows listening for outside touches are owned by the same UID. If it is
1934 // set the policy flag that we will not reveal coordinate information to this window.
1935 if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
1936 sp<InputWindowHandle> foregroundWindowHandle =
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001937 tempTouchState.getFirstForegroundWindowHandle();
Michael Wright3dd60e22019-03-27 22:06:44 +00001938 if (foregroundWindowHandle) {
1939 const int32_t foregroundWindowUid = foregroundWindowHandle->getInfo()->ownerUid;
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001940 for (const TouchedWindow& touchedWindow : tempTouchState.windows) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001941 if (touchedWindow.targetFlags & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) {
1942 sp<InputWindowHandle> inputWindowHandle = touchedWindow.windowHandle;
1943 if (inputWindowHandle->getInfo()->ownerUid != foregroundWindowUid) {
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001944 tempTouchState.addOrUpdateWindow(inputWindowHandle,
1945 InputTarget::FLAG_ZERO_COORDS,
1946 BitSet32(0));
Michael Wright3dd60e22019-03-27 22:06:44 +00001947 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001948 }
1949 }
1950 }
1951 }
1952
Michael Wrightd02c5b62014-02-10 15:10:22 -08001953 // If this is the first pointer going down and the touched window has a wallpaper
1954 // then also add the touched wallpaper windows so they are locked in for the duration
1955 // of the touch gesture.
1956 // We do not collect wallpapers during HOVER_MOVE or SCROLL because the wallpaper
1957 // engine only supports touch events. We would need to add a mechanism similar
1958 // to View.onGenericMotionEvent to enable wallpapers to handle these events.
1959 if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
1960 sp<InputWindowHandle> foregroundWindowHandle =
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001961 tempTouchState.getFirstForegroundWindowHandle();
Michael Wright3dd60e22019-03-27 22:06:44 +00001962 if (foregroundWindowHandle && foregroundWindowHandle->getInfo()->hasWallpaper) {
Vishnu Nairad321cd2020-08-20 16:40:21 -07001963 const std::vector<sp<InputWindowHandle>>& windowHandles =
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001964 getWindowHandlesLocked(displayId);
1965 for (const sp<InputWindowHandle>& windowHandle : windowHandles) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001966 const InputWindowInfo* info = windowHandle->getInfo();
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001967 if (info->displayId == displayId &&
Michael Wright44753b12020-07-08 13:48:11 +01001968 windowHandle->getInfo()->type == InputWindowInfo::Type::WALLPAPER) {
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001969 tempTouchState
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001970 .addOrUpdateWindow(windowHandle,
1971 InputTarget::FLAG_WINDOW_IS_OBSCURED |
1972 InputTarget::
1973 FLAG_WINDOW_IS_PARTIALLY_OBSCURED |
1974 InputTarget::FLAG_DISPATCH_AS_IS,
1975 BitSet32(0));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001976 }
1977 }
1978 }
1979 }
1980
1981 // Success! Output targets.
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08001982 injectionResult = InputEventInjectionResult::SUCCEEDED;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001983
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001984 for (const TouchedWindow& touchedWindow : tempTouchState.windows) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001985 addWindowTargetLocked(touchedWindow.windowHandle, touchedWindow.targetFlags,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001986 touchedWindow.pointerIds, inputTargets);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001987 }
1988
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001989 for (const TouchedMonitor& touchedMonitor : tempTouchState.gestureMonitors) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001990 addMonitoringTargetLocked(touchedMonitor.monitor, touchedMonitor.xOffset,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001991 touchedMonitor.yOffset, inputTargets);
Michael Wright3dd60e22019-03-27 22:06:44 +00001992 }
1993
Michael Wrightd02c5b62014-02-10 15:10:22 -08001994 // Drop the outside or hover touch windows since we will not care about them
1995 // in the next iteration.
Siarhei Vishniakou33eceeb2020-03-24 19:50:03 -07001996 tempTouchState.filterNonAsIsTouchWindows();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001997
1998Failed:
1999 // Check injection permission once and for all.
2000 if (injectionPermission == INJECTION_PERMISSION_UNKNOWN) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002001 if (checkInjectionPermission(nullptr, entry.injectionState)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002002 injectionPermission = INJECTION_PERMISSION_GRANTED;
2003 } else {
2004 injectionPermission = INJECTION_PERMISSION_DENIED;
2005 }
2006 }
2007
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07002008 if (injectionPermission != INJECTION_PERMISSION_GRANTED) {
2009 return injectionResult;
2010 }
2011
Michael Wrightd02c5b62014-02-10 15:10:22 -08002012 // Update final pieces of touch state if the injector had permission.
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07002013 if (!wrongDevice) {
2014 if (switchedDevice) {
2015 if (DEBUG_FOCUS) {
2016 ALOGD("Conflicting pointer actions: Switched to a different device.");
2017 }
2018 *outConflictingPointerActions = true;
2019 }
2020
2021 if (isHoverAction) {
2022 // Started hovering, therefore no longer down.
2023 if (oldState && oldState->down) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01002024 if (DEBUG_FOCUS) {
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07002025 ALOGD("Conflicting pointer actions: Hover received while pointer was "
2026 "down.");
Siarhei Vishniakou86587282019-09-09 18:20:15 +01002027 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002028 *outConflictingPointerActions = true;
2029 }
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07002030 tempTouchState.reset();
2031 if (maskedAction == AMOTION_EVENT_ACTION_HOVER_ENTER ||
2032 maskedAction == AMOTION_EVENT_ACTION_HOVER_MOVE) {
2033 tempTouchState.deviceId = entry.deviceId;
2034 tempTouchState.source = entry.source;
2035 tempTouchState.displayId = displayId;
2036 }
2037 } else if (maskedAction == AMOTION_EVENT_ACTION_UP ||
2038 maskedAction == AMOTION_EVENT_ACTION_CANCEL) {
2039 // All pointers up or canceled.
2040 tempTouchState.reset();
2041 } else if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
2042 // First pointer went down.
2043 if (oldState && oldState->down) {
2044 if (DEBUG_FOCUS) {
2045 ALOGD("Conflicting pointer actions: Down received while already down.");
2046 }
2047 *outConflictingPointerActions = true;
2048 }
2049 } else if (maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) {
2050 // One pointer went up.
2051 if (isSplit) {
2052 int32_t pointerIndex = getMotionEventActionPointerIndex(action);
2053 uint32_t pointerId = entry.pointerProperties[pointerIndex].id;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002054
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07002055 for (size_t i = 0; i < tempTouchState.windows.size();) {
2056 TouchedWindow& touchedWindow = tempTouchState.windows[i];
2057 if (touchedWindow.targetFlags & InputTarget::FLAG_SPLIT) {
2058 touchedWindow.pointerIds.clearBit(pointerId);
2059 if (touchedWindow.pointerIds.isEmpty()) {
2060 tempTouchState.windows.erase(tempTouchState.windows.begin() + i);
2061 continue;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002062 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002063 }
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07002064 i += 1;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002065 }
Jeff Brownf086ddb2014-02-11 14:28:48 -08002066 }
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07002067 }
Jeff Brownf086ddb2014-02-11 14:28:48 -08002068
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07002069 // Save changes unless the action was scroll in which case the temporary touch
2070 // state was only valid for this one action.
2071 if (maskedAction != AMOTION_EVENT_ACTION_SCROLL) {
2072 if (tempTouchState.displayId >= 0) {
2073 mTouchStatesByDisplay[displayId] = tempTouchState;
2074 } else {
2075 mTouchStatesByDisplay.erase(displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002076 }
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07002077 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002078
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07002079 // Update hover state.
2080 mLastHoverWindowHandle = newHoverWindowHandle;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002081 }
2082
Michael Wrightd02c5b62014-02-10 15:10:22 -08002083 return injectionResult;
2084}
2085
2086void InputDispatcher::addWindowTargetLocked(const sp<InputWindowHandle>& windowHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002087 int32_t targetFlags, BitSet32 pointerIds,
2088 std::vector<InputTarget>& inputTargets) {
Chavi Weingarten65f98b82020-01-16 18:56:50 +00002089 std::vector<InputTarget>::iterator it =
2090 std::find_if(inputTargets.begin(), inputTargets.end(),
2091 [&windowHandle](const InputTarget& inputTarget) {
2092 return inputTarget.inputChannel->getConnectionToken() ==
2093 windowHandle->getToken();
2094 });
Chavi Weingarten97b8eec2020-01-09 18:09:08 +00002095
Chavi Weingarten114b77f2020-01-15 22:35:10 +00002096 const InputWindowInfo* windowInfo = windowHandle->getInfo();
Chavi Weingarten65f98b82020-01-16 18:56:50 +00002097
2098 if (it == inputTargets.end()) {
2099 InputTarget inputTarget;
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -05002100 std::shared_ptr<InputChannel> inputChannel =
2101 getInputChannelLocked(windowHandle->getToken());
Chavi Weingarten65f98b82020-01-16 18:56:50 +00002102 if (inputChannel == nullptr) {
2103 ALOGW("Window %s already unregistered input channel", windowHandle->getName().c_str());
2104 return;
2105 }
2106 inputTarget.inputChannel = inputChannel;
2107 inputTarget.flags = targetFlags;
2108 inputTarget.globalScaleFactor = windowInfo->globalScaleFactor;
2109 inputTargets.push_back(inputTarget);
2110 it = inputTargets.end() - 1;
2111 }
2112
2113 ALOG_ASSERT(it->flags == targetFlags);
2114 ALOG_ASSERT(it->globalScaleFactor == windowInfo->globalScaleFactor);
2115
chaviw1ff3d1e2020-07-01 15:53:47 -07002116 it->addPointers(pointerIds, windowInfo->transform);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002117}
2118
Michael Wright3dd60e22019-03-27 22:06:44 +00002119void InputDispatcher::addGlobalMonitoringTargetsLocked(std::vector<InputTarget>& inputTargets,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002120 int32_t displayId, float xOffset,
2121 float yOffset) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002122 std::unordered_map<int32_t, std::vector<Monitor>>::const_iterator it =
2123 mGlobalMonitorsByDisplay.find(displayId);
2124
2125 if (it != mGlobalMonitorsByDisplay.end()) {
2126 const std::vector<Monitor>& monitors = it->second;
2127 for (const Monitor& monitor : monitors) {
2128 addMonitoringTargetLocked(monitor, xOffset, yOffset, inputTargets);
Arthur Hung2fbf37f2018-09-13 18:16:41 +08002129 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002130 }
2131}
2132
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002133void InputDispatcher::addMonitoringTargetLocked(const Monitor& monitor, float xOffset,
2134 float yOffset,
2135 std::vector<InputTarget>& inputTargets) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002136 InputTarget target;
2137 target.inputChannel = monitor.inputChannel;
2138 target.flags = InputTarget::FLAG_DISPATCH_AS_IS;
chaviw1ff3d1e2020-07-01 15:53:47 -07002139 ui::Transform t;
2140 t.set(xOffset, yOffset);
2141 target.setDefaultPointerTransform(t);
Michael Wright3dd60e22019-03-27 22:06:44 +00002142 inputTargets.push_back(target);
2143}
2144
Michael Wrightd02c5b62014-02-10 15:10:22 -08002145bool InputDispatcher::checkInjectionPermission(const sp<InputWindowHandle>& windowHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002146 const InjectionState* injectionState) {
2147 if (injectionState &&
2148 (windowHandle == nullptr ||
2149 windowHandle->getInfo()->ownerUid != injectionState->injectorUid) &&
2150 !hasInjectionPermission(injectionState->injectorPid, injectionState->injectorUid)) {
Yi Kong9b14ac62018-07-17 13:48:38 -07002151 if (windowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002152 ALOGW("Permission denied: injecting event from pid %d uid %d to window %s "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002153 "owned by uid %d",
2154 injectionState->injectorPid, injectionState->injectorUid,
2155 windowHandle->getName().c_str(), windowHandle->getInfo()->ownerUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002156 } else {
2157 ALOGW("Permission denied: injecting event from pid %d uid %d",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002158 injectionState->injectorPid, injectionState->injectorUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002159 }
2160 return false;
2161 }
2162 return true;
2163}
2164
Robert Carrc9bf1d32020-04-13 17:21:08 -07002165/**
2166 * Indicate whether one window handle should be considered as obscuring
2167 * another window handle. We only check a few preconditions. Actually
2168 * checking the bounds is left to the caller.
2169 */
2170static bool canBeObscuredBy(const sp<InputWindowHandle>& windowHandle,
2171 const sp<InputWindowHandle>& otherHandle) {
2172 // Compare by token so cloned layers aren't counted
2173 if (haveSameToken(windowHandle, otherHandle)) {
2174 return false;
2175 }
2176 auto info = windowHandle->getInfo();
2177 auto otherInfo = otherHandle->getInfo();
2178 if (!otherInfo->visible) {
2179 return false;
Bernardo Rufino653d2e02020-10-20 17:32:40 +00002180 } else if (otherInfo->alpha == 0 &&
2181 otherInfo->flags.test(InputWindowInfo::Flag::NOT_TOUCHABLE)) {
2182 // Those act as if they were invisible, so we don't need to flag them.
2183 // We do want to potentially flag touchable windows even if they have 0
2184 // opacity, since they can consume touches and alter the effects of the
2185 // user interaction (eg. apps that rely on
2186 // FLAG_WINDOW_IS_PARTIALLY_OBSCURED should still be told about those
2187 // windows), hence we also check for FLAG_NOT_TOUCHABLE.
2188 return false;
Bernardo Rufino8007daf2020-09-22 09:40:01 +00002189 } else if (info->ownerUid == otherInfo->ownerUid) {
2190 // If ownerUid is the same we don't generate occlusion events as there
2191 // is no security boundary within an uid.
Robert Carrc9bf1d32020-04-13 17:21:08 -07002192 return false;
Chris Yefcdff3e2020-05-10 15:16:04 -07002193 } else if (otherInfo->trustedOverlay) {
Robert Carrc9bf1d32020-04-13 17:21:08 -07002194 return false;
2195 } else if (otherInfo->displayId != info->displayId) {
2196 return false;
2197 }
2198 return true;
2199}
2200
Bernardo Rufinoea97d182020-08-19 14:43:14 +01002201/**
2202 * Returns touch occlusion information in the form of TouchOcclusionInfo. To check if the touch is
2203 * untrusted, one should check:
2204 *
2205 * 1. If result.hasBlockingOcclusion is true.
2206 * If it's, it means the touch should be blocked due to a window with occlusion mode of
2207 * BLOCK_UNTRUSTED.
2208 *
2209 * 2. If result.obscuringOpacity > mMaximumObscuringOpacityForTouch.
2210 * If it is (and 1 is false), then the touch should be blocked because a stack of windows
2211 * (possibly only one) with occlusion mode of USE_OPACITY from one UID resulted in a composed
2212 * obscuring opacity above the threshold. Note that if there was no window of occlusion mode
2213 * USE_OPACITY, result.obscuringOpacity would've been 0 and since
2214 * mMaximumObscuringOpacityForTouch >= 0, the condition above would never be true.
2215 *
2216 * If neither of those is true, then it means the touch can be allowed.
2217 */
2218InputDispatcher::TouchOcclusionInfo InputDispatcher::computeTouchOcclusionInfoLocked(
2219 const sp<InputWindowHandle>& windowHandle, int32_t x, int32_t y) const {
Bernardo Rufino4bae0ac2020-10-14 18:33:46 +00002220 const InputWindowInfo* windowInfo = windowHandle->getInfo();
2221 int32_t displayId = windowInfo->displayId;
Bernardo Rufinoea97d182020-08-19 14:43:14 +01002222 const std::vector<sp<InputWindowHandle>>& windowHandles = getWindowHandlesLocked(displayId);
2223 TouchOcclusionInfo info;
2224 info.hasBlockingOcclusion = false;
2225 info.obscuringOpacity = 0;
2226 info.obscuringUid = -1;
2227 std::map<int32_t, float> opacityByUid;
2228 for (const sp<InputWindowHandle>& otherHandle : windowHandles) {
2229 if (windowHandle == otherHandle) {
2230 break; // All future windows are below us. Exit early.
2231 }
2232 const InputWindowInfo* otherInfo = otherHandle->getInfo();
2233 if (canBeObscuredBy(windowHandle, otherHandle) &&
Bernardo Rufino4bae0ac2020-10-14 18:33:46 +00002234 windowInfo->ownerUid != otherInfo->ownerUid && otherInfo->frameContainsPoint(x, y)) {
2235 if (DEBUG_TOUCH_OCCLUSION) {
2236 info.debugInfo.push_back(
2237 dumpWindowForTouchOcclusion(otherInfo, /* isTouchedWindow */ false));
2238 }
Bernardo Rufinoea97d182020-08-19 14:43:14 +01002239 // canBeObscuredBy() has returned true above, which means this window is untrusted, so
2240 // we perform the checks below to see if the touch can be propagated or not based on the
2241 // window's touch occlusion mode
2242 if (otherInfo->touchOcclusionMode == TouchOcclusionMode::BLOCK_UNTRUSTED) {
2243 info.hasBlockingOcclusion = true;
2244 info.obscuringUid = otherInfo->ownerUid;
2245 info.obscuringPackage = otherInfo->packageName;
2246 break;
2247 }
2248 if (otherInfo->touchOcclusionMode == TouchOcclusionMode::USE_OPACITY) {
2249 uint32_t uid = otherInfo->ownerUid;
2250 float opacity =
2251 (opacityByUid.find(uid) == opacityByUid.end()) ? 0 : opacityByUid[uid];
2252 // Given windows A and B:
2253 // opacity(A, B) = 1 - [1 - opacity(A)] * [1 - opacity(B)]
2254 opacity = 1 - (1 - opacity) * (1 - otherInfo->alpha);
2255 opacityByUid[uid] = opacity;
2256 if (opacity > info.obscuringOpacity) {
2257 info.obscuringOpacity = opacity;
2258 info.obscuringUid = uid;
2259 info.obscuringPackage = otherInfo->packageName;
2260 }
2261 }
2262 }
2263 }
Bernardo Rufino4bae0ac2020-10-14 18:33:46 +00002264 if (DEBUG_TOUCH_OCCLUSION) {
2265 info.debugInfo.push_back(
2266 dumpWindowForTouchOcclusion(windowInfo, /* isTouchedWindow */ true));
2267 }
Bernardo Rufinoea97d182020-08-19 14:43:14 +01002268 return info;
2269}
2270
Bernardo Rufino4bae0ac2020-10-14 18:33:46 +00002271std::string InputDispatcher::dumpWindowForTouchOcclusion(const InputWindowInfo* info,
2272 bool isTouchedWindow) const {
Bernardo Rufinoc2f1fad2020-11-04 17:30:57 +00002273 return StringPrintf(INDENT2 "* %stype=%s, package=%s/%" PRId32 ", mode=%s, alpha=%.2f, "
2274 "frame=[%" PRId32 ",%" PRId32 "][%" PRId32 ",%" PRId32
2275 "], touchableRegion=%s, window={%s}, applicationInfo=%s, "
2276 "flags={%s}, inputFeatures={%s}, hasToken=%s\n",
Bernardo Rufino4bae0ac2020-10-14 18:33:46 +00002277 (isTouchedWindow) ? "[TOUCHED] " : "",
Bernardo Rufino53fc31e2020-11-03 11:01:07 +00002278 NamedEnum::string(info->type, "%" PRId32).c_str(),
2279 info->packageName.c_str(), info->ownerUid,
2280 toString(info->touchOcclusionMode).c_str(), info->alpha, info->frameLeft,
2281 info->frameTop, info->frameRight, info->frameBottom,
2282 dumpRegion(info->touchableRegion).c_str(), info->name.c_str(),
Bernardo Rufinoc2f1fad2020-11-04 17:30:57 +00002283 info->applicationInfo.name.c_str(), info->flags.string().c_str(),
2284 info->inputFeatures.string().c_str(), toString(info->token != nullptr));
Bernardo Rufino4bae0ac2020-10-14 18:33:46 +00002285}
2286
Bernardo Rufinoea97d182020-08-19 14:43:14 +01002287bool InputDispatcher::isTouchTrustedLocked(const TouchOcclusionInfo& occlusionInfo) const {
2288 if (occlusionInfo.hasBlockingOcclusion) {
2289 ALOGW("Untrusted touch due to occlusion by %s/%d", occlusionInfo.obscuringPackage.c_str(),
2290 occlusionInfo.obscuringUid);
2291 return false;
2292 }
2293 if (occlusionInfo.obscuringOpacity > mMaximumObscuringOpacityForTouch) {
2294 ALOGW("Untrusted touch due to occlusion by %s/%d (obscuring opacity = "
2295 "%.2f, maximum allowed = %.2f)",
2296 occlusionInfo.obscuringPackage.c_str(), occlusionInfo.obscuringUid,
2297 occlusionInfo.obscuringOpacity, mMaximumObscuringOpacityForTouch);
2298 return false;
2299 }
2300 return true;
2301}
2302
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002303bool InputDispatcher::isWindowObscuredAtPointLocked(const sp<InputWindowHandle>& windowHandle,
2304 int32_t x, int32_t y) const {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002305 int32_t displayId = windowHandle->getInfo()->displayId;
Vishnu Nairad321cd2020-08-20 16:40:21 -07002306 const std::vector<sp<InputWindowHandle>>& windowHandles = getWindowHandlesLocked(displayId);
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002307 for (const sp<InputWindowHandle>& otherHandle : windowHandles) {
Robert Carrc9bf1d32020-04-13 17:21:08 -07002308 if (windowHandle == otherHandle) {
2309 break; // All future windows are below us. Exit early.
Michael Wrightd02c5b62014-02-10 15:10:22 -08002310 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002311 const InputWindowInfo* otherInfo = otherHandle->getInfo();
Robert Carrc9bf1d32020-04-13 17:21:08 -07002312 if (canBeObscuredBy(windowHandle, otherHandle) &&
minchelif28cc4e2020-03-19 11:18:11 +08002313 otherInfo->frameContainsPoint(x, y)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002314 return true;
2315 }
2316 }
2317 return false;
2318}
2319
Michael Wrightcdcd8f22016-03-22 16:52:13 -07002320bool InputDispatcher::isWindowObscuredLocked(const sp<InputWindowHandle>& windowHandle) const {
2321 int32_t displayId = windowHandle->getInfo()->displayId;
Vishnu Nairad321cd2020-08-20 16:40:21 -07002322 const std::vector<sp<InputWindowHandle>>& windowHandles = getWindowHandlesLocked(displayId);
Michael Wrightcdcd8f22016-03-22 16:52:13 -07002323 const InputWindowInfo* windowInfo = windowHandle->getInfo();
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002324 for (const sp<InputWindowHandle>& otherHandle : windowHandles) {
Robert Carrc9bf1d32020-04-13 17:21:08 -07002325 if (windowHandle == otherHandle) {
2326 break; // All future windows are below us. Exit early.
Michael Wrightcdcd8f22016-03-22 16:52:13 -07002327 }
Michael Wrightcdcd8f22016-03-22 16:52:13 -07002328 const InputWindowInfo* otherInfo = otherHandle->getInfo();
Robert Carrc9bf1d32020-04-13 17:21:08 -07002329 if (canBeObscuredBy(windowHandle, otherHandle) &&
minchelif28cc4e2020-03-19 11:18:11 +08002330 otherInfo->overlaps(windowInfo)) {
Michael Wrightcdcd8f22016-03-22 16:52:13 -07002331 return true;
2332 }
2333 }
2334 return false;
2335}
2336
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002337std::string InputDispatcher::getApplicationWindowLabel(
Chris Yea209fde2020-07-22 13:54:51 -07002338 const std::shared_ptr<InputApplicationHandle>& applicationHandle,
Michael Wrightd02c5b62014-02-10 15:10:22 -08002339 const sp<InputWindowHandle>& windowHandle) {
Yi Kong9b14ac62018-07-17 13:48:38 -07002340 if (applicationHandle != nullptr) {
2341 if (windowHandle != nullptr) {
Siarhei Vishniakou850ce122020-05-26 22:39:43 -07002342 return applicationHandle->getName() + " - " + windowHandle->getName();
Michael Wrightd02c5b62014-02-10 15:10:22 -08002343 } else {
2344 return applicationHandle->getName();
2345 }
Yi Kong9b14ac62018-07-17 13:48:38 -07002346 } else if (windowHandle != nullptr) {
Siarhei Vishniakou850ce122020-05-26 22:39:43 -07002347 return windowHandle->getInfo()->applicationInfo.name + " - " + windowHandle->getName();
Michael Wrightd02c5b62014-02-10 15:10:22 -08002348 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08002349 return "<unknown application or window>";
Michael Wrightd02c5b62014-02-10 15:10:22 -08002350 }
2351}
2352
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002353void InputDispatcher::pokeUserActivityLocked(const EventEntry& eventEntry) {
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +01002354 if (eventEntry.type == EventEntry::Type::FOCUS) {
2355 // Focus events are passed to apps, but do not represent user activity.
2356 return;
2357 }
Tiger Huang721e26f2018-07-24 22:26:19 +08002358 int32_t displayId = getTargetDisplayId(eventEntry);
Vishnu Nairad321cd2020-08-20 16:40:21 -07002359 sp<InputWindowHandle> focusedWindowHandle = getFocusedWindowHandleLocked(displayId);
Tiger Huang721e26f2018-07-24 22:26:19 +08002360 if (focusedWindowHandle != nullptr) {
2361 const InputWindowInfo* info = focusedWindowHandle->getInfo();
Michael Wright44753b12020-07-08 13:48:11 +01002362 if (info->inputFeatures.test(InputWindowInfo::Feature::DISABLE_USER_ACTIVITY)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002363#if DEBUG_DISPATCH_CYCLE
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08002364 ALOGD("Not poking user activity: disabled by window '%s'.", info->name.c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002365#endif
2366 return;
2367 }
2368 }
2369
2370 int32_t eventType = USER_ACTIVITY_EVENT_OTHER;
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002371 switch (eventEntry.type) {
Siarhei Vishniakou49483272019-10-22 13:13:47 -07002372 case EventEntry::Type::MOTION: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002373 const MotionEntry& motionEntry = static_cast<const MotionEntry&>(eventEntry);
2374 if (motionEntry.action == AMOTION_EVENT_ACTION_CANCEL) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002375 return;
2376 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002377
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002378 if (MotionEvent::isTouchEvent(motionEntry.source, motionEntry.action)) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002379 eventType = USER_ACTIVITY_EVENT_TOUCH;
2380 }
2381 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002382 }
Siarhei Vishniakou49483272019-10-22 13:13:47 -07002383 case EventEntry::Type::KEY: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002384 const KeyEntry& keyEntry = static_cast<const KeyEntry&>(eventEntry);
2385 if (keyEntry.flags & AKEY_EVENT_FLAG_CANCELED) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002386 return;
2387 }
2388 eventType = USER_ACTIVITY_EVENT_BUTTON;
2389 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002390 }
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +01002391 case EventEntry::Type::FOCUS:
Siarhei Vishniakou49483272019-10-22 13:13:47 -07002392 case EventEntry::Type::CONFIGURATION_CHANGED:
2393 case EventEntry::Type::DEVICE_RESET: {
2394 LOG_ALWAYS_FATAL("%s events are not user activity",
2395 EventEntry::typeToString(eventEntry.type));
2396 break;
2397 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002398 }
2399
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07002400 std::unique_ptr<CommandEntry> commandEntry =
2401 std::make_unique<CommandEntry>(&InputDispatcher::doPokeUserActivityLockedInterruptible);
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002402 commandEntry->eventTime = eventEntry.eventTime;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002403 commandEntry->userActivityEventType = eventType;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07002404 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002405}
2406
2407void InputDispatcher::prepareDispatchCycleLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002408 const sp<Connection>& connection,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002409 std::shared_ptr<EventEntry> eventEntry,
Siarhei Vishniakou5d6b6612020-01-08 16:03:04 -08002410 const InputTarget& inputTarget) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002411 if (ATRACE_ENABLED()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002412 std::string message =
Garfield Tanff1f1bb2020-01-28 13:24:04 -08002413 StringPrintf("prepareDispatchCycleLocked(inputChannel=%s, id=0x%" PRIx32 ")",
Garfield Tan6a5a14e2020-01-28 13:24:04 -08002414 connection->getInputChannelName().c_str(), eventEntry->id);
Michael Wright3dd60e22019-03-27 22:06:44 +00002415 ATRACE_NAME(message.c_str());
2416 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002417#if DEBUG_DISPATCH_CYCLE
2418 ALOGD("channel '%s' ~ prepareDispatchCycle - flags=0x%08x, "
Chavi Weingarten65f98b82020-01-16 18:56:50 +00002419 "globalScaleFactor=%f, pointerIds=0x%x %s",
2420 connection->getInputChannelName().c_str(), inputTarget.flags,
2421 inputTarget.globalScaleFactor, inputTarget.pointerIds.value,
2422 inputTarget.getPointerInfoString().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002423#endif
2424
2425 // Skip this event if the connection status is not normal.
2426 // We don't want to enqueue additional outbound events if the connection is broken.
2427 if (connection->status != Connection::STATUS_NORMAL) {
2428#if DEBUG_DISPATCH_CYCLE
2429 ALOGD("channel '%s' ~ Dropping event because the channel status is %s",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002430 connection->getInputChannelName().c_str(), connection->getStatusLabel());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002431#endif
2432 return;
2433 }
2434
2435 // Split a motion event if needed.
Siarhei Vishniakou5d6b6612020-01-08 16:03:04 -08002436 if (inputTarget.flags & InputTarget::FLAG_SPLIT) {
2437 LOG_ALWAYS_FATAL_IF(eventEntry->type != EventEntry::Type::MOTION,
2438 "Entry type %s should not have FLAG_SPLIT",
2439 EventEntry::typeToString(eventEntry->type));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002440
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002441 const MotionEntry& originalMotionEntry = static_cast<const MotionEntry&>(*eventEntry);
Siarhei Vishniakou5d6b6612020-01-08 16:03:04 -08002442 if (inputTarget.pointerIds.count() != originalMotionEntry.pointerCount) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002443 std::unique_ptr<MotionEntry> splitMotionEntry =
Siarhei Vishniakou5d6b6612020-01-08 16:03:04 -08002444 splitMotionEvent(originalMotionEntry, inputTarget.pointerIds);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002445 if (!splitMotionEntry) {
2446 return; // split event was dropped
2447 }
Siarhei Vishniakou86587282019-09-09 18:20:15 +01002448 if (DEBUG_FOCUS) {
2449 ALOGD("channel '%s' ~ Split motion event.",
2450 connection->getInputChannelName().c_str());
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002451 logOutboundMotionDetails(" ", *splitMotionEntry);
Siarhei Vishniakou86587282019-09-09 18:20:15 +01002452 }
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002453 enqueueDispatchEntriesLocked(currentTime, connection, std::move(splitMotionEntry),
2454 inputTarget);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002455 return;
2456 }
2457 }
2458
2459 // Not splitting. Enqueue dispatch entries for the event as is.
2460 enqueueDispatchEntriesLocked(currentTime, connection, eventEntry, inputTarget);
2461}
2462
2463void InputDispatcher::enqueueDispatchEntriesLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002464 const sp<Connection>& connection,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002465 std::shared_ptr<EventEntry> eventEntry,
Siarhei Vishniakou5d6b6612020-01-08 16:03:04 -08002466 const InputTarget& inputTarget) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002467 if (ATRACE_ENABLED()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002468 std::string message =
Garfield Tanff1f1bb2020-01-28 13:24:04 -08002469 StringPrintf("enqueueDispatchEntriesLocked(inputChannel=%s, id=0x%" PRIx32 ")",
Garfield Tan6a5a14e2020-01-28 13:24:04 -08002470 connection->getInputChannelName().c_str(), eventEntry->id);
Michael Wright3dd60e22019-03-27 22:06:44 +00002471 ATRACE_NAME(message.c_str());
2472 }
2473
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002474 bool wasEmpty = connection->outboundQueue.empty();
Michael Wrightd02c5b62014-02-10 15:10:22 -08002475
2476 // Enqueue dispatch entries for the requested modes.
chaviw8c9cf542019-03-25 13:02:48 -07002477 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002478 InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT);
chaviw8c9cf542019-03-25 13:02:48 -07002479 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002480 InputTarget::FLAG_DISPATCH_AS_OUTSIDE);
chaviw8c9cf542019-03-25 13:02:48 -07002481 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002482 InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER);
chaviw8c9cf542019-03-25 13:02:48 -07002483 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002484 InputTarget::FLAG_DISPATCH_AS_IS);
chaviw8c9cf542019-03-25 13:02:48 -07002485 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002486 InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT);
chaviw8c9cf542019-03-25 13:02:48 -07002487 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002488 InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002489
2490 // If the outbound queue was previously empty, start the dispatch cycle going.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002491 if (wasEmpty && !connection->outboundQueue.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002492 startDispatchCycleLocked(currentTime, connection);
2493 }
2494}
2495
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002496void InputDispatcher::enqueueDispatchEntryLocked(const sp<Connection>& connection,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002497 std::shared_ptr<EventEntry> eventEntry,
Siarhei Vishniakou5d6b6612020-01-08 16:03:04 -08002498 const InputTarget& inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002499 int32_t dispatchMode) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002500 if (ATRACE_ENABLED()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002501 std::string message = StringPrintf("enqueueDispatchEntry(inputChannel=%s, dispatchMode=%s)",
2502 connection->getInputChannelName().c_str(),
2503 dispatchModeToString(dispatchMode).c_str());
Michael Wright3dd60e22019-03-27 22:06:44 +00002504 ATRACE_NAME(message.c_str());
2505 }
Siarhei Vishniakou5d6b6612020-01-08 16:03:04 -08002506 int32_t inputTargetFlags = inputTarget.flags;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002507 if (!(inputTargetFlags & dispatchMode)) {
2508 return;
2509 }
2510 inputTargetFlags = (inputTargetFlags & ~InputTarget::FLAG_DISPATCH_MASK) | dispatchMode;
2511
2512 // This is a new event.
2513 // Enqueue a new dispatch entry onto the outbound queue for this connection.
Siarhei Vishniakou5d6b6612020-01-08 16:03:04 -08002514 std::unique_ptr<DispatchEntry> dispatchEntry =
Chavi Weingarten65f98b82020-01-16 18:56:50 +00002515 createDispatchEntry(inputTarget, eventEntry, inputTargetFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002516
Chavi Weingarten65f98b82020-01-16 18:56:50 +00002517 // Use the eventEntry from dispatchEntry since the entry may have changed and can now be a
2518 // different EventEntry than what was passed in.
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002519 EventEntry& newEntry = *(dispatchEntry->eventEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002520 // Apply target flags and update the connection's input state.
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002521 switch (newEntry.type) {
Siarhei Vishniakou49483272019-10-22 13:13:47 -07002522 case EventEntry::Type::KEY: {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002523 const KeyEntry& keyEntry = static_cast<const KeyEntry&>(newEntry);
Garfield Tanff1f1bb2020-01-28 13:24:04 -08002524 dispatchEntry->resolvedEventId = keyEntry.id;
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002525 dispatchEntry->resolvedAction = keyEntry.action;
2526 dispatchEntry->resolvedFlags = keyEntry.flags;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002527
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002528 if (!connection->inputState.trackKey(keyEntry, dispatchEntry->resolvedAction,
2529 dispatchEntry->resolvedFlags)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002530#if DEBUG_DISPATCH_CYCLE
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002531 ALOGD("channel '%s' ~ enqueueDispatchEntryLocked: skipping inconsistent key event",
2532 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002533#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002534 return; // skip the inconsistent event
2535 }
2536 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002537 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002538
Siarhei Vishniakou49483272019-10-22 13:13:47 -07002539 case EventEntry::Type::MOTION: {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002540 const MotionEntry& motionEntry = static_cast<const MotionEntry&>(newEntry);
Garfield Tanff1f1bb2020-01-28 13:24:04 -08002541 // Assign a default value to dispatchEntry that will never be generated by InputReader,
2542 // and assign a InputDispatcher value if it doesn't change in the if-else chain below.
2543 constexpr int32_t DEFAULT_RESOLVED_EVENT_ID =
2544 static_cast<int32_t>(IdGenerator::Source::OTHER);
2545 dispatchEntry->resolvedEventId = DEFAULT_RESOLVED_EVENT_ID;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002546 if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) {
2547 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_OUTSIDE;
2548 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT) {
2549 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_EXIT;
2550 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER) {
2551 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_ENTER;
2552 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT) {
2553 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_CANCEL;
2554 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER) {
2555 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_DOWN;
2556 } else {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002557 dispatchEntry->resolvedAction = motionEntry.action;
Garfield Tanff1f1bb2020-01-28 13:24:04 -08002558 dispatchEntry->resolvedEventId = motionEntry.id;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002559 }
2560 if (dispatchEntry->resolvedAction == AMOTION_EVENT_ACTION_HOVER_MOVE &&
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002561 !connection->inputState.isHovering(motionEntry.deviceId, motionEntry.source,
2562 motionEntry.displayId)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002563#if DEBUG_DISPATCH_CYCLE
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002564 ALOGD("channel '%s' ~ enqueueDispatchEntryLocked: filling in missing hover enter "
2565 "event",
2566 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002567#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002568 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_ENTER;
2569 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002570
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002571 dispatchEntry->resolvedFlags = motionEntry.flags;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002572 if (dispatchEntry->targetFlags & InputTarget::FLAG_WINDOW_IS_OBSCURED) {
2573 dispatchEntry->resolvedFlags |= AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED;
2574 }
2575 if (dispatchEntry->targetFlags & InputTarget::FLAG_WINDOW_IS_PARTIALLY_OBSCURED) {
2576 dispatchEntry->resolvedFlags |= AMOTION_EVENT_FLAG_WINDOW_IS_PARTIALLY_OBSCURED;
2577 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002578
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002579 if (!connection->inputState.trackMotion(motionEntry, dispatchEntry->resolvedAction,
2580 dispatchEntry->resolvedFlags)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002581#if DEBUG_DISPATCH_CYCLE
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002582 ALOGD("channel '%s' ~ enqueueDispatchEntryLocked: skipping inconsistent motion "
2583 "event",
2584 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002585#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002586 return; // skip the inconsistent event
2587 }
2588
Garfield Tanff1f1bb2020-01-28 13:24:04 -08002589 dispatchEntry->resolvedEventId =
2590 dispatchEntry->resolvedEventId == DEFAULT_RESOLVED_EVENT_ID
2591 ? mIdGenerator.nextId()
2592 : motionEntry.id;
2593 if (ATRACE_ENABLED() && dispatchEntry->resolvedEventId != motionEntry.id) {
2594 std::string message = StringPrintf("Transmute MotionEvent(id=0x%" PRIx32
2595 ") to MotionEvent(id=0x%" PRIx32 ").",
2596 motionEntry.id, dispatchEntry->resolvedEventId);
2597 ATRACE_NAME(message.c_str());
2598 }
2599
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002600 dispatchPointerDownOutsideFocus(motionEntry.source, dispatchEntry->resolvedAction,
Siarhei Vishniakou5d6b6612020-01-08 16:03:04 -08002601 inputTarget.inputChannel->getConnectionToken());
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002602
2603 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002604 }
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +01002605 case EventEntry::Type::FOCUS: {
2606 break;
2607 }
Siarhei Vishniakou49483272019-10-22 13:13:47 -07002608 case EventEntry::Type::CONFIGURATION_CHANGED:
2609 case EventEntry::Type::DEVICE_RESET: {
2610 LOG_ALWAYS_FATAL("%s events should not go to apps",
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002611 EventEntry::typeToString(newEntry.type));
Siarhei Vishniakou49483272019-10-22 13:13:47 -07002612 break;
2613 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002614 }
2615
2616 // Remember that we are waiting for this dispatch to complete.
2617 if (dispatchEntry->hasForegroundTarget()) {
Chavi Weingarten65f98b82020-01-16 18:56:50 +00002618 incrementPendingForegroundDispatches(newEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002619 }
2620
2621 // Enqueue the dispatch entry.
Siarhei Vishniakou5d6b6612020-01-08 16:03:04 -08002622 connection->outboundQueue.push_back(dispatchEntry.release());
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002623 traceOutboundQueueLength(connection);
chaviw8c9cf542019-03-25 13:02:48 -07002624}
2625
Siarhei Vishniakou887b7d92020-06-18 00:43:02 +00002626/**
2627 * This function is purely for debugging. It helps us understand where the user interaction
2628 * was taking place. For example, if user is touching launcher, we will see a log that user
2629 * started interacting with launcher. In that example, the event would go to the wallpaper as well.
2630 * We will see both launcher and wallpaper in that list.
2631 * Once the interaction with a particular set of connections starts, no new logs will be printed
2632 * until the set of interacted connections changes.
2633 *
2634 * The following items are skipped, to reduce the logspam:
2635 * ACTION_OUTSIDE: any windows that are receiving ACTION_OUTSIDE are not logged
2636 * ACTION_UP: any windows that receive ACTION_UP are not logged (for both keys and motions).
2637 * This includes situations like the soft BACK button key. When the user releases (lifts up the
2638 * finger) the back button, then navigation bar will inject KEYCODE_BACK with ACTION_UP.
2639 * Both of those ACTION_UP events would not be logged
2640 * Monitors (both gesture and global): any gesture monitors or global monitors receiving events
2641 * will not be logged. This is omitted to reduce the amount of data printed.
2642 * If you see <none>, it's likely that one of the gesture monitors pilfered the event, and therefore
2643 * gesture monitor is the only connection receiving the remainder of the gesture.
2644 */
2645void InputDispatcher::updateInteractionTokensLocked(const EventEntry& entry,
2646 const std::vector<InputTarget>& targets) {
2647 // Skip ACTION_UP events, and all events other than keys and motions
2648 if (entry.type == EventEntry::Type::KEY) {
2649 const KeyEntry& keyEntry = static_cast<const KeyEntry&>(entry);
2650 if (keyEntry.action == AKEY_EVENT_ACTION_UP) {
2651 return;
2652 }
2653 } else if (entry.type == EventEntry::Type::MOTION) {
2654 const MotionEntry& motionEntry = static_cast<const MotionEntry&>(entry);
2655 if (motionEntry.action == AMOTION_EVENT_ACTION_UP ||
2656 motionEntry.action == AMOTION_EVENT_ACTION_CANCEL) {
2657 return;
2658 }
2659 } else {
2660 return; // Not a key or a motion
2661 }
2662
2663 std::unordered_set<sp<IBinder>, IBinderHash> newConnectionTokens;
2664 std::vector<sp<Connection>> newConnections;
2665 for (const InputTarget& target : targets) {
2666 if ((target.flags & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) ==
2667 InputTarget::FLAG_DISPATCH_AS_OUTSIDE) {
2668 continue; // Skip windows that receive ACTION_OUTSIDE
2669 }
2670
2671 sp<IBinder> token = target.inputChannel->getConnectionToken();
2672 sp<Connection> connection = getConnectionLocked(token);
2673 if (connection == nullptr || connection->monitor) {
2674 continue; // We only need to keep track of the non-monitor connections.
2675 }
2676 newConnectionTokens.insert(std::move(token));
2677 newConnections.emplace_back(connection);
2678 }
2679 if (newConnectionTokens == mInteractionConnectionTokens) {
2680 return; // no change
2681 }
2682 mInteractionConnectionTokens = newConnectionTokens;
2683
2684 std::string windowList;
2685 for (const sp<Connection>& connection : newConnections) {
2686 windowList += connection->getWindowName() + ", ";
2687 }
2688 std::string message = "Interaction with windows: " + windowList;
2689 if (windowList.empty()) {
2690 message += "<none>";
2691 }
2692 android_log_event_list(LOGTAG_INPUT_INTERACTION) << message << LOG_ID_EVENTS;
2693}
2694
chaviwfd6d3512019-03-25 13:23:49 -07002695void InputDispatcher::dispatchPointerDownOutsideFocus(uint32_t source, int32_t action,
Vishnu Nairad321cd2020-08-20 16:40:21 -07002696 const sp<IBinder>& token) {
chaviw8c9cf542019-03-25 13:02:48 -07002697 int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK;
chaviwfd6d3512019-03-25 13:23:49 -07002698 uint32_t maskedSource = source & AINPUT_SOURCE_CLASS_MASK;
2699 if (maskedSource != AINPUT_SOURCE_CLASS_POINTER || maskedAction != AMOTION_EVENT_ACTION_DOWN) {
chaviw8c9cf542019-03-25 13:02:48 -07002700 return;
2701 }
2702
Vishnu Nairad321cd2020-08-20 16:40:21 -07002703 sp<IBinder> focusedToken = getValueByKey(mFocusedWindowTokenByDisplay, mFocusedDisplayId);
2704 if (focusedToken == token) {
2705 // ignore since token is focused
chaviw8c9cf542019-03-25 13:02:48 -07002706 return;
2707 }
2708
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07002709 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
2710 &InputDispatcher::doOnPointerDownOutsideFocusLockedInterruptible);
Vishnu Nairad321cd2020-08-20 16:40:21 -07002711 commandEntry->newToken = token;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07002712 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002713}
2714
2715void InputDispatcher::startDispatchCycleLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002716 const sp<Connection>& connection) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002717 if (ATRACE_ENABLED()) {
2718 std::string message = StringPrintf("startDispatchCycleLocked(inputChannel=%s)",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002719 connection->getInputChannelName().c_str());
Michael Wright3dd60e22019-03-27 22:06:44 +00002720 ATRACE_NAME(message.c_str());
2721 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002722#if DEBUG_DISPATCH_CYCLE
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002723 ALOGD("channel '%s' ~ startDispatchCycle", connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002724#endif
2725
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002726 while (connection->status == Connection::STATUS_NORMAL && !connection->outboundQueue.empty()) {
2727 DispatchEntry* dispatchEntry = connection->outboundQueue.front();
Michael Wrightd02c5b62014-02-10 15:10:22 -08002728 dispatchEntry->deliveryTime = currentTime;
Siarhei Vishniakou70622952020-07-30 11:17:23 -05002729 const std::chrono::nanoseconds timeout =
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07002730 getDispatchingTimeoutLocked(connection->inputChannel->getConnectionToken());
Siarhei Vishniakou70622952020-07-30 11:17:23 -05002731 dispatchEntry->timeoutTime = currentTime + timeout.count();
Michael Wrightd02c5b62014-02-10 15:10:22 -08002732
2733 // Publish the event.
2734 status_t status;
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002735 const EventEntry& eventEntry = *(dispatchEntry->eventEntry);
2736 switch (eventEntry.type) {
Siarhei Vishniakou49483272019-10-22 13:13:47 -07002737 case EventEntry::Type::KEY: {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002738 const KeyEntry& keyEntry = static_cast<const KeyEntry&>(eventEntry);
2739 std::array<uint8_t, 32> hmac = getSignature(keyEntry, *dispatchEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002740
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002741 // Publish the key event.
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002742 status = connection->inputPublisher
2743 .publishKeyEvent(dispatchEntry->seq,
2744 dispatchEntry->resolvedEventId, keyEntry.deviceId,
2745 keyEntry.source, keyEntry.displayId,
2746 std::move(hmac), dispatchEntry->resolvedAction,
2747 dispatchEntry->resolvedFlags, keyEntry.keyCode,
2748 keyEntry.scanCode, keyEntry.metaState,
2749 keyEntry.repeatCount, keyEntry.downTime,
2750 keyEntry.eventTime);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002751 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002752 }
2753
Siarhei Vishniakou49483272019-10-22 13:13:47 -07002754 case EventEntry::Type::MOTION: {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002755 const MotionEntry& motionEntry = static_cast<const MotionEntry&>(eventEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002756
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002757 PointerCoords scaledCoords[MAX_POINTERS];
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002758 const PointerCoords* usingCoords = motionEntry.pointerCoords;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002759
chaviw82357092020-01-28 13:13:06 -08002760 // Set the X and Y offset and X and Y scale depending on the input source.
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002761 if ((motionEntry.source & AINPUT_SOURCE_CLASS_POINTER) &&
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002762 !(dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS)) {
2763 float globalScaleFactor = dispatchEntry->globalScaleFactor;
chaviw82357092020-01-28 13:13:06 -08002764 if (globalScaleFactor != 1.0f) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002765 for (uint32_t i = 0; i < motionEntry.pointerCount; i++) {
2766 scaledCoords[i] = motionEntry.pointerCoords[i];
chaviw82357092020-01-28 13:13:06 -08002767 // Don't apply window scale here since we don't want scale to affect raw
2768 // coordinates. The scale will be sent back to the client and applied
2769 // later when requesting relative coordinates.
2770 scaledCoords[i].scale(globalScaleFactor, 1 /* windowXScale */,
2771 1 /* windowYScale */);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002772 }
2773 usingCoords = scaledCoords;
2774 }
2775 } else {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002776 // We don't want the dispatch target to know.
2777 if (dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002778 for (uint32_t i = 0; i < motionEntry.pointerCount; i++) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002779 scaledCoords[i].clear();
2780 }
2781 usingCoords = scaledCoords;
2782 }
2783 }
Edgar Arriagac6ae4bb2020-04-16 18:46:48 -07002784
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002785 std::array<uint8_t, 32> hmac = getSignature(motionEntry, *dispatchEntry);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002786
2787 // Publish the motion event.
2788 status = connection->inputPublisher
Garfield Tanff1f1bb2020-01-28 13:24:04 -08002789 .publishMotionEvent(dispatchEntry->seq,
2790 dispatchEntry->resolvedEventId,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002791 motionEntry.deviceId, motionEntry.source,
2792 motionEntry.displayId, std::move(hmac),
Garfield Tanff1f1bb2020-01-28 13:24:04 -08002793 dispatchEntry->resolvedAction,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002794 motionEntry.actionButton,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002795 dispatchEntry->resolvedFlags,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002796 motionEntry.edgeFlags, motionEntry.metaState,
2797 motionEntry.buttonState,
2798 motionEntry.classification,
chaviw9eaa22c2020-07-01 16:21:27 -07002799 dispatchEntry->transform,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002800 motionEntry.xPrecision, motionEntry.yPrecision,
2801 motionEntry.xCursorPosition,
2802 motionEntry.yCursorPosition,
2803 motionEntry.downTime, motionEntry.eventTime,
2804 motionEntry.pointerCount,
2805 motionEntry.pointerProperties, usingCoords);
2806 reportTouchEventForStatistics(motionEntry);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002807 break;
2808 }
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +01002809 case EventEntry::Type::FOCUS: {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002810 const FocusEntry& focusEntry = static_cast<const FocusEntry&>(eventEntry);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +01002811 status = connection->inputPublisher.publishFocusEvent(dispatchEntry->seq,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002812 focusEntry.id,
2813 focusEntry.hasFocus,
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +01002814 mInTouchMode);
2815 break;
2816 }
2817
Siarhei Vishniakou3b37f9a2019-11-23 13:42:41 -08002818 case EventEntry::Type::CONFIGURATION_CHANGED:
2819 case EventEntry::Type::DEVICE_RESET: {
2820 LOG_ALWAYS_FATAL("Should never start dispatch cycles for %s events",
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002821 EventEntry::typeToString(eventEntry.type));
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002822 return;
Siarhei Vishniakou3b37f9a2019-11-23 13:42:41 -08002823 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002824 }
2825
2826 // Check the result.
2827 if (status) {
2828 if (status == WOULD_BLOCK) {
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002829 if (connection->waitQueue.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002830 ALOGE("channel '%s' ~ Could not publish event because the pipe is full. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002831 "This is unexpected because the wait queue is empty, so the pipe "
2832 "should be empty and we shouldn't have any problems writing an "
2833 "event to it, status=%d",
2834 connection->getInputChannelName().c_str(), status);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002835 abortBrokenDispatchCycleLocked(currentTime, connection, true /*notify*/);
2836 } else {
2837 // Pipe is full and we are waiting for the app to finish process some events
2838 // before sending more events to it.
2839#if DEBUG_DISPATCH_CYCLE
2840 ALOGD("channel '%s' ~ Could not publish event because the pipe is full, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002841 "waiting for the application to catch up",
2842 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002843#endif
Michael Wrightd02c5b62014-02-10 15:10:22 -08002844 }
2845 } else {
2846 ALOGE("channel '%s' ~ Could not publish event due to an unexpected error, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002847 "status=%d",
2848 connection->getInputChannelName().c_str(), status);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002849 abortBrokenDispatchCycleLocked(currentTime, connection, true /*notify*/);
2850 }
2851 return;
2852 }
2853
2854 // Re-enqueue the event on the wait queue.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002855 connection->outboundQueue.erase(std::remove(connection->outboundQueue.begin(),
2856 connection->outboundQueue.end(),
2857 dispatchEntry));
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002858 traceOutboundQueueLength(connection);
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002859 connection->waitQueue.push_back(dispatchEntry);
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07002860 if (connection->responsive) {
2861 mAnrTracker.insert(dispatchEntry->timeoutTime,
2862 connection->inputChannel->getConnectionToken());
2863 }
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002864 traceWaitQueueLength(connection);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002865 }
2866}
2867
chaviw09c8d2d2020-08-24 15:48:26 -07002868std::array<uint8_t, 32> InputDispatcher::sign(const VerifiedInputEvent& event) const {
2869 size_t size;
2870 switch (event.type) {
2871 case VerifiedInputEvent::Type::KEY: {
2872 size = sizeof(VerifiedKeyEvent);
2873 break;
2874 }
2875 case VerifiedInputEvent::Type::MOTION: {
2876 size = sizeof(VerifiedMotionEvent);
2877 break;
2878 }
2879 }
2880 const uint8_t* start = reinterpret_cast<const uint8_t*>(&event);
2881 return mHmacKeyManager.sign(start, size);
2882}
2883
Edgar Arriagac6ae4bb2020-04-16 18:46:48 -07002884const std::array<uint8_t, 32> InputDispatcher::getSignature(
2885 const MotionEntry& motionEntry, const DispatchEntry& dispatchEntry) const {
2886 int32_t actionMasked = dispatchEntry.resolvedAction & AMOTION_EVENT_ACTION_MASK;
2887 if ((actionMasked == AMOTION_EVENT_ACTION_UP) || (actionMasked == AMOTION_EVENT_ACTION_DOWN)) {
2888 // Only sign events up and down events as the purely move events
2889 // are tied to their up/down counterparts so signing would be redundant.
2890 VerifiedMotionEvent verifiedEvent = verifiedMotionEventFromMotionEntry(motionEntry);
2891 verifiedEvent.actionMasked = actionMasked;
2892 verifiedEvent.flags = dispatchEntry.resolvedFlags & VERIFIED_MOTION_EVENT_FLAGS;
chaviw09c8d2d2020-08-24 15:48:26 -07002893 return sign(verifiedEvent);
Edgar Arriagac6ae4bb2020-04-16 18:46:48 -07002894 }
2895 return INVALID_HMAC;
2896}
2897
2898const std::array<uint8_t, 32> InputDispatcher::getSignature(
2899 const KeyEntry& keyEntry, const DispatchEntry& dispatchEntry) const {
2900 VerifiedKeyEvent verifiedEvent = verifiedKeyEventFromKeyEntry(keyEntry);
2901 verifiedEvent.flags = dispatchEntry.resolvedFlags & VERIFIED_KEY_EVENT_FLAGS;
2902 verifiedEvent.action = dispatchEntry.resolvedAction;
chaviw09c8d2d2020-08-24 15:48:26 -07002903 return sign(verifiedEvent);
Edgar Arriagac6ae4bb2020-04-16 18:46:48 -07002904}
2905
Michael Wrightd02c5b62014-02-10 15:10:22 -08002906void InputDispatcher::finishDispatchCycleLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002907 const sp<Connection>& connection, uint32_t seq,
2908 bool handled) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002909#if DEBUG_DISPATCH_CYCLE
2910 ALOGD("channel '%s' ~ finishDispatchCycle - seq=%u, handled=%s",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002911 connection->getInputChannelName().c_str(), seq, toString(handled));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002912#endif
2913
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002914 if (connection->status == Connection::STATUS_BROKEN ||
2915 connection->status == Connection::STATUS_ZOMBIE) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002916 return;
2917 }
2918
2919 // Notify other system components and prepare to start the next dispatch cycle.
2920 onDispatchCycleFinishedLocked(currentTime, connection, seq, handled);
2921}
2922
2923void InputDispatcher::abortBrokenDispatchCycleLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002924 const sp<Connection>& connection,
2925 bool notify) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002926#if DEBUG_DISPATCH_CYCLE
2927 ALOGD("channel '%s' ~ abortBrokenDispatchCycle - notify=%s",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002928 connection->getInputChannelName().c_str(), toString(notify));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002929#endif
2930
2931 // Clear the dispatch queues.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002932 drainDispatchQueue(connection->outboundQueue);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002933 traceOutboundQueueLength(connection);
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002934 drainDispatchQueue(connection->waitQueue);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002935 traceWaitQueueLength(connection);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002936
2937 // The connection appears to be unrecoverably broken.
2938 // Ignore already broken or zombie connections.
2939 if (connection->status == Connection::STATUS_NORMAL) {
2940 connection->status = Connection::STATUS_BROKEN;
2941
2942 if (notify) {
2943 // Notify other system components.
2944 onDispatchCycleBrokenLocked(currentTime, connection);
2945 }
2946 }
2947}
2948
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002949void InputDispatcher::drainDispatchQueue(std::deque<DispatchEntry*>& queue) {
2950 while (!queue.empty()) {
2951 DispatchEntry* dispatchEntry = queue.front();
2952 queue.pop_front();
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08002953 releaseDispatchEntry(dispatchEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002954 }
2955}
2956
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08002957void InputDispatcher::releaseDispatchEntry(DispatchEntry* dispatchEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002958 if (dispatchEntry->hasForegroundTarget()) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07002959 decrementPendingForegroundDispatches(*(dispatchEntry->eventEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002960 }
2961 delete dispatchEntry;
2962}
2963
2964int InputDispatcher::handleReceiveCallback(int fd, int events, void* data) {
2965 InputDispatcher* d = static_cast<InputDispatcher*>(data);
2966
2967 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08002968 std::scoped_lock _l(d->mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002969
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07002970 if (d->mConnectionsByFd.find(fd) == d->mConnectionsByFd.end()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002971 ALOGE("Received spurious receive callback for unknown input channel. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002972 "fd=%d, events=0x%x",
2973 fd, events);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002974 return 0; // remove the callback
2975 }
2976
2977 bool notify;
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07002978 sp<Connection> connection = d->mConnectionsByFd[fd];
Michael Wrightd02c5b62014-02-10 15:10:22 -08002979 if (!(events & (ALOOPER_EVENT_ERROR | ALOOPER_EVENT_HANGUP))) {
2980 if (!(events & ALOOPER_EVENT_INPUT)) {
2981 ALOGW("channel '%s' ~ Received spurious callback for unhandled poll event. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002982 "events=0x%x",
2983 connection->getInputChannelName().c_str(), events);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002984 return 1;
2985 }
2986
2987 nsecs_t currentTime = now();
2988 bool gotOne = false;
2989 status_t status;
2990 for (;;) {
2991 uint32_t seq;
2992 bool handled;
2993 status = connection->inputPublisher.receiveFinishedSignal(&seq, &handled);
2994 if (status) {
2995 break;
2996 }
2997 d->finishDispatchCycleLocked(currentTime, connection, seq, handled);
2998 gotOne = true;
2999 }
3000 if (gotOne) {
3001 d->runCommandsLockedInterruptible();
3002 if (status == WOULD_BLOCK) {
3003 return 1;
3004 }
3005 }
3006
3007 notify = status != DEAD_OBJECT || !connection->monitor;
3008 if (notify) {
3009 ALOGE("channel '%s' ~ Failed to receive finished signal. status=%d",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003010 connection->getInputChannelName().c_str(), status);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003011 }
3012 } else {
3013 // Monitor channels are never explicitly unregistered.
3014 // We do it automatically when the remote endpoint is closed so don't warn
3015 // about them.
arthurhungd352cb32020-04-28 17:09:28 +08003016 const bool stillHaveWindowHandle =
3017 d->getWindowHandleLocked(connection->inputChannel->getConnectionToken()) !=
3018 nullptr;
3019 notify = !connection->monitor && stillHaveWindowHandle;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003020 if (notify) {
3021 ALOGW("channel '%s' ~ Consumer closed input channel or an error occurred. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003022 "events=0x%x",
3023 connection->getInputChannelName().c_str(), events);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003024 }
3025 }
3026
Garfield Tan15601662020-09-22 15:32:38 -07003027 // Remove the channel.
3028 d->removeInputChannelLocked(connection->inputChannel->getConnectionToken(), notify);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003029 return 0; // remove the callback
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003030 } // release lock
Michael Wrightd02c5b62014-02-10 15:10:22 -08003031}
3032
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003033void InputDispatcher::synthesizeCancelationEventsForAllConnectionsLocked(
Michael Wrightd02c5b62014-02-10 15:10:22 -08003034 const CancelationOptions& options) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003035 for (const auto& pair : mConnectionsByFd) {
3036 synthesizeCancelationEventsForConnectionLocked(pair.second, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003037 }
3038}
3039
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003040void InputDispatcher::synthesizeCancelationEventsForMonitorsLocked(
Michael Wrightfa13dcf2015-06-12 13:25:11 +01003041 const CancelationOptions& options) {
Michael Wright3dd60e22019-03-27 22:06:44 +00003042 synthesizeCancelationEventsForMonitorsLocked(options, mGlobalMonitorsByDisplay);
3043 synthesizeCancelationEventsForMonitorsLocked(options, mGestureMonitorsByDisplay);
3044}
3045
3046void InputDispatcher::synthesizeCancelationEventsForMonitorsLocked(
3047 const CancelationOptions& options,
3048 std::unordered_map<int32_t, std::vector<Monitor>>& monitorsByDisplay) {
3049 for (const auto& it : monitorsByDisplay) {
3050 const std::vector<Monitor>& monitors = it.second;
3051 for (const Monitor& monitor : monitors) {
3052 synthesizeCancelationEventsForInputChannelLocked(monitor.inputChannel, options);
Arthur Hung2fbf37f2018-09-13 18:16:41 +08003053 }
Michael Wrightfa13dcf2015-06-12 13:25:11 +01003054 }
3055}
3056
Michael Wrightd02c5b62014-02-10 15:10:22 -08003057void InputDispatcher::synthesizeCancelationEventsForInputChannelLocked(
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -05003058 const std::shared_ptr<InputChannel>& channel, const CancelationOptions& options) {
Siarhei Vishniakou26d3cfb2019-10-15 17:02:32 -07003059 sp<Connection> connection = getConnectionLocked(channel->getConnectionToken());
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003060 if (connection == nullptr) {
3061 return;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003062 }
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003063
3064 synthesizeCancelationEventsForConnectionLocked(connection, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003065}
3066
3067void InputDispatcher::synthesizeCancelationEventsForConnectionLocked(
3068 const sp<Connection>& connection, const CancelationOptions& options) {
3069 if (connection->status == Connection::STATUS_BROKEN) {
3070 return;
3071 }
3072
3073 nsecs_t currentTime = now();
3074
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003075 std::vector<std::unique_ptr<EventEntry>> cancelationEvents =
Siarhei Vishniakou00fca7c2019-10-29 13:05:57 -07003076 connection->inputState.synthesizeCancelationEvents(currentTime, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003077
Siarhei Vishniakoubd118892020-01-10 14:08:28 -08003078 if (cancelationEvents.empty()) {
3079 return;
3080 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003081#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakoubd118892020-01-10 14:08:28 -08003082 ALOGD("channel '%s' ~ Synthesized %zu cancelation events to bring channel back in sync "
3083 "with reality: %s, mode=%d.",
3084 connection->getInputChannelName().c_str(), cancelationEvents.size(), options.reason,
3085 options.mode);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003086#endif
Svet Ganov5d3bc372020-01-26 23:11:07 -08003087
3088 InputTarget target;
3089 sp<InputWindowHandle> windowHandle =
3090 getWindowHandleLocked(connection->inputChannel->getConnectionToken());
3091 if (windowHandle != nullptr) {
3092 const InputWindowInfo* windowInfo = windowHandle->getInfo();
chaviw1ff3d1e2020-07-01 15:53:47 -07003093 target.setDefaultPointerTransform(windowInfo->transform);
Svet Ganov5d3bc372020-01-26 23:11:07 -08003094 target.globalScaleFactor = windowInfo->globalScaleFactor;
3095 }
3096 target.inputChannel = connection->inputChannel;
3097 target.flags = InputTarget::FLAG_DISPATCH_AS_IS;
3098
Siarhei Vishniakoubd118892020-01-10 14:08:28 -08003099 for (size_t i = 0; i < cancelationEvents.size(); i++) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003100 std::unique_ptr<EventEntry> cancelationEventEntry = std::move(cancelationEvents[i]);
Siarhei Vishniakoubd118892020-01-10 14:08:28 -08003101 switch (cancelationEventEntry->type) {
3102 case EventEntry::Type::KEY: {
3103 logOutboundKeyDetails("cancel - ",
3104 static_cast<const KeyEntry&>(*cancelationEventEntry));
3105 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003106 }
Siarhei Vishniakoubd118892020-01-10 14:08:28 -08003107 case EventEntry::Type::MOTION: {
3108 logOutboundMotionDetails("cancel - ",
3109 static_cast<const MotionEntry&>(*cancelationEventEntry));
3110 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003111 }
Siarhei Vishniakoubd118892020-01-10 14:08:28 -08003112 case EventEntry::Type::FOCUS: {
3113 LOG_ALWAYS_FATAL("Canceling focus events is not supported");
3114 break;
3115 }
3116 case EventEntry::Type::CONFIGURATION_CHANGED:
3117 case EventEntry::Type::DEVICE_RESET: {
3118 LOG_ALWAYS_FATAL("%s event should not be found inside Connections's queue",
3119 EventEntry::typeToString(cancelationEventEntry->type));
3120 break;
3121 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003122 }
3123
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003124 enqueueDispatchEntryLocked(connection, std::move(cancelationEventEntry), target,
3125 InputTarget::FLAG_DISPATCH_AS_IS);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003126 }
Siarhei Vishniakoubd118892020-01-10 14:08:28 -08003127
3128 startDispatchCycleLocked(currentTime, connection);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003129}
3130
Svet Ganov5d3bc372020-01-26 23:11:07 -08003131void InputDispatcher::synthesizePointerDownEventsForConnectionLocked(
3132 const sp<Connection>& connection) {
3133 if (connection->status == Connection::STATUS_BROKEN) {
3134 return;
3135 }
3136
3137 nsecs_t currentTime = now();
3138
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003139 std::vector<std::unique_ptr<EventEntry>> downEvents =
Svet Ganov5d3bc372020-01-26 23:11:07 -08003140 connection->inputState.synthesizePointerDownEvents(currentTime);
3141
3142 if (downEvents.empty()) {
3143 return;
3144 }
3145
3146#if DEBUG_OUTBOUND_EVENT_DETAILS
3147 ALOGD("channel '%s' ~ Synthesized %zu down events to ensure consistent event stream.",
3148 connection->getInputChannelName().c_str(), downEvents.size());
3149#endif
3150
3151 InputTarget target;
3152 sp<InputWindowHandle> windowHandle =
3153 getWindowHandleLocked(connection->inputChannel->getConnectionToken());
3154 if (windowHandle != nullptr) {
3155 const InputWindowInfo* windowInfo = windowHandle->getInfo();
chaviw1ff3d1e2020-07-01 15:53:47 -07003156 target.setDefaultPointerTransform(windowInfo->transform);
Svet Ganov5d3bc372020-01-26 23:11:07 -08003157 target.globalScaleFactor = windowInfo->globalScaleFactor;
3158 }
3159 target.inputChannel = connection->inputChannel;
3160 target.flags = InputTarget::FLAG_DISPATCH_AS_IS;
3161
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003162 for (std::unique_ptr<EventEntry>& downEventEntry : downEvents) {
Svet Ganov5d3bc372020-01-26 23:11:07 -08003163 switch (downEventEntry->type) {
3164 case EventEntry::Type::MOTION: {
3165 logOutboundMotionDetails("down - ",
3166 static_cast<const MotionEntry&>(*downEventEntry));
3167 break;
3168 }
3169
3170 case EventEntry::Type::KEY:
3171 case EventEntry::Type::FOCUS:
3172 case EventEntry::Type::CONFIGURATION_CHANGED:
3173 case EventEntry::Type::DEVICE_RESET: {
3174 LOG_ALWAYS_FATAL("%s event should not be found inside Connections's queue",
3175 EventEntry::typeToString(downEventEntry->type));
3176 break;
3177 }
3178 }
3179
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003180 enqueueDispatchEntryLocked(connection, std::move(downEventEntry), target,
3181 InputTarget::FLAG_DISPATCH_AS_IS);
Svet Ganov5d3bc372020-01-26 23:11:07 -08003182 }
3183
3184 startDispatchCycleLocked(currentTime, connection);
3185}
3186
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003187std::unique_ptr<MotionEntry> InputDispatcher::splitMotionEvent(
3188 const MotionEntry& originalMotionEntry, BitSet32 pointerIds) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003189 ALOG_ASSERT(pointerIds.value != 0);
3190
3191 uint32_t splitPointerIndexMap[MAX_POINTERS];
3192 PointerProperties splitPointerProperties[MAX_POINTERS];
3193 PointerCoords splitPointerCoords[MAX_POINTERS];
3194
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07003195 uint32_t originalPointerCount = originalMotionEntry.pointerCount;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003196 uint32_t splitPointerCount = 0;
3197
3198 for (uint32_t originalPointerIndex = 0; originalPointerIndex < originalPointerCount;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003199 originalPointerIndex++) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003200 const PointerProperties& pointerProperties =
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07003201 originalMotionEntry.pointerProperties[originalPointerIndex];
Michael Wrightd02c5b62014-02-10 15:10:22 -08003202 uint32_t pointerId = uint32_t(pointerProperties.id);
3203 if (pointerIds.hasBit(pointerId)) {
3204 splitPointerIndexMap[splitPointerCount] = originalPointerIndex;
3205 splitPointerProperties[splitPointerCount].copyFrom(pointerProperties);
3206 splitPointerCoords[splitPointerCount].copyFrom(
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07003207 originalMotionEntry.pointerCoords[originalPointerIndex]);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003208 splitPointerCount += 1;
3209 }
3210 }
3211
3212 if (splitPointerCount != pointerIds.count()) {
3213 // This is bad. We are missing some of the pointers that we expected to deliver.
3214 // Most likely this indicates that we received an ACTION_MOVE events that has
3215 // different pointer ids than we expected based on the previous ACTION_DOWN
3216 // or ACTION_POINTER_DOWN events that caused us to decide to split the pointers
3217 // in this way.
3218 ALOGW("Dropping split motion event because the pointer count is %d but "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003219 "we expected there to be %d pointers. This probably means we received "
3220 "a broken sequence of pointer ids from the input device.",
3221 splitPointerCount, pointerIds.count());
Yi Kong9b14ac62018-07-17 13:48:38 -07003222 return nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003223 }
3224
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07003225 int32_t action = originalMotionEntry.action;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003226 int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003227 if (maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN ||
3228 maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003229 int32_t originalPointerIndex = getMotionEventActionPointerIndex(action);
3230 const PointerProperties& pointerProperties =
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07003231 originalMotionEntry.pointerProperties[originalPointerIndex];
Michael Wrightd02c5b62014-02-10 15:10:22 -08003232 uint32_t pointerId = uint32_t(pointerProperties.id);
3233 if (pointerIds.hasBit(pointerId)) {
3234 if (pointerIds.count() == 1) {
3235 // The first/last pointer went down/up.
3236 action = maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003237 ? AMOTION_EVENT_ACTION_DOWN
3238 : AMOTION_EVENT_ACTION_UP;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003239 } else {
3240 // A secondary pointer went down/up.
3241 uint32_t splitPointerIndex = 0;
3242 while (pointerId != uint32_t(splitPointerProperties[splitPointerIndex].id)) {
3243 splitPointerIndex += 1;
3244 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003245 action = maskedAction |
3246 (splitPointerIndex << AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003247 }
3248 } else {
3249 // An unrelated pointer changed.
3250 action = AMOTION_EVENT_ACTION_MOVE;
3251 }
3252 }
3253
Garfield Tanff1f1bb2020-01-28 13:24:04 -08003254 int32_t newId = mIdGenerator.nextId();
3255 if (ATRACE_ENABLED()) {
3256 std::string message = StringPrintf("Split MotionEvent(id=0x%" PRIx32
3257 ") to MotionEvent(id=0x%" PRIx32 ").",
3258 originalMotionEntry.id, newId);
3259 ATRACE_NAME(message.c_str());
3260 }
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003261 std::unique_ptr<MotionEntry> splitMotionEntry =
3262 std::make_unique<MotionEntry>(newId, originalMotionEntry.eventTime,
3263 originalMotionEntry.deviceId, originalMotionEntry.source,
3264 originalMotionEntry.displayId,
3265 originalMotionEntry.policyFlags, action,
3266 originalMotionEntry.actionButton,
3267 originalMotionEntry.flags, originalMotionEntry.metaState,
3268 originalMotionEntry.buttonState,
3269 originalMotionEntry.classification,
3270 originalMotionEntry.edgeFlags,
3271 originalMotionEntry.xPrecision,
3272 originalMotionEntry.yPrecision,
3273 originalMotionEntry.xCursorPosition,
3274 originalMotionEntry.yCursorPosition,
3275 originalMotionEntry.downTime, splitPointerCount,
3276 splitPointerProperties, splitPointerCoords, 0, 0);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003277
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07003278 if (originalMotionEntry.injectionState) {
3279 splitMotionEntry->injectionState = originalMotionEntry.injectionState;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003280 splitMotionEntry->injectionState->refCount += 1;
3281 }
3282
3283 return splitMotionEntry;
3284}
3285
3286void InputDispatcher::notifyConfigurationChanged(const NotifyConfigurationChangedArgs* args) {
3287#if DEBUG_INBOUND_EVENT_DETAILS
Siarhei Vishniakou5d83f602017-09-12 12:40:29 -07003288 ALOGD("notifyConfigurationChanged - eventTime=%" PRId64, args->eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003289#endif
3290
3291 bool needWake;
3292 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003293 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003294
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003295 std::unique_ptr<ConfigurationChangedEntry> newEntry =
3296 std::make_unique<ConfigurationChangedEntry>(args->id, args->eventTime);
3297 needWake = enqueueInboundEventLocked(std::move(newEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003298 } // release lock
3299
3300 if (needWake) {
3301 mLooper->wake();
3302 }
3303}
3304
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05003305/**
3306 * If one of the meta shortcuts is detected, process them here:
3307 * Meta + Backspace -> generate BACK
3308 * Meta + Enter -> generate HOME
3309 * This will potentially overwrite keyCode and metaState.
3310 */
3311void InputDispatcher::accelerateMetaShortcuts(const int32_t deviceId, const int32_t action,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003312 int32_t& keyCode, int32_t& metaState) {
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05003313 if (metaState & AMETA_META_ON && action == AKEY_EVENT_ACTION_DOWN) {
3314 int32_t newKeyCode = AKEYCODE_UNKNOWN;
3315 if (keyCode == AKEYCODE_DEL) {
3316 newKeyCode = AKEYCODE_BACK;
3317 } else if (keyCode == AKEYCODE_ENTER) {
3318 newKeyCode = AKEYCODE_HOME;
3319 }
3320 if (newKeyCode != AKEYCODE_UNKNOWN) {
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003321 std::scoped_lock _l(mLock);
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05003322 struct KeyReplacement replacement = {keyCode, deviceId};
Siarhei Vishniakou4700f822020-03-24 19:05:54 -07003323 mReplacedKeys[replacement] = newKeyCode;
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05003324 keyCode = newKeyCode;
3325 metaState &= ~(AMETA_META_ON | AMETA_META_LEFT_ON | AMETA_META_RIGHT_ON);
3326 }
3327 } else if (action == AKEY_EVENT_ACTION_UP) {
3328 // In order to maintain a consistent stream of up and down events, check to see if the key
3329 // going up is one we've replaced in a down event and haven't yet replaced in an up event,
3330 // even if the modifier was released between the down and the up events.
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003331 std::scoped_lock _l(mLock);
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05003332 struct KeyReplacement replacement = {keyCode, deviceId};
Siarhei Vishniakou4700f822020-03-24 19:05:54 -07003333 auto replacementIt = mReplacedKeys.find(replacement);
3334 if (replacementIt != mReplacedKeys.end()) {
3335 keyCode = replacementIt->second;
3336 mReplacedKeys.erase(replacementIt);
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05003337 metaState &= ~(AMETA_META_ON | AMETA_META_LEFT_ON | AMETA_META_RIGHT_ON);
3338 }
3339 }
3340}
3341
Michael Wrightd02c5b62014-02-10 15:10:22 -08003342void InputDispatcher::notifyKey(const NotifyKeyArgs* args) {
3343#if DEBUG_INBOUND_EVENT_DETAILS
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003344 ALOGD("notifyKey - eventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32
3345 "policyFlags=0x%x, action=0x%x, "
3346 "flags=0x%x, keyCode=0x%x, scanCode=0x%x, metaState=0x%x, downTime=%" PRId64,
3347 args->eventTime, args->deviceId, args->source, args->displayId, args->policyFlags,
3348 args->action, args->flags, args->keyCode, args->scanCode, args->metaState,
3349 args->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003350#endif
3351 if (!validateKeyEvent(args->action)) {
3352 return;
3353 }
3354
3355 uint32_t policyFlags = args->policyFlags;
3356 int32_t flags = args->flags;
3357 int32_t metaState = args->metaState;
Siarhei Vishniakou622bd322018-10-29 18:02:27 -07003358 // InputDispatcher tracks and generates key repeats on behalf of
3359 // whatever notifies it, so repeatCount should always be set to 0
3360 constexpr int32_t repeatCount = 0;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003361 if ((policyFlags & POLICY_FLAG_VIRTUAL) || (flags & AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY)) {
3362 policyFlags |= POLICY_FLAG_VIRTUAL;
3363 flags |= AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY;
3364 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003365 if (policyFlags & POLICY_FLAG_FUNCTION) {
3366 metaState |= AMETA_FUNCTION_ON;
3367 }
3368
3369 policyFlags |= POLICY_FLAG_TRUSTED;
3370
Michael Wright78f24442014-08-06 15:55:28 -07003371 int32_t keyCode = args->keyCode;
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05003372 accelerateMetaShortcuts(args->deviceId, args->action, keyCode, metaState);
Michael Wright78f24442014-08-06 15:55:28 -07003373
Michael Wrightd02c5b62014-02-10 15:10:22 -08003374 KeyEvent event;
Garfield Tan6a5a14e2020-01-28 13:24:04 -08003375 event.initialize(args->id, args->deviceId, args->source, args->displayId, INVALID_HMAC,
Garfield Tan4cc839f2020-01-24 11:26:14 -08003376 args->action, flags, keyCode, args->scanCode, metaState, repeatCount,
3377 args->downTime, args->eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003378
Michael Wright2b3c3302018-03-02 17:19:13 +00003379 android::base::Timer t;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003380 mPolicy->interceptKeyBeforeQueueing(&event, /*byref*/ policyFlags);
Michael Wright2b3c3302018-03-02 17:19:13 +00003381 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
3382 ALOGW("Excessive delay in interceptKeyBeforeQueueing; took %s ms",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003383 std::to_string(t.duration().count()).c_str());
Michael Wright2b3c3302018-03-02 17:19:13 +00003384 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003385
Michael Wrightd02c5b62014-02-10 15:10:22 -08003386 bool needWake;
3387 { // acquire lock
3388 mLock.lock();
3389
3390 if (shouldSendKeyToInputFilterLocked(args)) {
3391 mLock.unlock();
3392
3393 policyFlags |= POLICY_FLAG_FILTERED;
3394 if (!mPolicy->filterInputEvent(&event, policyFlags)) {
3395 return; // event was consumed by the filter
3396 }
3397
3398 mLock.lock();
3399 }
3400
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003401 std::unique_ptr<KeyEntry> newEntry =
3402 std::make_unique<KeyEntry>(args->id, args->eventTime, args->deviceId, args->source,
3403 args->displayId, policyFlags, args->action, flags,
3404 keyCode, args->scanCode, metaState, repeatCount,
3405 args->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003406
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003407 needWake = enqueueInboundEventLocked(std::move(newEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003408 mLock.unlock();
3409 } // release lock
3410
3411 if (needWake) {
3412 mLooper->wake();
3413 }
3414}
3415
3416bool InputDispatcher::shouldSendKeyToInputFilterLocked(const NotifyKeyArgs* args) {
3417 return mInputFilterEnabled;
3418}
3419
3420void InputDispatcher::notifyMotion(const NotifyMotionArgs* args) {
3421#if DEBUG_INBOUND_EVENT_DETAILS
Garfield Tan6a5a14e2020-01-28 13:24:04 -08003422 ALOGD("notifyMotion - id=%" PRIx32 " eventTime=%" PRId64 ", deviceId=%d, source=0x%x, "
3423 "displayId=%" PRId32 ", policyFlags=0x%x, "
Garfield Tan00f511d2019-06-12 16:55:40 -07003424 "action=0x%x, actionButton=0x%x, flags=0x%x, metaState=0x%x, buttonState=0x%x, "
3425 "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, xCursorPosition=%f, "
Garfield Tanab0ab9c2019-07-10 18:58:28 -07003426 "yCursorPosition=%f, downTime=%" PRId64,
Garfield Tan6a5a14e2020-01-28 13:24:04 -08003427 args->id, args->eventTime, args->deviceId, args->source, args->displayId,
3428 args->policyFlags, args->action, args->actionButton, args->flags, args->metaState,
3429 args->buttonState, args->edgeFlags, args->xPrecision, args->yPrecision,
3430 args->xCursorPosition, args->yCursorPosition, args->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003431 for (uint32_t i = 0; i < args->pointerCount; i++) {
3432 ALOGD(" Pointer %d: id=%d, toolType=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003433 "x=%f, y=%f, pressure=%f, size=%f, "
3434 "touchMajor=%f, touchMinor=%f, toolMajor=%f, toolMinor=%f, "
3435 "orientation=%f",
3436 i, args->pointerProperties[i].id, args->pointerProperties[i].toolType,
3437 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_X),
3438 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_Y),
3439 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_PRESSURE),
3440 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_SIZE),
3441 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR),
3442 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR),
3443 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR),
3444 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR),
3445 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003446 }
3447#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003448 if (!validateMotionEvent(args->action, args->actionButton, args->pointerCount,
3449 args->pointerProperties)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003450 return;
3451 }
3452
3453 uint32_t policyFlags = args->policyFlags;
3454 policyFlags |= POLICY_FLAG_TRUSTED;
Michael Wright2b3c3302018-03-02 17:19:13 +00003455
3456 android::base::Timer t;
Charles Chen3611f1f2019-01-29 17:26:18 +08003457 mPolicy->interceptMotionBeforeQueueing(args->displayId, args->eventTime, /*byref*/ policyFlags);
Michael Wright2b3c3302018-03-02 17:19:13 +00003458 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
3459 ALOGW("Excessive delay in interceptMotionBeforeQueueing; took %s ms",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003460 std::to_string(t.duration().count()).c_str());
Michael Wright2b3c3302018-03-02 17:19:13 +00003461 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003462
3463 bool needWake;
3464 { // acquire lock
3465 mLock.lock();
3466
3467 if (shouldSendMotionToInputFilterLocked(args)) {
3468 mLock.unlock();
3469
3470 MotionEvent event;
chaviw9eaa22c2020-07-01 16:21:27 -07003471 ui::Transform transform;
Garfield Tan6a5a14e2020-01-28 13:24:04 -08003472 event.initialize(args->id, args->deviceId, args->source, args->displayId, INVALID_HMAC,
3473 args->action, args->actionButton, args->flags, args->edgeFlags,
chaviw9eaa22c2020-07-01 16:21:27 -07003474 args->metaState, args->buttonState, args->classification, transform,
3475 args->xPrecision, args->yPrecision, args->xCursorPosition,
3476 args->yCursorPosition, args->downTime, args->eventTime,
3477 args->pointerCount, args->pointerProperties, args->pointerCoords);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003478
3479 policyFlags |= POLICY_FLAG_FILTERED;
3480 if (!mPolicy->filterInputEvent(&event, policyFlags)) {
3481 return; // event was consumed by the filter
3482 }
3483
3484 mLock.lock();
3485 }
3486
3487 // Just enqueue a new motion event.
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003488 std::unique_ptr<MotionEntry> newEntry =
3489 std::make_unique<MotionEntry>(args->id, args->eventTime, args->deviceId,
3490 args->source, args->displayId, policyFlags,
3491 args->action, args->actionButton, args->flags,
3492 args->metaState, args->buttonState,
3493 args->classification, args->edgeFlags,
3494 args->xPrecision, args->yPrecision,
3495 args->xCursorPosition, args->yCursorPosition,
3496 args->downTime, args->pointerCount,
3497 args->pointerProperties, args->pointerCoords, 0, 0);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003498
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003499 needWake = enqueueInboundEventLocked(std::move(newEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003500 mLock.unlock();
3501 } // release lock
3502
3503 if (needWake) {
3504 mLooper->wake();
3505 }
3506}
3507
3508bool InputDispatcher::shouldSendMotionToInputFilterLocked(const NotifyMotionArgs* args) {
Jackal Guof9696682018-10-05 12:23:23 +08003509 return mInputFilterEnabled;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003510}
3511
3512void InputDispatcher::notifySwitch(const NotifySwitchArgs* args) {
3513#if DEBUG_INBOUND_EVENT_DETAILS
Siarhei Vishniakou5d83f602017-09-12 12:40:29 -07003514 ALOGD("notifySwitch - eventTime=%" PRId64 ", policyFlags=0x%x, switchValues=0x%08x, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003515 "switchMask=0x%08x",
3516 args->eventTime, args->policyFlags, args->switchValues, args->switchMask);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003517#endif
3518
3519 uint32_t policyFlags = args->policyFlags;
3520 policyFlags |= POLICY_FLAG_TRUSTED;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003521 mPolicy->notifySwitch(args->eventTime, args->switchValues, args->switchMask, policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003522}
3523
3524void InputDispatcher::notifyDeviceReset(const NotifyDeviceResetArgs* args) {
3525#if DEBUG_INBOUND_EVENT_DETAILS
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003526 ALOGD("notifyDeviceReset - eventTime=%" PRId64 ", deviceId=%d", args->eventTime,
3527 args->deviceId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003528#endif
3529
3530 bool needWake;
3531 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003532 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003533
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003534 std::unique_ptr<DeviceResetEntry> newEntry =
3535 std::make_unique<DeviceResetEntry>(args->id, args->eventTime, args->deviceId);
3536 needWake = enqueueInboundEventLocked(std::move(newEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003537 } // release lock
3538
3539 if (needWake) {
3540 mLooper->wake();
3541 }
3542}
3543
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003544InputEventInjectionResult InputDispatcher::injectInputEvent(
3545 const InputEvent* event, int32_t injectorPid, int32_t injectorUid,
3546 InputEventInjectionSync syncMode, std::chrono::milliseconds timeout, uint32_t policyFlags) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003547#if DEBUG_INBOUND_EVENT_DETAILS
3548 ALOGD("injectInputEvent - eventType=%d, injectorPid=%d, injectorUid=%d, "
Siarhei Vishniakou097c3db2020-05-06 14:18:38 -07003549 "syncMode=%d, timeout=%lld, policyFlags=0x%08x",
3550 event->getType(), injectorPid, injectorUid, syncMode, timeout.count(), policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003551#endif
Siarhei Vishniakou097c3db2020-05-06 14:18:38 -07003552 nsecs_t endTime = now() + std::chrono::duration_cast<std::chrono::nanoseconds>(timeout).count();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003553
3554 policyFlags |= POLICY_FLAG_INJECTED;
3555 if (hasInjectionPermission(injectorPid, injectorUid)) {
3556 policyFlags |= POLICY_FLAG_TRUSTED;
3557 }
3558
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003559 std::queue<std::unique_ptr<EventEntry>> injectedEntries;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003560 switch (event->getType()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003561 case AINPUT_EVENT_TYPE_KEY: {
Siarhei Vishniakou0d8ed6e2020-01-17 15:48:59 -08003562 const KeyEvent& incomingKey = static_cast<const KeyEvent&>(*event);
3563 int32_t action = incomingKey.getAction();
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003564 if (!validateKeyEvent(action)) {
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003565 return InputEventInjectionResult::FAILED;
Michael Wright2b3c3302018-03-02 17:19:13 +00003566 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003567
Siarhei Vishniakou0d8ed6e2020-01-17 15:48:59 -08003568 int32_t flags = incomingKey.getFlags();
3569 int32_t keyCode = incomingKey.getKeyCode();
3570 int32_t metaState = incomingKey.getMetaState();
3571 accelerateMetaShortcuts(VIRTUAL_KEYBOARD_ID, action,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003572 /*byref*/ keyCode, /*byref*/ metaState);
Siarhei Vishniakou0d8ed6e2020-01-17 15:48:59 -08003573 KeyEvent keyEvent;
Garfield Tan4cc839f2020-01-24 11:26:14 -08003574 keyEvent.initialize(incomingKey.getId(), VIRTUAL_KEYBOARD_ID, incomingKey.getSource(),
Siarhei Vishniakou0d8ed6e2020-01-17 15:48:59 -08003575 incomingKey.getDisplayId(), INVALID_HMAC, action, flags, keyCode,
3576 incomingKey.getScanCode(), metaState, incomingKey.getRepeatCount(),
3577 incomingKey.getDownTime(), incomingKey.getEventTime());
Michael Wrightd02c5b62014-02-10 15:10:22 -08003578
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003579 if (flags & AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY) {
3580 policyFlags |= POLICY_FLAG_VIRTUAL;
Michael Wright2b3c3302018-03-02 17:19:13 +00003581 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003582
3583 if (!(policyFlags & POLICY_FLAG_FILTERED)) {
3584 android::base::Timer t;
3585 mPolicy->interceptKeyBeforeQueueing(&keyEvent, /*byref*/ policyFlags);
3586 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
3587 ALOGW("Excessive delay in interceptKeyBeforeQueueing; took %s ms",
3588 std::to_string(t.duration().count()).c_str());
3589 }
3590 }
3591
3592 mLock.lock();
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003593 std::unique_ptr<KeyEntry> injectedEntry =
3594 std::make_unique<KeyEntry>(incomingKey.getId(), incomingKey.getEventTime(),
3595 VIRTUAL_KEYBOARD_ID, incomingKey.getSource(),
3596 incomingKey.getDisplayId(), policyFlags, action,
3597 flags, keyCode, incomingKey.getScanCode(), metaState,
3598 incomingKey.getRepeatCount(),
3599 incomingKey.getDownTime());
3600 injectedEntries.push(std::move(injectedEntry));
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003601 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003602 }
3603
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003604 case AINPUT_EVENT_TYPE_MOTION: {
3605 const MotionEvent* motionEvent = static_cast<const MotionEvent*>(event);
3606 int32_t action = motionEvent->getAction();
3607 size_t pointerCount = motionEvent->getPointerCount();
3608 const PointerProperties* pointerProperties = motionEvent->getPointerProperties();
3609 int32_t actionButton = motionEvent->getActionButton();
3610 int32_t displayId = motionEvent->getDisplayId();
3611 if (!validateMotionEvent(action, actionButton, pointerCount, pointerProperties)) {
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003612 return InputEventInjectionResult::FAILED;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003613 }
3614
3615 if (!(policyFlags & POLICY_FLAG_FILTERED)) {
3616 nsecs_t eventTime = motionEvent->getEventTime();
3617 android::base::Timer t;
3618 mPolicy->interceptMotionBeforeQueueing(displayId, eventTime, /*byref*/ policyFlags);
3619 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
3620 ALOGW("Excessive delay in interceptMotionBeforeQueueing; took %s ms",
3621 std::to_string(t.duration().count()).c_str());
3622 }
3623 }
3624
3625 mLock.lock();
3626 const nsecs_t* sampleEventTimes = motionEvent->getSampleEventTimes();
3627 const PointerCoords* samplePointerCoords = motionEvent->getSamplePointerCoords();
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003628 std::unique_ptr<MotionEntry> injectedEntry =
3629 std::make_unique<MotionEntry>(motionEvent->getId(), *sampleEventTimes,
3630 VIRTUAL_KEYBOARD_ID, motionEvent->getSource(),
3631 motionEvent->getDisplayId(), policyFlags, action,
3632 actionButton, motionEvent->getFlags(),
3633 motionEvent->getMetaState(),
3634 motionEvent->getButtonState(),
3635 motionEvent->getClassification(),
3636 motionEvent->getEdgeFlags(),
3637 motionEvent->getXPrecision(),
3638 motionEvent->getYPrecision(),
3639 motionEvent->getRawXCursorPosition(),
3640 motionEvent->getRawYCursorPosition(),
3641 motionEvent->getDownTime(),
3642 uint32_t(pointerCount), pointerProperties,
3643 samplePointerCoords, motionEvent->getXOffset(),
3644 motionEvent->getYOffset());
3645 injectedEntries.push(std::move(injectedEntry));
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003646 for (size_t i = motionEvent->getHistorySize(); i > 0; i--) {
3647 sampleEventTimes += 1;
3648 samplePointerCoords += pointerCount;
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003649 std::unique_ptr<MotionEntry> nextInjectedEntry =
3650 std::make_unique<MotionEntry>(motionEvent->getId(), *sampleEventTimes,
3651 VIRTUAL_KEYBOARD_ID, motionEvent->getSource(),
3652 motionEvent->getDisplayId(), policyFlags,
3653 action, actionButton, motionEvent->getFlags(),
3654 motionEvent->getMetaState(),
3655 motionEvent->getButtonState(),
3656 motionEvent->getClassification(),
3657 motionEvent->getEdgeFlags(),
3658 motionEvent->getXPrecision(),
3659 motionEvent->getYPrecision(),
3660 motionEvent->getRawXCursorPosition(),
3661 motionEvent->getRawYCursorPosition(),
3662 motionEvent->getDownTime(),
3663 uint32_t(pointerCount), pointerProperties,
3664 samplePointerCoords,
3665 motionEvent->getXOffset(),
3666 motionEvent->getYOffset());
3667 injectedEntries.push(std::move(nextInjectedEntry));
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003668 }
3669 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003670 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003671
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003672 default:
Siarhei Vishniakou7feb2ea2019-11-25 15:11:23 -08003673 ALOGW("Cannot inject %s events", inputEventTypeToString(event->getType()));
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003674 return InputEventInjectionResult::FAILED;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003675 }
3676
3677 InjectionState* injectionState = new InjectionState(injectorPid, injectorUid);
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003678 if (syncMode == InputEventInjectionSync::NONE) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003679 injectionState->injectionIsAsync = true;
3680 }
3681
3682 injectionState->refCount += 1;
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07003683 injectedEntries.back()->injectionState = injectionState;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003684
3685 bool needWake = false;
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07003686 while (!injectedEntries.empty()) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003687 needWake |= enqueueInboundEventLocked(std::move(injectedEntries.front()));
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07003688 injectedEntries.pop();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003689 }
3690
3691 mLock.unlock();
3692
3693 if (needWake) {
3694 mLooper->wake();
3695 }
3696
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003697 InputEventInjectionResult injectionResult;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003698 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003699 std::unique_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003700
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003701 if (syncMode == InputEventInjectionSync::NONE) {
3702 injectionResult = InputEventInjectionResult::SUCCEEDED;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003703 } else {
3704 for (;;) {
3705 injectionResult = injectionState->injectionResult;
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003706 if (injectionResult != InputEventInjectionResult::PENDING) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003707 break;
3708 }
3709
3710 nsecs_t remainingTimeout = endTime - now();
3711 if (remainingTimeout <= 0) {
3712#if DEBUG_INJECTION
3713 ALOGD("injectInputEvent - Timed out waiting for injection result "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003714 "to become available.");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003715#endif
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003716 injectionResult = InputEventInjectionResult::TIMED_OUT;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003717 break;
3718 }
3719
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003720 mInjectionResultAvailable.wait_for(_l, std::chrono::nanoseconds(remainingTimeout));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003721 }
3722
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003723 if (injectionResult == InputEventInjectionResult::SUCCEEDED &&
3724 syncMode == InputEventInjectionSync::WAIT_FOR_FINISHED) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003725 while (injectionState->pendingForegroundDispatches != 0) {
3726#if DEBUG_INJECTION
3727 ALOGD("injectInputEvent - Waiting for %d pending foreground dispatches.",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003728 injectionState->pendingForegroundDispatches);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003729#endif
3730 nsecs_t remainingTimeout = endTime - now();
3731 if (remainingTimeout <= 0) {
3732#if DEBUG_INJECTION
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003733 ALOGD("injectInputEvent - Timed out waiting for pending foreground "
3734 "dispatches to finish.");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003735#endif
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003736 injectionResult = InputEventInjectionResult::TIMED_OUT;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003737 break;
3738 }
3739
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003740 mInjectionSyncFinished.wait_for(_l, std::chrono::nanoseconds(remainingTimeout));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003741 }
3742 }
3743 }
3744
3745 injectionState->release();
3746 } // release lock
3747
3748#if DEBUG_INJECTION
Siarhei Vishniakou097c3db2020-05-06 14:18:38 -07003749 ALOGD("injectInputEvent - Finished with result %d. injectorPid=%d, injectorUid=%d",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003750 injectionResult, injectorPid, injectorUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003751#endif
3752
3753 return injectionResult;
3754}
3755
Siarhei Vishniakou54d3e182020-01-15 17:38:38 -08003756std::unique_ptr<VerifiedInputEvent> InputDispatcher::verifyInputEvent(const InputEvent& event) {
Gang Wange9087892020-01-07 12:17:14 -05003757 std::array<uint8_t, 32> calculatedHmac;
3758 std::unique_ptr<VerifiedInputEvent> result;
3759 switch (event.getType()) {
3760 case AINPUT_EVENT_TYPE_KEY: {
3761 const KeyEvent& keyEvent = static_cast<const KeyEvent&>(event);
3762 VerifiedKeyEvent verifiedKeyEvent = verifiedKeyEventFromKeyEvent(keyEvent);
3763 result = std::make_unique<VerifiedKeyEvent>(verifiedKeyEvent);
chaviw09c8d2d2020-08-24 15:48:26 -07003764 calculatedHmac = sign(verifiedKeyEvent);
Gang Wange9087892020-01-07 12:17:14 -05003765 break;
3766 }
3767 case AINPUT_EVENT_TYPE_MOTION: {
3768 const MotionEvent& motionEvent = static_cast<const MotionEvent&>(event);
3769 VerifiedMotionEvent verifiedMotionEvent =
3770 verifiedMotionEventFromMotionEvent(motionEvent);
3771 result = std::make_unique<VerifiedMotionEvent>(verifiedMotionEvent);
chaviw09c8d2d2020-08-24 15:48:26 -07003772 calculatedHmac = sign(verifiedMotionEvent);
Gang Wange9087892020-01-07 12:17:14 -05003773 break;
3774 }
3775 default: {
3776 ALOGE("Cannot verify events of type %" PRId32, event.getType());
3777 return nullptr;
3778 }
3779 }
3780 if (calculatedHmac == INVALID_HMAC) {
3781 return nullptr;
3782 }
3783 if (calculatedHmac != event.getHmac()) {
3784 return nullptr;
3785 }
3786 return result;
Siarhei Vishniakou54d3e182020-01-15 17:38:38 -08003787}
3788
Michael Wrightd02c5b62014-02-10 15:10:22 -08003789bool InputDispatcher::hasInjectionPermission(int32_t injectorPid, int32_t injectorUid) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003790 return injectorUid == 0 ||
3791 mPolicy->checkInjectEventsPermissionNonReentrant(injectorPid, injectorUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003792}
3793
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003794void InputDispatcher::setInjectionResult(EventEntry& entry,
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003795 InputEventInjectionResult injectionResult) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003796 InjectionState* injectionState = entry.injectionState;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003797 if (injectionState) {
3798#if DEBUG_INJECTION
3799 ALOGD("Setting input event injection result to %d. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003800 "injectorPid=%d, injectorUid=%d",
3801 injectionResult, injectionState->injectorPid, injectionState->injectorUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003802#endif
3803
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003804 if (injectionState->injectionIsAsync && !(entry.policyFlags & POLICY_FLAG_FILTERED)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003805 // Log the outcome since the injector did not wait for the injection result.
3806 switch (injectionResult) {
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003807 case InputEventInjectionResult::SUCCEEDED:
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003808 ALOGV("Asynchronous input event injection succeeded.");
3809 break;
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003810 case InputEventInjectionResult::FAILED:
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003811 ALOGW("Asynchronous input event injection failed.");
3812 break;
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003813 case InputEventInjectionResult::PERMISSION_DENIED:
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003814 ALOGW("Asynchronous input event injection permission denied.");
3815 break;
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003816 case InputEventInjectionResult::TIMED_OUT:
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003817 ALOGW("Asynchronous input event injection timed out.");
3818 break;
Siarhei Vishniakouae6229e2019-12-30 16:23:19 -08003819 case InputEventInjectionResult::PENDING:
3820 ALOGE("Setting result to 'PENDING' for asynchronous injection");
3821 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003822 }
3823 }
3824
3825 injectionState->injectionResult = injectionResult;
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003826 mInjectionResultAvailable.notify_all();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003827 }
3828}
3829
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003830void InputDispatcher::incrementPendingForegroundDispatches(EventEntry& entry) {
3831 InjectionState* injectionState = entry.injectionState;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003832 if (injectionState) {
3833 injectionState->pendingForegroundDispatches += 1;
3834 }
3835}
3836
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07003837void InputDispatcher::decrementPendingForegroundDispatches(EventEntry& entry) {
3838 InjectionState* injectionState = entry.injectionState;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003839 if (injectionState) {
3840 injectionState->pendingForegroundDispatches -= 1;
3841
3842 if (injectionState->pendingForegroundDispatches == 0) {
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003843 mInjectionSyncFinished.notify_all();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003844 }
3845 }
3846}
3847
Vishnu Nairad321cd2020-08-20 16:40:21 -07003848const std::vector<sp<InputWindowHandle>>& InputDispatcher::getWindowHandlesLocked(
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003849 int32_t displayId) const {
Vishnu Nairad321cd2020-08-20 16:40:21 -07003850 static const std::vector<sp<InputWindowHandle>> EMPTY_WINDOW_HANDLES;
3851 auto it = mWindowHandlesByDisplay.find(displayId);
3852 return it != mWindowHandlesByDisplay.end() ? it->second : EMPTY_WINDOW_HANDLES;
Arthur Hungb92218b2018-08-14 12:00:21 +08003853}
3854
Michael Wrightd02c5b62014-02-10 15:10:22 -08003855sp<InputWindowHandle> InputDispatcher::getWindowHandleLocked(
chaviwfbe5d9c2018-12-26 12:23:37 -08003856 const sp<IBinder>& windowHandleToken) const {
arthurhungbe737672020-06-24 12:29:21 +08003857 if (windowHandleToken == nullptr) {
3858 return nullptr;
3859 }
3860
Arthur Hungb92218b2018-08-14 12:00:21 +08003861 for (auto& it : mWindowHandlesByDisplay) {
Vishnu Nairad321cd2020-08-20 16:40:21 -07003862 const std::vector<sp<InputWindowHandle>>& windowHandles = it.second;
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003863 for (const sp<InputWindowHandle>& windowHandle : windowHandles) {
chaviwfbe5d9c2018-12-26 12:23:37 -08003864 if (windowHandle->getToken() == windowHandleToken) {
Arthur Hungb92218b2018-08-14 12:00:21 +08003865 return windowHandle;
3866 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003867 }
3868 }
Yi Kong9b14ac62018-07-17 13:48:38 -07003869 return nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003870}
3871
Vishnu Nairad321cd2020-08-20 16:40:21 -07003872sp<InputWindowHandle> InputDispatcher::getWindowHandleLocked(const sp<IBinder>& windowHandleToken,
3873 int displayId) const {
3874 if (windowHandleToken == nullptr) {
3875 return nullptr;
3876 }
3877
3878 for (const sp<InputWindowHandle>& windowHandle : getWindowHandlesLocked(displayId)) {
3879 if (windowHandle->getToken() == windowHandleToken) {
3880 return windowHandle;
3881 }
3882 }
3883 return nullptr;
3884}
3885
3886sp<InputWindowHandle> InputDispatcher::getFocusedWindowHandleLocked(int displayId) const {
3887 sp<IBinder> focusedToken = getValueByKey(mFocusedWindowTokenByDisplay, displayId);
3888 return getWindowHandleLocked(focusedToken, displayId);
3889}
3890
Mady Mellor017bcd12020-06-23 19:12:00 +00003891bool InputDispatcher::hasWindowHandleLocked(const sp<InputWindowHandle>& windowHandle) const {
3892 for (auto& it : mWindowHandlesByDisplay) {
Vishnu Nairad321cd2020-08-20 16:40:21 -07003893 const std::vector<sp<InputWindowHandle>>& windowHandles = it.second;
Mady Mellor017bcd12020-06-23 19:12:00 +00003894 for (const sp<InputWindowHandle>& handle : windowHandles) {
arthurhungbe737672020-06-24 12:29:21 +08003895 if (handle->getId() == windowHandle->getId() &&
3896 handle->getToken() == windowHandle->getToken()) {
Mady Mellor017bcd12020-06-23 19:12:00 +00003897 if (windowHandle->getInfo()->displayId != it.first) {
3898 ALOGE("Found window %s in display %" PRId32
3899 ", but it should belong to display %" PRId32,
3900 windowHandle->getName().c_str(), it.first,
3901 windowHandle->getInfo()->displayId);
3902 }
3903 return true;
Arthur Hungb92218b2018-08-14 12:00:21 +08003904 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003905 }
3906 }
3907 return false;
3908}
3909
Siarhei Vishniakoua2862a02020-07-20 16:36:46 -05003910bool InputDispatcher::hasResponsiveConnectionLocked(InputWindowHandle& windowHandle) const {
3911 sp<Connection> connection = getConnectionLocked(windowHandle.getToken());
3912 const bool noInputChannel =
3913 windowHandle.getInfo()->inputFeatures.test(InputWindowInfo::Feature::NO_INPUT_CHANNEL);
3914 if (connection != nullptr && noInputChannel) {
3915 ALOGW("%s has feature NO_INPUT_CHANNEL, but it matched to connection %s",
3916 windowHandle.getName().c_str(), connection->inputChannel->getName().c_str());
3917 return false;
3918 }
3919
3920 if (connection == nullptr) {
3921 if (!noInputChannel) {
3922 ALOGI("Could not find connection for %s", windowHandle.getName().c_str());
3923 }
3924 return false;
3925 }
3926 if (!connection->responsive) {
3927 ALOGW("Window %s is not responsive", windowHandle.getName().c_str());
3928 return false;
3929 }
3930 return true;
3931}
3932
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -05003933std::shared_ptr<InputChannel> InputDispatcher::getInputChannelLocked(
3934 const sp<IBinder>& token) const {
Robert Carr5c8a0262018-10-03 16:30:44 -07003935 size_t count = mInputChannelsByToken.count(token);
3936 if (count == 0) {
3937 return nullptr;
3938 }
3939 return mInputChannelsByToken.at(token);
3940}
3941
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003942void InputDispatcher::updateWindowHandlesForDisplayLocked(
3943 const std::vector<sp<InputWindowHandle>>& inputWindowHandles, int32_t displayId) {
3944 if (inputWindowHandles.empty()) {
3945 // Remove all handles on a display if there are no windows left.
3946 mWindowHandlesByDisplay.erase(displayId);
3947 return;
3948 }
3949
3950 // Since we compare the pointer of input window handles across window updates, we need
3951 // to make sure the handle object for the same window stays unchanged across updates.
3952 const std::vector<sp<InputWindowHandle>>& oldHandles = getWindowHandlesLocked(displayId);
chaviwaf87b3e2019-10-01 16:59:28 -07003953 std::unordered_map<int32_t /*id*/, sp<InputWindowHandle>> oldHandlesById;
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003954 for (const sp<InputWindowHandle>& handle : oldHandles) {
chaviwaf87b3e2019-10-01 16:59:28 -07003955 oldHandlesById[handle->getId()] = handle;
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003956 }
3957
3958 std::vector<sp<InputWindowHandle>> newHandles;
3959 for (const sp<InputWindowHandle>& handle : inputWindowHandles) {
3960 if (!handle->updateInfo()) {
3961 // handle no longer valid
3962 continue;
3963 }
3964
3965 const InputWindowInfo* info = handle->getInfo();
3966 if ((getInputChannelLocked(handle->getToken()) == nullptr &&
3967 info->portalToDisplayId == ADISPLAY_ID_NONE)) {
3968 const bool noInputChannel =
Michael Wright44753b12020-07-08 13:48:11 +01003969 info->inputFeatures.test(InputWindowInfo::Feature::NO_INPUT_CHANNEL);
3970 const bool canReceiveInput = !info->flags.test(InputWindowInfo::Flag::NOT_TOUCHABLE) ||
3971 !info->flags.test(InputWindowInfo::Flag::NOT_FOCUSABLE);
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003972 if (canReceiveInput && !noInputChannel) {
John Recke0710582019-09-26 13:46:12 -07003973 ALOGV("Window handle %s has no registered input channel",
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003974 handle->getName().c_str());
Robert Carr2984b7a2020-04-13 17:06:45 -07003975 continue;
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003976 }
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003977 }
3978
3979 if (info->displayId != displayId) {
3980 ALOGE("Window %s updated by wrong display %d, should belong to display %d",
3981 handle->getName().c_str(), displayId, info->displayId);
3982 continue;
3983 }
3984
Robert Carredd13602020-04-13 17:24:34 -07003985 if ((oldHandlesById.find(handle->getId()) != oldHandlesById.end()) &&
3986 (oldHandlesById.at(handle->getId())->getToken() == handle->getToken())) {
chaviwaf87b3e2019-10-01 16:59:28 -07003987 const sp<InputWindowHandle>& oldHandle = oldHandlesById.at(handle->getId());
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003988 oldHandle->updateFrom(handle);
3989 newHandles.push_back(oldHandle);
3990 } else {
3991 newHandles.push_back(handle);
3992 }
3993 }
3994
3995 // Insert or replace
3996 mWindowHandlesByDisplay[displayId] = newHandles;
3997}
3998
Arthur Hung72d8dc32020-03-28 00:48:39 +00003999void InputDispatcher::setInputWindows(
4000 const std::unordered_map<int32_t, std::vector<sp<InputWindowHandle>>>& handlesPerDisplay) {
4001 { // acquire lock
4002 std::scoped_lock _l(mLock);
4003 for (auto const& i : handlesPerDisplay) {
4004 setInputWindowsLocked(i.second, i.first);
4005 }
4006 }
4007 // Wake up poll loop since it may need to make new input dispatching choices.
4008 mLooper->wake();
4009}
4010
Arthur Hungb92218b2018-08-14 12:00:21 +08004011/**
4012 * Called from InputManagerService, update window handle list by displayId that can receive input.
4013 * A window handle contains information about InputChannel, Touch Region, Types, Focused,...
4014 * If set an empty list, remove all handles from the specific display.
4015 * For focused handle, check if need to change and send a cancel event to previous one.
4016 * For removed handle, check if need to send a cancel event if already in touch.
4017 */
Arthur Hung72d8dc32020-03-28 00:48:39 +00004018void InputDispatcher::setInputWindowsLocked(
4019 const std::vector<sp<InputWindowHandle>>& inputWindowHandles, int32_t displayId) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004020 if (DEBUG_FOCUS) {
4021 std::string windowList;
4022 for (const sp<InputWindowHandle>& iwh : inputWindowHandles) {
4023 windowList += iwh->getName() + " ";
4024 }
4025 ALOGD("setInputWindows displayId=%" PRId32 " %s", displayId, windowList.c_str());
4026 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004027
Siarhei Vishniakoua2862a02020-07-20 16:36:46 -05004028 // Ensure all tokens are null if the window has feature NO_INPUT_CHANNEL
4029 for (const sp<InputWindowHandle>& window : inputWindowHandles) {
4030 const bool noInputWindow =
4031 window->getInfo()->inputFeatures.test(InputWindowInfo::Feature::NO_INPUT_CHANNEL);
4032 if (noInputWindow && window->getToken() != nullptr) {
4033 ALOGE("%s has feature NO_INPUT_WINDOW, but a non-null token. Clearing",
4034 window->getName().c_str());
4035 window->releaseChannel();
4036 }
4037 }
4038
Arthur Hung72d8dc32020-03-28 00:48:39 +00004039 // Copy old handles for release if they are no longer present.
4040 const std::vector<sp<InputWindowHandle>> oldWindowHandles = getWindowHandlesLocked(displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004041
Arthur Hung72d8dc32020-03-28 00:48:39 +00004042 updateWindowHandlesForDisplayLocked(inputWindowHandles, displayId);
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07004043
Vishnu Nair958da932020-08-21 17:12:37 -07004044 const std::vector<sp<InputWindowHandle>>& windowHandles = getWindowHandlesLocked(displayId);
4045 if (mLastHoverWindowHandle &&
4046 std::find(windowHandles.begin(), windowHandles.end(), mLastHoverWindowHandle) ==
4047 windowHandles.end()) {
Arthur Hung72d8dc32020-03-28 00:48:39 +00004048 mLastHoverWindowHandle = nullptr;
4049 }
4050
Vishnu Nair958da932020-08-21 17:12:37 -07004051 sp<IBinder> focusedToken = getValueByKey(mFocusedWindowTokenByDisplay, displayId);
4052 if (focusedToken) {
4053 FocusResult result = checkTokenFocusableLocked(focusedToken, displayId);
4054 if (result != FocusResult::OK) {
4055 onFocusChangedLocked(focusedToken, nullptr, displayId, typeToString(result));
4056 }
4057 }
4058
4059 std::optional<FocusRequest> focusRequest =
4060 getOptionalValueByKey(mPendingFocusRequests, displayId);
4061 if (focusRequest) {
4062 // If the window from the pending request is now visible, provide it focus.
4063 FocusResult result = handleFocusRequestLocked(*focusRequest);
4064 if (result != FocusResult::NOT_VISIBLE) {
4065 // Drop the request if we were able to change the focus or we cannot change
4066 // it for another reason.
4067 mPendingFocusRequests.erase(displayId);
4068 }
Arthur Hung72d8dc32020-03-28 00:48:39 +00004069 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004070
Siarhei Vishniakou4700f822020-03-24 19:05:54 -07004071 std::unordered_map<int32_t, TouchState>::iterator stateIt =
4072 mTouchStatesByDisplay.find(displayId);
4073 if (stateIt != mTouchStatesByDisplay.end()) {
4074 TouchState& state = stateIt->second;
Arthur Hung72d8dc32020-03-28 00:48:39 +00004075 for (size_t i = 0; i < state.windows.size();) {
4076 TouchedWindow& touchedWindow = state.windows[i];
Mady Mellor017bcd12020-06-23 19:12:00 +00004077 if (!hasWindowHandleLocked(touchedWindow.windowHandle)) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004078 if (DEBUG_FOCUS) {
Arthur Hung72d8dc32020-03-28 00:48:39 +00004079 ALOGD("Touched window was removed: %s in display %" PRId32,
4080 touchedWindow.windowHandle->getName().c_str(), displayId);
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004081 }
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -05004082 std::shared_ptr<InputChannel> touchedInputChannel =
Arthur Hung72d8dc32020-03-28 00:48:39 +00004083 getInputChannelLocked(touchedWindow.windowHandle->getToken());
4084 if (touchedInputChannel != nullptr) {
4085 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
4086 "touched window was removed");
4087 synthesizeCancelationEventsForInputChannelLocked(touchedInputChannel, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004088 }
Arthur Hung72d8dc32020-03-28 00:48:39 +00004089 state.windows.erase(state.windows.begin() + i);
4090 } else {
4091 ++i;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004092 }
4093 }
Arthur Hung72d8dc32020-03-28 00:48:39 +00004094 }
Arthur Hung25e2af12020-03-26 12:58:37 +00004095
Arthur Hung72d8dc32020-03-28 00:48:39 +00004096 // Release information for windows that are no longer present.
4097 // This ensures that unused input channels are released promptly.
4098 // Otherwise, they might stick around until the window handle is destroyed
4099 // which might not happen until the next GC.
4100 for (const sp<InputWindowHandle>& oldWindowHandle : oldWindowHandles) {
Mady Mellor017bcd12020-06-23 19:12:00 +00004101 if (!hasWindowHandleLocked(oldWindowHandle)) {
Arthur Hung72d8dc32020-03-28 00:48:39 +00004102 if (DEBUG_FOCUS) {
4103 ALOGD("Window went away: %s", oldWindowHandle->getName().c_str());
Arthur Hung25e2af12020-03-26 12:58:37 +00004104 }
Arthur Hung72d8dc32020-03-28 00:48:39 +00004105 oldWindowHandle->releaseChannel();
Arthur Hung25e2af12020-03-26 12:58:37 +00004106 }
chaviw291d88a2019-02-14 10:33:58 -08004107 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004108}
4109
4110void InputDispatcher::setFocusedApplication(
Chris Yea209fde2020-07-22 13:54:51 -07004111 int32_t displayId, const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004112 if (DEBUG_FOCUS) {
4113 ALOGD("setFocusedApplication displayId=%" PRId32 " %s", displayId,
4114 inputApplicationHandle ? inputApplicationHandle->getName().c_str() : "<nullptr>");
4115 }
Siarhei Vishniakoue41c4512020-09-08 19:35:58 -05004116 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004117 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004118
Chris Yea209fde2020-07-22 13:54:51 -07004119 std::shared_ptr<InputApplicationHandle> oldFocusedApplicationHandle =
Tiger Huang721e26f2018-07-24 22:26:19 +08004120 getValueByKey(mFocusedApplicationHandlesByDisplay, displayId);
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004121
Siarhei Vishniakoue41c4512020-09-08 19:35:58 -05004122 if (sharedPointersEqual(oldFocusedApplicationHandle, inputApplicationHandle)) {
4123 return; // This application is already focused. No need to wake up or change anything.
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004124 }
4125
Chris Yea209fde2020-07-22 13:54:51 -07004126 // Set the new application handle.
Siarhei Vishniakoue41c4512020-09-08 19:35:58 -05004127 if (inputApplicationHandle != nullptr) {
4128 mFocusedApplicationHandlesByDisplay[displayId] = inputApplicationHandle;
4129 } else {
4130 mFocusedApplicationHandlesByDisplay.erase(displayId);
4131 }
4132
4133 // No matter what the old focused application was, stop waiting on it because it is
4134 // no longer focused.
4135 resetNoFocusedWindowTimeoutLocked();
Michael Wrightd02c5b62014-02-10 15:10:22 -08004136 } // release lock
4137
4138 // Wake up poll loop since it may need to make new input dispatching choices.
4139 mLooper->wake();
4140}
4141
Tiger Huang721e26f2018-07-24 22:26:19 +08004142/**
4143 * Sets the focused display, which is responsible for receiving focus-dispatched input events where
4144 * the display not specified.
4145 *
4146 * We track any unreleased events for each window. If a window loses the ability to receive the
4147 * released event, we will send a cancel event to it. So when the focused display is changed, we
4148 * cancel all the unreleased display-unspecified events for the focused window on the old focused
4149 * display. The display-specified events won't be affected.
4150 */
4151void InputDispatcher::setFocusedDisplay(int32_t displayId) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004152 if (DEBUG_FOCUS) {
4153 ALOGD("setFocusedDisplay displayId=%" PRId32, displayId);
4154 }
Tiger Huang721e26f2018-07-24 22:26:19 +08004155 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004156 std::scoped_lock _l(mLock);
Tiger Huang721e26f2018-07-24 22:26:19 +08004157
4158 if (mFocusedDisplayId != displayId) {
Vishnu Nairad321cd2020-08-20 16:40:21 -07004159 sp<IBinder> oldFocusedWindowToken =
4160 getValueByKey(mFocusedWindowTokenByDisplay, mFocusedDisplayId);
4161 if (oldFocusedWindowToken != nullptr) {
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -05004162 std::shared_ptr<InputChannel> inputChannel =
Vishnu Nairad321cd2020-08-20 16:40:21 -07004163 getInputChannelLocked(oldFocusedWindowToken);
Tiger Huang721e26f2018-07-24 22:26:19 +08004164 if (inputChannel != nullptr) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004165 CancelationOptions
4166 options(CancelationOptions::CANCEL_NON_POINTER_EVENTS,
4167 "The display which contains this window no longer has focus.");
Michael Wright3dd60e22019-03-27 22:06:44 +00004168 options.displayId = ADISPLAY_ID_NONE;
Tiger Huang721e26f2018-07-24 22:26:19 +08004169 synthesizeCancelationEventsForInputChannelLocked(inputChannel, options);
4170 }
4171 }
4172 mFocusedDisplayId = displayId;
4173
Chris Ye3c2d6f52020-08-09 10:39:48 -07004174 // Find new focused window and validate
Vishnu Nairad321cd2020-08-20 16:40:21 -07004175 sp<IBinder> newFocusedWindowToken =
4176 getValueByKey(mFocusedWindowTokenByDisplay, displayId);
4177 notifyFocusChangedLocked(oldFocusedWindowToken, newFocusedWindowToken);
Robert Carrf759f162018-11-13 12:57:11 -08004178
Vishnu Nairad321cd2020-08-20 16:40:21 -07004179 if (newFocusedWindowToken == nullptr) {
Tiger Huang721e26f2018-07-24 22:26:19 +08004180 ALOGW("Focused display #%" PRId32 " does not have a focused window.", displayId);
Vishnu Nairad321cd2020-08-20 16:40:21 -07004181 if (!mFocusedWindowTokenByDisplay.empty()) {
4182 ALOGE("But another display has a focused window\n%s",
4183 dumpFocusedWindowsLocked().c_str());
Tiger Huang721e26f2018-07-24 22:26:19 +08004184 }
4185 }
4186 }
4187
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004188 if (DEBUG_FOCUS) {
4189 logDispatchStateLocked();
4190 }
Tiger Huang721e26f2018-07-24 22:26:19 +08004191 } // release lock
4192
4193 // Wake up poll loop since it may need to make new input dispatching choices.
4194 mLooper->wake();
4195}
4196
Michael Wrightd02c5b62014-02-10 15:10:22 -08004197void InputDispatcher::setInputDispatchMode(bool enabled, bool frozen) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004198 if (DEBUG_FOCUS) {
4199 ALOGD("setInputDispatchMode: enabled=%d, frozen=%d", enabled, frozen);
4200 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004201
4202 bool changed;
4203 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004204 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004205
4206 if (mDispatchEnabled != enabled || mDispatchFrozen != frozen) {
4207 if (mDispatchFrozen && !frozen) {
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004208 resetNoFocusedWindowTimeoutLocked();
Michael Wrightd02c5b62014-02-10 15:10:22 -08004209 }
4210
4211 if (mDispatchEnabled && !enabled) {
4212 resetAndDropEverythingLocked("dispatcher is being disabled");
4213 }
4214
4215 mDispatchEnabled = enabled;
4216 mDispatchFrozen = frozen;
4217 changed = true;
4218 } else {
4219 changed = false;
4220 }
4221
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004222 if (DEBUG_FOCUS) {
4223 logDispatchStateLocked();
4224 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004225 } // release lock
4226
4227 if (changed) {
4228 // Wake up poll loop since it may need to make new input dispatching choices.
4229 mLooper->wake();
4230 }
4231}
4232
4233void InputDispatcher::setInputFilterEnabled(bool enabled) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004234 if (DEBUG_FOCUS) {
4235 ALOGD("setInputFilterEnabled: enabled=%d", enabled);
4236 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004237
4238 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004239 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004240
4241 if (mInputFilterEnabled == enabled) {
4242 return;
4243 }
4244
4245 mInputFilterEnabled = enabled;
4246 resetAndDropEverythingLocked("input filter is being enabled or disabled");
4247 } // release lock
4248
4249 // Wake up poll loop since there might be work to do to drop everything.
4250 mLooper->wake();
4251}
4252
Siarhei Vishniakouf3bc1aa2019-11-25 13:48:53 -08004253void InputDispatcher::setInTouchMode(bool inTouchMode) {
4254 std::scoped_lock lock(mLock);
4255 mInTouchMode = inTouchMode;
4256}
4257
Bernardo Rufinoea97d182020-08-19 14:43:14 +01004258void InputDispatcher::setMaximumObscuringOpacityForTouch(float opacity) {
4259 if (opacity < 0 || opacity > 1) {
4260 LOG_ALWAYS_FATAL("Maximum obscuring opacity for touch should be >= 0 and <= 1");
4261 return;
4262 }
4263
4264 std::scoped_lock lock(mLock);
4265 mMaximumObscuringOpacityForTouch = opacity;
4266}
4267
4268void InputDispatcher::setBlockUntrustedTouchesMode(BlockUntrustedTouchesMode mode) {
4269 std::scoped_lock lock(mLock);
4270 mBlockUntrustedTouchesMode = mode;
4271}
4272
chaviwfbe5d9c2018-12-26 12:23:37 -08004273bool InputDispatcher::transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) {
4274 if (fromToken == toToken) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004275 if (DEBUG_FOCUS) {
4276 ALOGD("Trivial transfer to same window.");
4277 }
chaviwfbe5d9c2018-12-26 12:23:37 -08004278 return true;
4279 }
4280
Michael Wrightd02c5b62014-02-10 15:10:22 -08004281 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004282 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004283
chaviwfbe5d9c2018-12-26 12:23:37 -08004284 sp<InputWindowHandle> fromWindowHandle = getWindowHandleLocked(fromToken);
4285 sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(toToken);
Yi Kong9b14ac62018-07-17 13:48:38 -07004286 if (fromWindowHandle == nullptr || toWindowHandle == nullptr) {
chaviwfbe5d9c2018-12-26 12:23:37 -08004287 ALOGW("Cannot transfer focus because from or to window not found.");
Michael Wrightd02c5b62014-02-10 15:10:22 -08004288 return false;
4289 }
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004290 if (DEBUG_FOCUS) {
4291 ALOGD("transferTouchFocus: fromWindowHandle=%s, toWindowHandle=%s",
4292 fromWindowHandle->getName().c_str(), toWindowHandle->getName().c_str());
4293 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004294 if (fromWindowHandle->getInfo()->displayId != toWindowHandle->getInfo()->displayId) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004295 if (DEBUG_FOCUS) {
4296 ALOGD("Cannot transfer focus because windows are on different displays.");
4297 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004298 return false;
4299 }
4300
4301 bool found = false;
Siarhei Vishniakou4700f822020-03-24 19:05:54 -07004302 for (std::pair<const int32_t, TouchState>& pair : mTouchStatesByDisplay) {
4303 TouchState& state = pair.second;
Jeff Brownf086ddb2014-02-11 14:28:48 -08004304 for (size_t i = 0; i < state.windows.size(); i++) {
4305 const TouchedWindow& touchedWindow = state.windows[i];
4306 if (touchedWindow.windowHandle == fromWindowHandle) {
4307 int32_t oldTargetFlags = touchedWindow.targetFlags;
4308 BitSet32 pointerIds = touchedWindow.pointerIds;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004309
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08004310 state.windows.erase(state.windows.begin() + i);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004311
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004312 int32_t newTargetFlags = oldTargetFlags &
4313 (InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_SPLIT |
4314 InputTarget::FLAG_DISPATCH_AS_IS);
Jeff Brownf086ddb2014-02-11 14:28:48 -08004315 state.addOrUpdateWindow(toWindowHandle, newTargetFlags, pointerIds);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004316
Jeff Brownf086ddb2014-02-11 14:28:48 -08004317 found = true;
4318 goto Found;
4319 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004320 }
4321 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004322 Found:
Michael Wrightd02c5b62014-02-10 15:10:22 -08004323
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004324 if (!found) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004325 if (DEBUG_FOCUS) {
4326 ALOGD("Focus transfer failed because from window did not have focus.");
4327 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004328 return false;
4329 }
4330
Siarhei Vishniakoud0d71b62019-10-14 14:50:45 -07004331 sp<Connection> fromConnection = getConnectionLocked(fromToken);
4332 sp<Connection> toConnection = getConnectionLocked(toToken);
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004333 if (fromConnection != nullptr && toConnection != nullptr) {
Svet Ganov5d3bc372020-01-26 23:11:07 -08004334 fromConnection->inputState.mergePointerStateTo(toConnection->inputState);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004335 CancelationOptions
4336 options(CancelationOptions::CANCEL_POINTER_EVENTS,
4337 "transferring touch focus from this window to another window");
Michael Wrightd02c5b62014-02-10 15:10:22 -08004338 synthesizeCancelationEventsForConnectionLocked(fromConnection, options);
Svet Ganov5d3bc372020-01-26 23:11:07 -08004339 synthesizePointerDownEventsForConnectionLocked(toConnection);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004340 }
4341
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004342 if (DEBUG_FOCUS) {
4343 logDispatchStateLocked();
4344 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004345 } // release lock
4346
4347 // Wake up poll loop since it may need to make new input dispatching choices.
4348 mLooper->wake();
4349 return true;
4350}
4351
4352void InputDispatcher::resetAndDropEverythingLocked(const char* reason) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01004353 if (DEBUG_FOCUS) {
4354 ALOGD("Resetting and dropping all events (%s).", reason);
4355 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004356
4357 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS, reason);
4358 synthesizeCancelationEventsForAllConnectionsLocked(options);
4359
4360 resetKeyRepeatLocked();
4361 releasePendingEventLocked();
4362 drainInboundQueueLocked();
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004363 resetNoFocusedWindowTimeoutLocked();
Michael Wrightd02c5b62014-02-10 15:10:22 -08004364
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004365 mAnrTracker.clear();
Jeff Brownf086ddb2014-02-11 14:28:48 -08004366 mTouchStatesByDisplay.clear();
Michael Wrightd02c5b62014-02-10 15:10:22 -08004367 mLastHoverWindowHandle.clear();
Michael Wright78f24442014-08-06 15:55:28 -07004368 mReplacedKeys.clear();
Michael Wrightd02c5b62014-02-10 15:10:22 -08004369}
4370
4371void InputDispatcher::logDispatchStateLocked() {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004372 std::string dump;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004373 dumpDispatchStateLocked(dump);
4374
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004375 std::istringstream stream(dump);
4376 std::string line;
4377
4378 while (std::getline(stream, line, '\n')) {
4379 ALOGD("%s", line.c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004380 }
4381}
4382
Vishnu Nairad321cd2020-08-20 16:40:21 -07004383std::string InputDispatcher::dumpFocusedWindowsLocked() {
4384 if (mFocusedWindowTokenByDisplay.empty()) {
4385 return INDENT "FocusedWindows: <none>\n";
4386 }
4387
4388 std::string dump;
4389 dump += INDENT "FocusedWindows:\n";
4390 for (auto& it : mFocusedWindowTokenByDisplay) {
4391 const int32_t displayId = it.first;
4392 const sp<InputWindowHandle> windowHandle = getFocusedWindowHandleLocked(displayId);
4393 if (windowHandle) {
4394 dump += StringPrintf(INDENT2 "displayId=%" PRId32 ", name='%s'\n", displayId,
4395 windowHandle->getName().c_str());
4396 } else {
4397 dump += StringPrintf(INDENT2 "displayId=%" PRId32
4398 " has focused token without a window'\n",
4399 displayId);
4400 }
4401 }
4402 return dump;
4403}
4404
Siarhei Vishniakouad991402020-10-28 11:40:09 -05004405std::string InputDispatcher::dumpPendingFocusRequestsLocked() {
4406 if (mPendingFocusRequests.empty()) {
4407 return INDENT "mPendingFocusRequests: <none>\n";
4408 }
4409
4410 std::string dump;
4411 dump += INDENT "mPendingFocusRequests:\n";
4412 for (const auto& [displayId, focusRequest] : mPendingFocusRequests) {
4413 // Rather than printing raw values for focusRequest.token and focusRequest.focusedToken,
4414 // try to resolve them to actual windows.
4415 std::string windowName = getConnectionNameLocked(focusRequest.token);
4416 std::string focusedWindowName = getConnectionNameLocked(focusRequest.focusedToken);
4417 dump += StringPrintf(INDENT2 "displayId=%" PRId32 ", token->%s, focusedToken->%s\n",
4418 displayId, windowName.c_str(), focusedWindowName.c_str());
4419 }
4420 return dump;
4421}
4422
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004423void InputDispatcher::dumpDispatchStateLocked(std::string& dump) {
Siarhei Vishniakou043a3ec2019-05-01 11:30:46 -07004424 dump += StringPrintf(INDENT "DispatchEnabled: %s\n", toString(mDispatchEnabled));
4425 dump += StringPrintf(INDENT "DispatchFrozen: %s\n", toString(mDispatchFrozen));
4426 dump += StringPrintf(INDENT "InputFilterEnabled: %s\n", toString(mInputFilterEnabled));
Tiger Huang721e26f2018-07-24 22:26:19 +08004427 dump += StringPrintf(INDENT "FocusedDisplayId: %" PRId32 "\n", mFocusedDisplayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004428
Tiger Huang721e26f2018-07-24 22:26:19 +08004429 if (!mFocusedApplicationHandlesByDisplay.empty()) {
4430 dump += StringPrintf(INDENT "FocusedApplications:\n");
4431 for (auto& it : mFocusedApplicationHandlesByDisplay) {
4432 const int32_t displayId = it.first;
Chris Yea209fde2020-07-22 13:54:51 -07004433 const std::shared_ptr<InputApplicationHandle>& applicationHandle = it.second;
Siarhei Vishniakou70622952020-07-30 11:17:23 -05004434 const std::chrono::duration timeout =
4435 applicationHandle->getDispatchingTimeout(DEFAULT_INPUT_DISPATCHING_TIMEOUT);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004436 dump += StringPrintf(INDENT2 "displayId=%" PRId32
Siarhei Vishniakou4cb50ca2020-05-26 21:43:02 -07004437 ", name='%s', dispatchingTimeout=%" PRId64 "ms\n",
Siarhei Vishniakou70622952020-07-30 11:17:23 -05004438 displayId, applicationHandle->getName().c_str(), millis(timeout));
Tiger Huang721e26f2018-07-24 22:26:19 +08004439 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004440 } else {
Tiger Huang721e26f2018-07-24 22:26:19 +08004441 dump += StringPrintf(INDENT "FocusedApplications: <none>\n");
Michael Wrightd02c5b62014-02-10 15:10:22 -08004442 }
Tiger Huang721e26f2018-07-24 22:26:19 +08004443
Vishnu Nairad321cd2020-08-20 16:40:21 -07004444 dump += dumpFocusedWindowsLocked();
Siarhei Vishniakouad991402020-10-28 11:40:09 -05004445 dump += dumpPendingFocusRequestsLocked();
Michael Wrightd02c5b62014-02-10 15:10:22 -08004446
Siarhei Vishniakou4700f822020-03-24 19:05:54 -07004447 if (!mTouchStatesByDisplay.empty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004448 dump += StringPrintf(INDENT "TouchStatesByDisplay:\n");
Siarhei Vishniakou4700f822020-03-24 19:05:54 -07004449 for (const std::pair<int32_t, TouchState>& pair : mTouchStatesByDisplay) {
4450 const TouchState& state = pair.second;
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004451 dump += StringPrintf(INDENT2 "%d: down=%s, split=%s, deviceId=%d, source=0x%08x\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004452 state.displayId, toString(state.down), toString(state.split),
4453 state.deviceId, state.source);
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08004454 if (!state.windows.empty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004455 dump += INDENT3 "Windows:\n";
Jeff Brownf086ddb2014-02-11 14:28:48 -08004456 for (size_t i = 0; i < state.windows.size(); i++) {
4457 const TouchedWindow& touchedWindow = state.windows[i];
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004458 dump += StringPrintf(INDENT4
4459 "%zu: name='%s', pointerIds=0x%0x, targetFlags=0x%x\n",
4460 i, touchedWindow.windowHandle->getName().c_str(),
4461 touchedWindow.pointerIds.value, touchedWindow.targetFlags);
Jeff Brownf086ddb2014-02-11 14:28:48 -08004462 }
4463 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004464 dump += INDENT3 "Windows: <none>\n";
Jeff Brownf086ddb2014-02-11 14:28:48 -08004465 }
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08004466 if (!state.portalWindows.empty()) {
Tiger Huang85b8c5e2019-01-17 18:34:54 +08004467 dump += INDENT3 "Portal windows:\n";
4468 for (size_t i = 0; i < state.portalWindows.size(); i++) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08004469 const sp<InputWindowHandle> portalWindowHandle = state.portalWindows[i];
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004470 dump += StringPrintf(INDENT4 "%zu: name='%s'\n", i,
4471 portalWindowHandle->getName().c_str());
Tiger Huang85b8c5e2019-01-17 18:34:54 +08004472 }
4473 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004474 }
4475 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004476 dump += INDENT "TouchStates: <no displays touched>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08004477 }
4478
Arthur Hungb92218b2018-08-14 12:00:21 +08004479 if (!mWindowHandlesByDisplay.empty()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004480 for (auto& it : mWindowHandlesByDisplay) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08004481 const std::vector<sp<InputWindowHandle>> windowHandles = it.second;
Arthur Hung3b413f22018-10-26 18:05:34 +08004482 dump += StringPrintf(INDENT "Display: %" PRId32 "\n", it.first);
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08004483 if (!windowHandles.empty()) {
Arthur Hungb92218b2018-08-14 12:00:21 +08004484 dump += INDENT2 "Windows:\n";
4485 for (size_t i = 0; i < windowHandles.size(); i++) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08004486 const sp<InputWindowHandle>& windowHandle = windowHandles[i];
Arthur Hungb92218b2018-08-14 12:00:21 +08004487 const InputWindowInfo* windowInfo = windowHandle->getInfo();
Michael Wrightd02c5b62014-02-10 15:10:22 -08004488
Arthur Hungb92218b2018-08-14 12:00:21 +08004489 dump += StringPrintf(INDENT3 "%zu: name='%s', displayId=%d, "
Vishnu Nair47074b82020-08-14 11:54:47 -07004490 "portalToDisplayId=%d, paused=%s, focusable=%s, "
4491 "hasWallpaper=%s, visible=%s, "
Michael Wright44753b12020-07-08 13:48:11 +01004492 "flags=%s, type=0x%08x, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004493 "frame=[%d,%d][%d,%d], globalScale=%f, "
Siarhei Vishniakoue41c4512020-09-08 19:35:58 -05004494 "applicationInfo=%s, "
chaviw1ff3d1e2020-07-01 15:53:47 -07004495 "touchableRegion=",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004496 i, windowInfo->name.c_str(), windowInfo->displayId,
4497 windowInfo->portalToDisplayId,
4498 toString(windowInfo->paused),
Vishnu Nair47074b82020-08-14 11:54:47 -07004499 toString(windowInfo->focusable),
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004500 toString(windowInfo->hasWallpaper),
4501 toString(windowInfo->visible),
Michael Wright8759d672020-07-21 00:46:45 +01004502 windowInfo->flags.string().c_str(),
Michael Wright44753b12020-07-08 13:48:11 +01004503 static_cast<int32_t>(windowInfo->type),
4504 windowInfo->frameLeft, windowInfo->frameTop,
4505 windowInfo->frameRight, windowInfo->frameBottom,
Siarhei Vishniakoue41c4512020-09-08 19:35:58 -05004506 windowInfo->globalScaleFactor,
4507 windowInfo->applicationInfo.name.c_str());
Bernardo Rufino53fc31e2020-11-03 11:01:07 +00004508 dump += dumpRegion(windowInfo->touchableRegion);
Michael Wright44753b12020-07-08 13:48:11 +01004509 dump += StringPrintf(", inputFeatures=%s",
4510 windowInfo->inputFeatures.string().c_str());
Siarhei Vishniakou4cb50ca2020-05-26 21:43:02 -07004511 dump += StringPrintf(", ownerPid=%d, ownerUid=%d, dispatchingTimeout=%" PRId64
Bernardo Rufinoc2f1fad2020-11-04 17:30:57 +00004512 "ms, trustedOverlay=%s, hasToken=%s\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004513 windowInfo->ownerPid, windowInfo->ownerUid,
Bernardo Rufinoc2f1fad2020-11-04 17:30:57 +00004514 millis(windowInfo->dispatchingTimeout),
4515 toString(windowInfo->trustedOverlay),
4516 toString(windowInfo->token != nullptr));
chaviw85b44202020-07-24 11:46:21 -07004517 windowInfo->transform.dump(dump, "transform", INDENT4);
Arthur Hungb92218b2018-08-14 12:00:21 +08004518 }
4519 } else {
4520 dump += INDENT2 "Windows: <none>\n";
4521 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004522 }
4523 } else {
Arthur Hungb92218b2018-08-14 12:00:21 +08004524 dump += INDENT "Displays: <none>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08004525 }
4526
Michael Wright3dd60e22019-03-27 22:06:44 +00004527 if (!mGlobalMonitorsByDisplay.empty() || !mGestureMonitorsByDisplay.empty()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004528 for (auto& it : mGlobalMonitorsByDisplay) {
Michael Wright3dd60e22019-03-27 22:06:44 +00004529 const std::vector<Monitor>& monitors = it.second;
4530 dump += StringPrintf(INDENT "Global monitors in display %" PRId32 ":\n", it.first);
4531 dumpMonitors(dump, monitors);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004532 }
4533 for (auto& it : mGestureMonitorsByDisplay) {
Michael Wright3dd60e22019-03-27 22:06:44 +00004534 const std::vector<Monitor>& monitors = it.second;
4535 dump += StringPrintf(INDENT "Gesture monitors in display %" PRId32 ":\n", it.first);
4536 dumpMonitors(dump, monitors);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004537 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004538 } else {
Michael Wright3dd60e22019-03-27 22:06:44 +00004539 dump += INDENT "Monitors: <none>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08004540 }
4541
4542 nsecs_t currentTime = now();
4543
4544 // Dump recently dispatched or dropped events from oldest to newest.
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07004545 if (!mRecentQueue.empty()) {
4546 dump += StringPrintf(INDENT "RecentQueue: length=%zu\n", mRecentQueue.size());
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07004547 for (std::shared_ptr<EventEntry>& entry : mRecentQueue) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004548 dump += INDENT2;
Siarhei Vishniakou14411c92020-09-18 21:15:05 -05004549 dump += entry->getDescription();
Siarhei Vishniakou4cb50ca2020-05-26 21:43:02 -07004550 dump += StringPrintf(", age=%" PRId64 "ms\n", ns2ms(currentTime - entry->eventTime));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004551 }
4552 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004553 dump += INDENT "RecentQueue: <empty>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08004554 }
4555
4556 // Dump event currently being dispatched.
4557 if (mPendingEvent) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004558 dump += INDENT "PendingEvent:\n";
4559 dump += INDENT2;
Siarhei Vishniakou14411c92020-09-18 21:15:05 -05004560 dump += mPendingEvent->getDescription();
Siarhei Vishniakou4cb50ca2020-05-26 21:43:02 -07004561 dump += StringPrintf(", age=%" PRId64 "ms\n",
4562 ns2ms(currentTime - mPendingEvent->eventTime));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004563 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004564 dump += INDENT "PendingEvent: <none>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08004565 }
4566
4567 // Dump inbound events from oldest to newest.
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07004568 if (!mInboundQueue.empty()) {
4569 dump += StringPrintf(INDENT "InboundQueue: length=%zu\n", mInboundQueue.size());
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07004570 for (std::shared_ptr<EventEntry>& entry : mInboundQueue) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004571 dump += INDENT2;
Siarhei Vishniakou14411c92020-09-18 21:15:05 -05004572 dump += entry->getDescription();
Siarhei Vishniakou4cb50ca2020-05-26 21:43:02 -07004573 dump += StringPrintf(", age=%" PRId64 "ms\n", ns2ms(currentTime - entry->eventTime));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004574 }
4575 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004576 dump += INDENT "InboundQueue: <empty>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08004577 }
4578
Siarhei Vishniakou4700f822020-03-24 19:05:54 -07004579 if (!mReplacedKeys.empty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004580 dump += INDENT "ReplacedKeys:\n";
Siarhei Vishniakou4700f822020-03-24 19:05:54 -07004581 for (const std::pair<KeyReplacement, int32_t>& pair : mReplacedKeys) {
4582 const KeyReplacement& replacement = pair.first;
4583 int32_t newKeyCode = pair.second;
4584 dump += StringPrintf(INDENT2 "originalKeyCode=%d, deviceId=%d -> newKeyCode=%d\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004585 replacement.keyCode, replacement.deviceId, newKeyCode);
Michael Wright78f24442014-08-06 15:55:28 -07004586 }
4587 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004588 dump += INDENT "ReplacedKeys: <empty>\n";
Michael Wright78f24442014-08-06 15:55:28 -07004589 }
4590
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004591 if (!mConnectionsByFd.empty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004592 dump += INDENT "Connections:\n";
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004593 for (const auto& pair : mConnectionsByFd) {
4594 const sp<Connection>& connection = pair.second;
4595 dump += StringPrintf(INDENT2 "%i: channelName='%s', windowName='%s', "
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004596 "status=%s, monitor=%s, responsive=%s\n",
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004597 pair.first, connection->getInputChannelName().c_str(),
4598 connection->getWindowName().c_str(), connection->getStatusLabel(),
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004599 toString(connection->monitor), toString(connection->responsive));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004600
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004601 if (!connection->outboundQueue.empty()) {
4602 dump += StringPrintf(INDENT3 "OutboundQueue: length=%zu\n",
4603 connection->outboundQueue.size());
Siarhei Vishniakou14411c92020-09-18 21:15:05 -05004604 dump += dumpQueue(connection->outboundQueue, currentTime);
4605
Michael Wrightd02c5b62014-02-10 15:10:22 -08004606 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004607 dump += INDENT3 "OutboundQueue: <empty>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08004608 }
4609
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004610 if (!connection->waitQueue.empty()) {
4611 dump += StringPrintf(INDENT3 "WaitQueue: length=%zu\n",
4612 connection->waitQueue.size());
Siarhei Vishniakou14411c92020-09-18 21:15:05 -05004613 dump += dumpQueue(connection->waitQueue, currentTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004614 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004615 dump += INDENT3 "WaitQueue: <empty>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08004616 }
4617 }
4618 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004619 dump += INDENT "Connections: <none>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08004620 }
4621
4622 if (isAppSwitchPendingLocked()) {
Siarhei Vishniakou4cb50ca2020-05-26 21:43:02 -07004623 dump += StringPrintf(INDENT "AppSwitch: pending, due in %" PRId64 "ms\n",
4624 ns2ms(mAppSwitchDueTime - now()));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004625 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004626 dump += INDENT "AppSwitch: not pending\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08004627 }
4628
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004629 dump += INDENT "Configuration:\n";
Siarhei Vishniakou4cb50ca2020-05-26 21:43:02 -07004630 dump += StringPrintf(INDENT2 "KeyRepeatDelay: %" PRId64 "ms\n", ns2ms(mConfig.keyRepeatDelay));
4631 dump += StringPrintf(INDENT2 "KeyRepeatTimeout: %" PRId64 "ms\n",
4632 ns2ms(mConfig.keyRepeatTimeout));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004633}
4634
Michael Wright3dd60e22019-03-27 22:06:44 +00004635void InputDispatcher::dumpMonitors(std::string& dump, const std::vector<Monitor>& monitors) {
4636 const size_t numMonitors = monitors.size();
4637 for (size_t i = 0; i < numMonitors; i++) {
4638 const Monitor& monitor = monitors[i];
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -05004639 const std::shared_ptr<InputChannel>& channel = monitor.inputChannel;
Michael Wright3dd60e22019-03-27 22:06:44 +00004640 dump += StringPrintf(INDENT2 "%zu: '%s', ", i, channel->getName().c_str());
4641 dump += "\n";
4642 }
4643}
4644
Garfield Tan15601662020-09-22 15:32:38 -07004645base::Result<std::unique_ptr<InputChannel>> InputDispatcher::createInputChannel(
4646 const std::string& name) {
4647#if DEBUG_CHANNEL_CREATION
4648 ALOGD("channel '%s' ~ createInputChannel", name.c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004649#endif
4650
Garfield Tan15601662020-09-22 15:32:38 -07004651 std::shared_ptr<InputChannel> serverChannel;
4652 std::unique_ptr<InputChannel> clientChannel;
4653 status_t result = openInputChannelPair(name, serverChannel, clientChannel);
4654
4655 if (result) {
4656 return base::Error(result) << "Failed to open input channel pair with name " << name;
4657 }
4658
Michael Wrightd02c5b62014-02-10 15:10:22 -08004659 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004660 std::scoped_lock _l(mLock);
Garfield Tan15601662020-09-22 15:32:38 -07004661 sp<Connection> connection = new Connection(serverChannel, false /*monitor*/, mIdGenerator);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004662
Garfield Tan15601662020-09-22 15:32:38 -07004663 int fd = serverChannel->getFd();
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004664 mConnectionsByFd[fd] = connection;
Garfield Tan15601662020-09-22 15:32:38 -07004665 mInputChannelsByToken[serverChannel->getConnectionToken()] = serverChannel;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004666
Michael Wrightd02c5b62014-02-10 15:10:22 -08004667 mLooper->addFd(fd, 0, ALOOPER_EVENT_INPUT, handleReceiveCallback, this);
4668 } // release lock
4669
4670 // Wake the looper because some connections have changed.
4671 mLooper->wake();
Garfield Tan15601662020-09-22 15:32:38 -07004672 return clientChannel;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004673}
4674
Garfield Tan15601662020-09-22 15:32:38 -07004675base::Result<std::unique_ptr<InputChannel>> InputDispatcher::createInputMonitor(
4676 int32_t displayId, bool isGestureMonitor, const std::string& name) {
4677 std::shared_ptr<InputChannel> serverChannel;
4678 std::unique_ptr<InputChannel> clientChannel;
4679 status_t result = openInputChannelPair(name, serverChannel, clientChannel);
4680 if (result) {
4681 return base::Error(result) << "Failed to open input channel pair with name " << name;
4682 }
4683
Michael Wright3dd60e22019-03-27 22:06:44 +00004684 { // acquire lock
4685 std::scoped_lock _l(mLock);
4686
4687 if (displayId < 0) {
Garfield Tan15601662020-09-22 15:32:38 -07004688 return base::Error(BAD_VALUE) << "Attempted to create input monitor with name " << name
4689 << " without a specified display.";
Michael Wright3dd60e22019-03-27 22:06:44 +00004690 }
4691
Garfield Tan15601662020-09-22 15:32:38 -07004692 sp<Connection> connection = new Connection(serverChannel, true /*monitor*/, mIdGenerator);
Michael Wright3dd60e22019-03-27 22:06:44 +00004693
Garfield Tan15601662020-09-22 15:32:38 -07004694 const int fd = serverChannel->getFd();
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004695 mConnectionsByFd[fd] = connection;
Garfield Tan15601662020-09-22 15:32:38 -07004696 mInputChannelsByToken[serverChannel->getConnectionToken()] = serverChannel;
Michael Wright3dd60e22019-03-27 22:06:44 +00004697
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004698 auto& monitorsByDisplay =
4699 isGestureMonitor ? mGestureMonitorsByDisplay : mGlobalMonitorsByDisplay;
Garfield Tan15601662020-09-22 15:32:38 -07004700 monitorsByDisplay[displayId].emplace_back(serverChannel);
Michael Wright3dd60e22019-03-27 22:06:44 +00004701
4702 mLooper->addFd(fd, 0, ALOOPER_EVENT_INPUT, handleReceiveCallback, this);
Michael Wright3dd60e22019-03-27 22:06:44 +00004703 }
Garfield Tan15601662020-09-22 15:32:38 -07004704
Michael Wright3dd60e22019-03-27 22:06:44 +00004705 // Wake the looper because some connections have changed.
4706 mLooper->wake();
Garfield Tan15601662020-09-22 15:32:38 -07004707 return clientChannel;
Michael Wright3dd60e22019-03-27 22:06:44 +00004708}
4709
Garfield Tan15601662020-09-22 15:32:38 -07004710status_t InputDispatcher::removeInputChannel(const sp<IBinder>& connectionToken) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004711 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004712 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004713
Garfield Tan15601662020-09-22 15:32:38 -07004714 status_t status = removeInputChannelLocked(connectionToken, false /*notify*/);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004715 if (status) {
4716 return status;
4717 }
4718 } // release lock
4719
4720 // Wake the poll loop because removing the connection may have changed the current
4721 // synchronization state.
4722 mLooper->wake();
4723 return OK;
4724}
4725
Garfield Tan15601662020-09-22 15:32:38 -07004726status_t InputDispatcher::removeInputChannelLocked(const sp<IBinder>& connectionToken,
4727 bool notify) {
Siarhei Vishniakouadefc3e2020-09-02 22:28:29 -05004728 sp<Connection> connection = getConnectionLocked(connectionToken);
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004729 if (connection == nullptr) {
Siarhei Vishniakouadefc3e2020-09-02 22:28:29 -05004730 ALOGW("Attempted to unregister already unregistered input channel");
Michael Wrightd02c5b62014-02-10 15:10:22 -08004731 return BAD_VALUE;
4732 }
4733
Siarhei Vishniakou4cb50ca2020-05-26 21:43:02 -07004734 removeConnectionLocked(connection);
Siarhei Vishniakouadefc3e2020-09-02 22:28:29 -05004735 mInputChannelsByToken.erase(connectionToken);
Robert Carr5c8a0262018-10-03 16:30:44 -07004736
Michael Wrightd02c5b62014-02-10 15:10:22 -08004737 if (connection->monitor) {
Siarhei Vishniakouadefc3e2020-09-02 22:28:29 -05004738 removeMonitorChannelLocked(connectionToken);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004739 }
4740
Siarhei Vishniakouadefc3e2020-09-02 22:28:29 -05004741 mLooper->removeFd(connection->inputChannel->getFd());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004742
4743 nsecs_t currentTime = now();
4744 abortBrokenDispatchCycleLocked(currentTime, connection, notify);
4745
4746 connection->status = Connection::STATUS_ZOMBIE;
4747 return OK;
4748}
4749
Siarhei Vishniakouadefc3e2020-09-02 22:28:29 -05004750void InputDispatcher::removeMonitorChannelLocked(const sp<IBinder>& connectionToken) {
4751 removeMonitorChannelLocked(connectionToken, mGlobalMonitorsByDisplay);
4752 removeMonitorChannelLocked(connectionToken, mGestureMonitorsByDisplay);
Michael Wright3dd60e22019-03-27 22:06:44 +00004753}
4754
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004755void InputDispatcher::removeMonitorChannelLocked(
Siarhei Vishniakouadefc3e2020-09-02 22:28:29 -05004756 const sp<IBinder>& connectionToken,
Michael Wright3dd60e22019-03-27 22:06:44 +00004757 std::unordered_map<int32_t, std::vector<Monitor>>& monitorsByDisplay) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004758 for (auto it = monitorsByDisplay.begin(); it != monitorsByDisplay.end();) {
Michael Wright3dd60e22019-03-27 22:06:44 +00004759 std::vector<Monitor>& monitors = it->second;
4760 const size_t numMonitors = monitors.size();
4761 for (size_t i = 0; i < numMonitors; i++) {
Siarhei Vishniakouadefc3e2020-09-02 22:28:29 -05004762 if (monitors[i].inputChannel->getConnectionToken() == connectionToken) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004763 monitors.erase(monitors.begin() + i);
4764 break;
4765 }
Arthur Hung2fbf37f2018-09-13 18:16:41 +08004766 }
Michael Wright3dd60e22019-03-27 22:06:44 +00004767 if (monitors.empty()) {
4768 it = monitorsByDisplay.erase(it);
Arthur Hung2fbf37f2018-09-13 18:16:41 +08004769 } else {
4770 ++it;
4771 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004772 }
4773}
4774
Michael Wright3dd60e22019-03-27 22:06:44 +00004775status_t InputDispatcher::pilferPointers(const sp<IBinder>& token) {
4776 { // acquire lock
4777 std::scoped_lock _l(mLock);
4778 std::optional<int32_t> foundDisplayId = findGestureMonitorDisplayByTokenLocked(token);
4779
4780 if (!foundDisplayId) {
4781 ALOGW("Attempted to pilfer pointers from an un-registered monitor or invalid token");
4782 return BAD_VALUE;
4783 }
4784 int32_t displayId = foundDisplayId.value();
4785
Siarhei Vishniakou4700f822020-03-24 19:05:54 -07004786 std::unordered_map<int32_t, TouchState>::iterator stateIt =
4787 mTouchStatesByDisplay.find(displayId);
4788 if (stateIt == mTouchStatesByDisplay.end()) {
Michael Wright3dd60e22019-03-27 22:06:44 +00004789 ALOGW("Failed to pilfer pointers: no pointers on display %" PRId32 ".", displayId);
4790 return BAD_VALUE;
4791 }
4792
Siarhei Vishniakou4700f822020-03-24 19:05:54 -07004793 TouchState& state = stateIt->second;
Michael Wright3dd60e22019-03-27 22:06:44 +00004794 std::optional<int32_t> foundDeviceId;
4795 for (const TouchedMonitor& touchedMonitor : state.gestureMonitors) {
Siarhei Vishniakou26d3cfb2019-10-15 17:02:32 -07004796 if (touchedMonitor.monitor.inputChannel->getConnectionToken() == token) {
Michael Wright3dd60e22019-03-27 22:06:44 +00004797 foundDeviceId = state.deviceId;
4798 }
4799 }
4800 if (!foundDeviceId || !state.down) {
4801 ALOGW("Attempted to pilfer points from a monitor without any on-going pointer streams."
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004802 " Ignoring.");
Michael Wright3dd60e22019-03-27 22:06:44 +00004803 return BAD_VALUE;
4804 }
4805 int32_t deviceId = foundDeviceId.value();
4806
4807 // Send cancel events to all the input channels we're stealing from.
4808 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004809 "gesture monitor stole pointer stream");
Michael Wright3dd60e22019-03-27 22:06:44 +00004810 options.deviceId = deviceId;
4811 options.displayId = displayId;
4812 for (const TouchedWindow& window : state.windows) {
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -05004813 std::shared_ptr<InputChannel> channel =
4814 getInputChannelLocked(window.windowHandle->getToken());
Michael Wright3a240c42019-12-10 20:53:41 +00004815 if (channel != nullptr) {
4816 synthesizeCancelationEventsForInputChannelLocked(channel, options);
4817 }
Michael Wright3dd60e22019-03-27 22:06:44 +00004818 }
4819 // Then clear the current touch state so we stop dispatching to them as well.
4820 state.filterNonMonitors();
4821 }
4822 return OK;
4823}
4824
Michael Wright3dd60e22019-03-27 22:06:44 +00004825std::optional<int32_t> InputDispatcher::findGestureMonitorDisplayByTokenLocked(
4826 const sp<IBinder>& token) {
4827 for (const auto& it : mGestureMonitorsByDisplay) {
4828 const std::vector<Monitor>& monitors = it.second;
4829 for (const Monitor& monitor : monitors) {
Siarhei Vishniakou26d3cfb2019-10-15 17:02:32 -07004830 if (monitor.inputChannel->getConnectionToken() == token) {
Michael Wright3dd60e22019-03-27 22:06:44 +00004831 return it.first;
4832 }
4833 }
4834 }
4835 return std::nullopt;
4836}
4837
Siarhei Vishniakou4cb50ca2020-05-26 21:43:02 -07004838sp<Connection> InputDispatcher::getConnectionLocked(const sp<IBinder>& inputConnectionToken) const {
Siarhei Vishniakoud0d71b62019-10-14 14:50:45 -07004839 if (inputConnectionToken == nullptr) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004840 return nullptr;
Arthur Hung3b413f22018-10-26 18:05:34 +08004841 }
4842
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004843 for (const auto& pair : mConnectionsByFd) {
Siarhei Vishniakoud0d71b62019-10-14 14:50:45 -07004844 const sp<Connection>& connection = pair.second;
Siarhei Vishniakou26d3cfb2019-10-15 17:02:32 -07004845 if (connection->inputChannel->getConnectionToken() == inputConnectionToken) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004846 return connection;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004847 }
4848 }
Robert Carr4e670e52018-08-15 13:26:12 -07004849
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004850 return nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004851}
4852
Siarhei Vishniakouad991402020-10-28 11:40:09 -05004853std::string InputDispatcher::getConnectionNameLocked(const sp<IBinder>& connectionToken) const {
4854 sp<Connection> connection = getConnectionLocked(connectionToken);
4855 if (connection == nullptr) {
4856 return "<nullptr>";
4857 }
4858 return connection->getInputChannelName();
4859}
4860
Siarhei Vishniakou4cb50ca2020-05-26 21:43:02 -07004861void InputDispatcher::removeConnectionLocked(const sp<Connection>& connection) {
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004862 mAnrTracker.eraseToken(connection->inputChannel->getConnectionToken());
Siarhei Vishniakou4cb50ca2020-05-26 21:43:02 -07004863 removeByValue(mConnectionsByFd, connection);
4864}
4865
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004866void InputDispatcher::onDispatchCycleFinishedLocked(nsecs_t currentTime,
4867 const sp<Connection>& connection, uint32_t seq,
4868 bool handled) {
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004869 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
4870 &InputDispatcher::doDispatchCycleFinishedLockedInterruptible);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004871 commandEntry->connection = connection;
4872 commandEntry->eventTime = currentTime;
4873 commandEntry->seq = seq;
4874 commandEntry->handled = handled;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004875 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004876}
4877
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004878void InputDispatcher::onDispatchCycleBrokenLocked(nsecs_t currentTime,
4879 const sp<Connection>& connection) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004880 ALOGE("channel '%s' ~ Channel is unrecoverably broken and will be disposed!",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004881 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004882
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004883 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
4884 &InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004885 commandEntry->connection = connection;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004886 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004887}
4888
Vishnu Nairad321cd2020-08-20 16:40:21 -07004889void InputDispatcher::notifyFocusChangedLocked(const sp<IBinder>& oldToken,
4890 const sp<IBinder>& newToken) {
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004891 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
4892 &InputDispatcher::doNotifyFocusChangedLockedInterruptible);
chaviw0c06c6e2019-01-09 13:27:07 -08004893 commandEntry->oldToken = oldToken;
4894 commandEntry->newToken = newToken;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004895 postCommandLocked(std::move(commandEntry));
Robert Carrf759f162018-11-13 12:57:11 -08004896}
4897
Siarhei Vishniakoua72accd2020-09-22 21:43:09 -05004898void InputDispatcher::onAnrLocked(const Connection& connection) {
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004899 // Since we are allowing the policy to extend the timeout, maybe the waitQueue
4900 // is already healthy again. Don't raise ANR in this situation
Siarhei Vishniakoua72accd2020-09-22 21:43:09 -05004901 if (connection.waitQueue.empty()) {
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004902 ALOGI("Not raising ANR because the connection %s has recovered",
Siarhei Vishniakoua72accd2020-09-22 21:43:09 -05004903 connection.inputChannel->getName().c_str());
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004904 return;
4905 }
4906 /**
4907 * The "oldestEntry" is the entry that was first sent to the application. That entry, however,
4908 * may not be the one that caused the timeout to occur. One possibility is that window timeout
4909 * has changed. This could cause newer entries to time out before the already dispatched
4910 * entries. In that situation, the newest entries caused ANR. But in all likelihood, the app
4911 * processes the events linearly. So providing information about the oldest entry seems to be
4912 * most useful.
4913 */
Siarhei Vishniakoua72accd2020-09-22 21:43:09 -05004914 DispatchEntry* oldestEntry = *connection.waitQueue.begin();
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004915 const nsecs_t currentWait = now() - oldestEntry->deliveryTime;
4916 std::string reason =
4917 android::base::StringPrintf("%s is not responding. Waited %" PRId64 "ms for %s",
Siarhei Vishniakoua72accd2020-09-22 21:43:09 -05004918 connection.inputChannel->getName().c_str(),
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004919 ns2ms(currentWait),
4920 oldestEntry->eventEntry->getDescription().c_str());
Siarhei Vishniakou2b4782c2020-11-07 01:51:18 -06004921 sp<IBinder> connectionToken = connection.inputChannel->getConnectionToken();
4922 updateLastAnrStateLocked(getWindowHandleLocked(connectionToken), reason);
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004923
4924 std::unique_ptr<CommandEntry> commandEntry =
4925 std::make_unique<CommandEntry>(&InputDispatcher::doNotifyAnrLockedInterruptible);
4926 commandEntry->inputApplicationHandle = nullptr;
Siarhei Vishniakou2b4782c2020-11-07 01:51:18 -06004927 commandEntry->connectionToken = connectionToken;
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004928 commandEntry->reason = std::move(reason);
4929 postCommandLocked(std::move(commandEntry));
4930}
4931
Chris Yea209fde2020-07-22 13:54:51 -07004932void InputDispatcher::onAnrLocked(const std::shared_ptr<InputApplicationHandle>& application) {
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004933 std::string reason = android::base::StringPrintf("%s does not have a focused window",
4934 application->getName().c_str());
4935
4936 updateLastAnrStateLocked(application, reason);
4937
4938 std::unique_ptr<CommandEntry> commandEntry =
4939 std::make_unique<CommandEntry>(&InputDispatcher::doNotifyAnrLockedInterruptible);
4940 commandEntry->inputApplicationHandle = application;
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004941 commandEntry->reason = std::move(reason);
4942 postCommandLocked(std::move(commandEntry));
4943}
4944
Bernardo Rufino2e1f6512020-10-08 13:42:07 +00004945void InputDispatcher::onUntrustedTouchLocked(const std::string& obscuringPackage) {
4946 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
4947 &InputDispatcher::doNotifyUntrustedTouchLockedInterruptible);
4948 commandEntry->obscuringPackage = obscuringPackage;
4949 postCommandLocked(std::move(commandEntry));
4950}
4951
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004952void InputDispatcher::updateLastAnrStateLocked(const sp<InputWindowHandle>& window,
4953 const std::string& reason) {
4954 const std::string windowLabel = getApplicationWindowLabel(nullptr, window);
4955 updateLastAnrStateLocked(windowLabel, reason);
4956}
4957
Chris Yea209fde2020-07-22 13:54:51 -07004958void InputDispatcher::updateLastAnrStateLocked(
4959 const std::shared_ptr<InputApplicationHandle>& application, const std::string& reason) {
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004960 const std::string windowLabel = getApplicationWindowLabel(application, nullptr);
4961 updateLastAnrStateLocked(windowLabel, reason);
4962}
4963
4964void InputDispatcher::updateLastAnrStateLocked(const std::string& windowLabel,
4965 const std::string& reason) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004966 // Capture a record of the InputDispatcher state at the time of the ANR.
Yi Kong9b14ac62018-07-17 13:48:38 -07004967 time_t t = time(nullptr);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004968 struct tm tm;
4969 localtime_r(&t, &tm);
4970 char timestr[64];
4971 strftime(timestr, sizeof(timestr), "%F %T", &tm);
Siarhei Vishniakoub1a16272020-05-06 16:09:19 -07004972 mLastAnrState.clear();
4973 mLastAnrState += INDENT "ANR:\n";
4974 mLastAnrState += StringPrintf(INDENT2 "Time: %s\n", timestr);
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07004975 mLastAnrState += StringPrintf(INDENT2 "Reason: %s\n", reason.c_str());
4976 mLastAnrState += StringPrintf(INDENT2 "Window: %s\n", windowLabel.c_str());
Siarhei Vishniakoub1a16272020-05-06 16:09:19 -07004977 dumpDispatchStateLocked(mLastAnrState);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004978}
4979
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004980void InputDispatcher::doNotifyConfigurationChangedLockedInterruptible(CommandEntry* commandEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004981 mLock.unlock();
4982
4983 mPolicy->notifyConfigurationChanged(commandEntry->eventTime);
4984
4985 mLock.lock();
4986}
4987
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004988void InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible(CommandEntry* commandEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004989 sp<Connection> connection = commandEntry->connection;
4990
4991 if (connection->status != Connection::STATUS_ZOMBIE) {
4992 mLock.unlock();
4993
Siarhei Vishniakou26d3cfb2019-10-15 17:02:32 -07004994 mPolicy->notifyInputChannelBroken(connection->inputChannel->getConnectionToken());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004995
4996 mLock.lock();
4997 }
4998}
4999
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005000void InputDispatcher::doNotifyFocusChangedLockedInterruptible(CommandEntry* commandEntry) {
chaviw0c06c6e2019-01-09 13:27:07 -08005001 sp<IBinder> oldToken = commandEntry->oldToken;
5002 sp<IBinder> newToken = commandEntry->newToken;
Robert Carrf759f162018-11-13 12:57:11 -08005003 mLock.unlock();
chaviw0c06c6e2019-01-09 13:27:07 -08005004 mPolicy->notifyFocusChanged(oldToken, newToken);
Robert Carrf759f162018-11-13 12:57:11 -08005005 mLock.lock();
5006}
5007
Siarhei Vishniakoub1a16272020-05-06 16:09:19 -07005008void InputDispatcher::doNotifyAnrLockedInterruptible(CommandEntry* commandEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08005009 mLock.unlock();
Siarhei Vishniakou2b4782c2020-11-07 01:51:18 -06005010 const sp<IBinder>& token = commandEntry->connectionToken;
Siarhei Vishniakouc1ae5562020-06-30 14:22:57 -05005011 const std::chrono::nanoseconds timeoutExtension =
Siarhei Vishniakoub1a16272020-05-06 16:09:19 -07005012 mPolicy->notifyAnr(commandEntry->inputApplicationHandle, token, commandEntry->reason);
Michael Wrightd02c5b62014-02-10 15:10:22 -08005013
5014 mLock.lock();
5015
Siarhei Vishniakouc1ae5562020-06-30 14:22:57 -05005016 if (timeoutExtension > 0s) {
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07005017 extendAnrTimeoutsLocked(commandEntry->inputApplicationHandle, token, timeoutExtension);
5018 } else {
5019 // stop waking up for events in this connection, it is already not responding
5020 sp<Connection> connection = getConnectionLocked(token);
5021 if (connection == nullptr) {
5022 return;
5023 }
5024 cancelEventsForAnrLocked(connection);
5025 }
5026}
5027
Bernardo Rufino2e1f6512020-10-08 13:42:07 +00005028void InputDispatcher::doNotifyUntrustedTouchLockedInterruptible(CommandEntry* commandEntry) {
5029 mLock.unlock();
5030
5031 mPolicy->notifyUntrustedTouch(commandEntry->obscuringPackage);
5032
5033 mLock.lock();
5034}
5035
Chris Yea209fde2020-07-22 13:54:51 -07005036void InputDispatcher::extendAnrTimeoutsLocked(
5037 const std::shared_ptr<InputApplicationHandle>& application,
5038 const sp<IBinder>& connectionToken, std::chrono::nanoseconds timeoutExtension) {
Siarhei Vishniakoua72accd2020-09-22 21:43:09 -05005039 if (connectionToken == nullptr && application != nullptr) {
5040 // The ANR happened because there's no focused window
5041 mNoFocusedWindowTimeoutTime = now() + timeoutExtension.count();
5042 mAwaitedFocusedApplication = application;
5043 }
5044
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07005045 sp<Connection> connection = getConnectionLocked(connectionToken);
5046 if (connection == nullptr) {
Siarhei Vishniakoua72accd2020-09-22 21:43:09 -05005047 // It's possible that the connection already disappeared. No action necessary.
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07005048 return;
5049 }
5050
5051 ALOGI("Raised ANR, but the policy wants to keep waiting on %s for %" PRId64 "ms longer",
Siarhei Vishniakouc1ae5562020-06-30 14:22:57 -05005052 connection->inputChannel->getName().c_str(), millis(timeoutExtension));
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07005053
5054 connection->responsive = true;
Siarhei Vishniakouc1ae5562020-06-30 14:22:57 -05005055 const nsecs_t newTimeout = now() + timeoutExtension.count();
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07005056 for (DispatchEntry* entry : connection->waitQueue) {
5057 if (newTimeout >= entry->timeoutTime) {
5058 // Already removed old entries when connection was marked unresponsive
5059 entry->timeoutTime = newTimeout;
5060 mAnrTracker.insert(entry->timeoutTime, connectionToken);
5061 }
5062 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08005063}
5064
5065void InputDispatcher::doInterceptKeyBeforeDispatchingLockedInterruptible(
5066 CommandEntry* commandEntry) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005067 KeyEntry& entry = *(commandEntry->keyEntry);
5068 KeyEvent event = createKeyEvent(entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08005069
5070 mLock.unlock();
5071
Michael Wright2b3c3302018-03-02 17:19:13 +00005072 android::base::Timer t;
Siarhei Vishniakou2b4782c2020-11-07 01:51:18 -06005073 const sp<IBinder>& token = commandEntry->connectionToken;
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005074 nsecs_t delay = mPolicy->interceptKeyBeforeDispatching(token, &event, entry.policyFlags);
Michael Wright2b3c3302018-03-02 17:19:13 +00005075 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
5076 ALOGW("Excessive delay in interceptKeyBeforeDispatching; took %s ms",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005077 std::to_string(t.duration().count()).c_str());
Michael Wright2b3c3302018-03-02 17:19:13 +00005078 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08005079
5080 mLock.lock();
5081
5082 if (delay < 0) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005083 entry.interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_SKIP;
Michael Wrightd02c5b62014-02-10 15:10:22 -08005084 } else if (!delay) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005085 entry.interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE;
Michael Wrightd02c5b62014-02-10 15:10:22 -08005086 } else {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005087 entry.interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER;
5088 entry.interceptKeyWakeupTime = now() + delay;
Michael Wrightd02c5b62014-02-10 15:10:22 -08005089 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08005090}
5091
chaviwfd6d3512019-03-25 13:23:49 -07005092void InputDispatcher::doOnPointerDownOutsideFocusLockedInterruptible(CommandEntry* commandEntry) {
5093 mLock.unlock();
5094 mPolicy->onPointerDownOutsideFocus(commandEntry->newToken);
5095 mLock.lock();
5096}
5097
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07005098/**
5099 * Connection is responsive if it has no events in the waitQueue that are older than the
5100 * current time.
5101 */
5102static bool isConnectionResponsive(const Connection& connection) {
5103 const nsecs_t currentTime = now();
5104 for (const DispatchEntry* entry : connection.waitQueue) {
5105 if (entry->timeoutTime < currentTime) {
5106 return false;
5107 }
5108 }
5109 return true;
5110}
5111
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005112void InputDispatcher::doDispatchCycleFinishedLockedInterruptible(CommandEntry* commandEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08005113 sp<Connection> connection = commandEntry->connection;
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07005114 const nsecs_t finishTime = commandEntry->eventTime;
Michael Wrightd02c5b62014-02-10 15:10:22 -08005115 uint32_t seq = commandEntry->seq;
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07005116 const bool handled = commandEntry->handled;
Michael Wrightd02c5b62014-02-10 15:10:22 -08005117
5118 // Handle post-event policy actions.
Garfield Tane84e6f92019-08-29 17:28:41 -07005119 std::deque<DispatchEntry*>::iterator dispatchEntryIt = connection->findWaitQueueEntry(seq);
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07005120 if (dispatchEntryIt == connection->waitQueue.end()) {
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07005121 return;
Michael Wrightd02c5b62014-02-10 15:10:22 -08005122 }
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07005123 DispatchEntry* dispatchEntry = *dispatchEntryIt;
Siarhei Vishniakou850ce122020-05-26 22:39:43 -07005124 const nsecs_t eventDuration = finishTime - dispatchEntry->deliveryTime;
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07005125 if (eventDuration > SLOW_EVENT_PROCESSING_WARNING_TIMEOUT) {
Siarhei Vishniakou4cb50ca2020-05-26 21:43:02 -07005126 ALOGI("%s spent %" PRId64 "ms processing %s", connection->getWindowName().c_str(),
5127 ns2ms(eventDuration), dispatchEntry->eventEntry->getDescription().c_str());
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07005128 }
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07005129 reportDispatchStatistics(std::chrono::nanoseconds(eventDuration), *connection, handled);
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07005130
5131 bool restartEvent;
Siarhei Vishniakou49483272019-10-22 13:13:47 -07005132 if (dispatchEntry->eventEntry->type == EventEntry::Type::KEY) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005133 KeyEntry& keyEntry = static_cast<KeyEntry&>(*(dispatchEntry->eventEntry));
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07005134 restartEvent =
5135 afterKeyEventLockedInterruptible(connection, dispatchEntry, keyEntry, handled);
Siarhei Vishniakou49483272019-10-22 13:13:47 -07005136 } else if (dispatchEntry->eventEntry->type == EventEntry::Type::MOTION) {
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005137 MotionEntry& motionEntry = static_cast<MotionEntry&>(*(dispatchEntry->eventEntry));
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07005138 restartEvent = afterMotionEventLockedInterruptible(connection, dispatchEntry, motionEntry,
5139 handled);
5140 } else {
5141 restartEvent = false;
5142 }
5143
5144 // Dequeue the event and start the next cycle.
Siarhei Vishniakou850ce122020-05-26 22:39:43 -07005145 // Because the lock might have been released, it is possible that the
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07005146 // contents of the wait queue to have been drained, so we need to double-check
5147 // a few things.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07005148 dispatchEntryIt = connection->findWaitQueueEntry(seq);
5149 if (dispatchEntryIt != connection->waitQueue.end()) {
5150 dispatchEntry = *dispatchEntryIt;
5151 connection->waitQueue.erase(dispatchEntryIt);
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07005152 mAnrTracker.erase(dispatchEntry->timeoutTime,
5153 connection->inputChannel->getConnectionToken());
5154 if (!connection->responsive) {
5155 connection->responsive = isConnectionResponsive(*connection);
5156 }
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07005157 traceWaitQueueLength(connection);
5158 if (restartEvent && connection->status == Connection::STATUS_NORMAL) {
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07005159 connection->outboundQueue.push_front(dispatchEntry);
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07005160 traceOutboundQueueLength(connection);
5161 } else {
5162 releaseDispatchEntry(dispatchEntry);
5163 }
5164 }
5165
5166 // Start the next dispatch cycle for this connection.
5167 startDispatchCycleLocked(now(), connection);
Michael Wrightd02c5b62014-02-10 15:10:22 -08005168}
5169
5170bool InputDispatcher::afterKeyEventLockedInterruptible(const sp<Connection>& connection,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005171 DispatchEntry* dispatchEntry,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005172 KeyEntry& keyEntry, bool handled) {
5173 if (keyEntry.flags & AKEY_EVENT_FLAG_FALLBACK) {
Prabir Pradhanf93562f2018-11-29 12:13:37 -08005174 if (!handled) {
5175 // Report the key as unhandled, since the fallback was not handled.
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005176 mReporter->reportUnhandledKey(keyEntry.id);
Prabir Pradhanf93562f2018-11-29 12:13:37 -08005177 }
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005178 return false;
5179 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08005180
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005181 // Get the fallback key state.
5182 // Clear it out after dispatching the UP.
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005183 int32_t originalKeyCode = keyEntry.keyCode;
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005184 int32_t fallbackKeyCode = connection->inputState.getFallbackKey(originalKeyCode);
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005185 if (keyEntry.action == AKEY_EVENT_ACTION_UP) {
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005186 connection->inputState.removeFallbackKey(originalKeyCode);
5187 }
5188
5189 if (handled || !dispatchEntry->hasForegroundTarget()) {
5190 // If the application handles the original key for which we previously
5191 // generated a fallback or if the window is not a foreground window,
5192 // then cancel the associated fallback key, if any.
5193 if (fallbackKeyCode != -1) {
5194 // Dispatch the unhandled key to the policy with the cancel flag.
Michael Wrightd02c5b62014-02-10 15:10:22 -08005195#if DEBUG_OUTBOUND_EVENT_DETAILS
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005196 ALOGD("Unhandled key event: Asking policy to cancel fallback action. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005197 "keyCode=%d, action=%d, repeatCount=%d, policyFlags=0x%08x",
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005198 keyEntry.keyCode, keyEntry.action, keyEntry.repeatCount, keyEntry.policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08005199#endif
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005200 KeyEvent event = createKeyEvent(keyEntry);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005201 event.setFlags(event.getFlags() | AKEY_EVENT_FLAG_CANCELED);
Michael Wrightd02c5b62014-02-10 15:10:22 -08005202
5203 mLock.unlock();
5204
Siarhei Vishniakou26d3cfb2019-10-15 17:02:32 -07005205 mPolicy->dispatchUnhandledKey(connection->inputChannel->getConnectionToken(), &event,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005206 keyEntry.policyFlags, &event);
Michael Wrightd02c5b62014-02-10 15:10:22 -08005207
5208 mLock.lock();
5209
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005210 // Cancel the fallback key.
5211 if (fallbackKeyCode != AKEYCODE_UNKNOWN) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08005212 CancelationOptions options(CancelationOptions::CANCEL_FALLBACK_EVENTS,
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005213 "application handled the original non-fallback key "
5214 "or is no longer a foreground target, "
5215 "canceling previously dispatched fallback key");
Michael Wrightd02c5b62014-02-10 15:10:22 -08005216 options.keyCode = fallbackKeyCode;
5217 synthesizeCancelationEventsForConnectionLocked(connection, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08005218 }
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005219 connection->inputState.removeFallbackKey(originalKeyCode);
5220 }
5221 } else {
5222 // If the application did not handle a non-fallback key, first check
5223 // that we are in a good state to perform unhandled key event processing
5224 // Then ask the policy what to do with it.
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005225 bool initialDown = keyEntry.action == AKEY_EVENT_ACTION_DOWN && keyEntry.repeatCount == 0;
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005226 if (fallbackKeyCode == -1 && !initialDown) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08005227#if DEBUG_OUTBOUND_EVENT_DETAILS
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005228 ALOGD("Unhandled key event: Skipping unhandled key event processing "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005229 "since this is not an initial down. "
5230 "keyCode=%d, action=%d, repeatCount=%d, policyFlags=0x%08x",
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005231 originalKeyCode, keyEntry.action, keyEntry.repeatCount, keyEntry.policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08005232#endif
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005233 return false;
5234 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08005235
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005236 // Dispatch the unhandled key to the policy.
5237#if DEBUG_OUTBOUND_EVENT_DETAILS
5238 ALOGD("Unhandled key event: Asking policy to perform fallback action. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005239 "keyCode=%d, action=%d, repeatCount=%d, policyFlags=0x%08x",
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005240 keyEntry.keyCode, keyEntry.action, keyEntry.repeatCount, keyEntry.policyFlags);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005241#endif
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005242 KeyEvent event = createKeyEvent(keyEntry);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005243
5244 mLock.unlock();
5245
Siarhei Vishniakou26d3cfb2019-10-15 17:02:32 -07005246 bool fallback =
5247 mPolicy->dispatchUnhandledKey(connection->inputChannel->getConnectionToken(),
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005248 &event, keyEntry.policyFlags, &event);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005249
5250 mLock.lock();
5251
5252 if (connection->status != Connection::STATUS_NORMAL) {
5253 connection->inputState.removeFallbackKey(originalKeyCode);
5254 return false;
5255 }
5256
5257 // Latch the fallback keycode for this key on an initial down.
5258 // The fallback keycode cannot change at any other point in the lifecycle.
5259 if (initialDown) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08005260 if (fallback) {
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005261 fallbackKeyCode = event.getKeyCode();
5262 } else {
5263 fallbackKeyCode = AKEYCODE_UNKNOWN;
5264 }
5265 connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode);
5266 }
5267
5268 ALOG_ASSERT(fallbackKeyCode != -1);
5269
5270 // Cancel the fallback key if the policy decides not to send it anymore.
5271 // We will continue to dispatch the key to the policy but we will no
5272 // longer dispatch a fallback key to the application.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005273 if (fallbackKeyCode != AKEYCODE_UNKNOWN &&
5274 (!fallback || fallbackKeyCode != event.getKeyCode())) {
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005275#if DEBUG_OUTBOUND_EVENT_DETAILS
5276 if (fallback) {
5277 ALOGD("Unhandled key event: Policy requested to send key %d"
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005278 "as a fallback for %d, but on the DOWN it had requested "
5279 "to send %d instead. Fallback canceled.",
5280 event.getKeyCode(), originalKeyCode, fallbackKeyCode);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005281 } else {
5282 ALOGD("Unhandled key event: Policy did not request fallback for %d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005283 "but on the DOWN it had requested to send %d. "
5284 "Fallback canceled.",
5285 originalKeyCode, fallbackKeyCode);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005286 }
5287#endif
5288
5289 CancelationOptions options(CancelationOptions::CANCEL_FALLBACK_EVENTS,
5290 "canceling fallback, policy no longer desires it");
5291 options.keyCode = fallbackKeyCode;
5292 synthesizeCancelationEventsForConnectionLocked(connection, options);
5293
5294 fallback = false;
5295 fallbackKeyCode = AKEYCODE_UNKNOWN;
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005296 if (keyEntry.action != AKEY_EVENT_ACTION_UP) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005297 connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005298 }
5299 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08005300
5301#if DEBUG_OUTBOUND_EVENT_DETAILS
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005302 {
5303 std::string msg;
5304 const KeyedVector<int32_t, int32_t>& fallbackKeys =
5305 connection->inputState.getFallbackKeys();
5306 for (size_t i = 0; i < fallbackKeys.size(); i++) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005307 msg += StringPrintf(", %d->%d", fallbackKeys.keyAt(i), fallbackKeys.valueAt(i));
Michael Wrightd02c5b62014-02-10 15:10:22 -08005308 }
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005309 ALOGD("Unhandled key event: %zu currently tracked fallback keys%s.",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005310 fallbackKeys.size(), msg.c_str());
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005311 }
5312#endif
5313
5314 if (fallback) {
5315 // Restart the dispatch cycle using the fallback key.
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005316 keyEntry.eventTime = event.getEventTime();
5317 keyEntry.deviceId = event.getDeviceId();
5318 keyEntry.source = event.getSource();
5319 keyEntry.displayId = event.getDisplayId();
5320 keyEntry.flags = event.getFlags() | AKEY_EVENT_FLAG_FALLBACK;
5321 keyEntry.keyCode = fallbackKeyCode;
5322 keyEntry.scanCode = event.getScanCode();
5323 keyEntry.metaState = event.getMetaState();
5324 keyEntry.repeatCount = event.getRepeatCount();
5325 keyEntry.downTime = event.getDownTime();
5326 keyEntry.syntheticRepeat = false;
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005327
5328#if DEBUG_OUTBOUND_EVENT_DETAILS
5329 ALOGD("Unhandled key event: Dispatching fallback key. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005330 "originalKeyCode=%d, fallbackKeyCode=%d, fallbackMetaState=%08x",
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005331 originalKeyCode, fallbackKeyCode, keyEntry.metaState);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08005332#endif
5333 return true; // restart the event
5334 } else {
5335#if DEBUG_OUTBOUND_EVENT_DETAILS
5336 ALOGD("Unhandled key event: No fallback key.");
5337#endif
Prabir Pradhanf93562f2018-11-29 12:13:37 -08005338
5339 // Report the key as unhandled, since there is no fallback key.
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005340 mReporter->reportUnhandledKey(keyEntry.id);
Michael Wrightd02c5b62014-02-10 15:10:22 -08005341 }
5342 }
5343 return false;
5344}
5345
5346bool InputDispatcher::afterMotionEventLockedInterruptible(const sp<Connection>& connection,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07005347 DispatchEntry* dispatchEntry,
Siarhei Vishniakoua9a7ee82019-10-14 16:28:19 -07005348 MotionEntry& motionEntry, bool handled) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08005349 return false;
5350}
5351
5352void InputDispatcher::doPokeUserActivityLockedInterruptible(CommandEntry* commandEntry) {
5353 mLock.unlock();
5354
5355 mPolicy->pokeUserActivity(commandEntry->eventTime, commandEntry->userActivityEventType);
5356
5357 mLock.lock();
5358}
5359
Siarhei Vishniakou9757f782019-10-29 12:53:08 -07005360KeyEvent InputDispatcher::createKeyEvent(const KeyEntry& entry) {
5361 KeyEvent event;
Garfield Tan6a5a14e2020-01-28 13:24:04 -08005362 event.initialize(entry.id, entry.deviceId, entry.source, entry.displayId, INVALID_HMAC,
Garfield Tan4cc839f2020-01-24 11:26:14 -08005363 entry.action, entry.flags, entry.keyCode, entry.scanCode, entry.metaState,
5364 entry.repeatCount, entry.downTime, entry.eventTime);
Siarhei Vishniakou9757f782019-10-29 12:53:08 -07005365 return event;
Michael Wrightd02c5b62014-02-10 15:10:22 -08005366}
5367
Siarhei Vishniakou767917f2020-03-24 20:49:09 -07005368void InputDispatcher::reportDispatchStatistics(std::chrono::nanoseconds eventDuration,
5369 const Connection& connection, bool handled) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08005370 // TODO Write some statistics about how long we spend waiting.
5371}
5372
Siarhei Vishniakoude4bf152019-08-16 11:12:52 -05005373/**
5374 * Report the touch event latency to the statsd server.
5375 * Input events are reported for statistics if:
5376 * - This is a touchscreen event
5377 * - InputFilter is not enabled
5378 * - Event is not injected or synthesized
5379 *
5380 * Statistics should be reported before calling addValue, to prevent a fresh new sample
5381 * from getting aggregated with the "old" data.
5382 */
5383void InputDispatcher::reportTouchEventForStatistics(const MotionEntry& motionEntry)
5384 REQUIRES(mLock) {
5385 const bool reportForStatistics = (motionEntry.source == AINPUT_SOURCE_TOUCHSCREEN) &&
5386 !(motionEntry.isSynthesized()) && !mInputFilterEnabled;
5387 if (!reportForStatistics) {
5388 return;
5389 }
5390
5391 if (mTouchStatistics.shouldReport()) {
5392 android::util::stats_write(android::util::TOUCH_EVENT_REPORTED, mTouchStatistics.getMin(),
5393 mTouchStatistics.getMax(), mTouchStatistics.getMean(),
5394 mTouchStatistics.getStDev(), mTouchStatistics.getCount());
5395 mTouchStatistics.reset();
5396 }
5397 const float latencyMicros = nanoseconds_to_microseconds(now() - motionEntry.eventTime);
5398 mTouchStatistics.addValue(latencyMicros);
5399}
5400
Michael Wrightd02c5b62014-02-10 15:10:22 -08005401void InputDispatcher::traceInboundQueueLengthLocked() {
5402 if (ATRACE_ENABLED()) {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07005403 ATRACE_INT("iq", mInboundQueue.size());
Michael Wrightd02c5b62014-02-10 15:10:22 -08005404 }
5405}
5406
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08005407void InputDispatcher::traceOutboundQueueLength(const sp<Connection>& connection) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08005408 if (ATRACE_ENABLED()) {
5409 char counterName[40];
Siarhei Vishniakou587c3f02018-01-04 11:46:44 -08005410 snprintf(counterName, sizeof(counterName), "oq:%s", connection->getWindowName().c_str());
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07005411 ATRACE_INT(counterName, connection->outboundQueue.size());
Michael Wrightd02c5b62014-02-10 15:10:22 -08005412 }
5413}
5414
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08005415void InputDispatcher::traceWaitQueueLength(const sp<Connection>& connection) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08005416 if (ATRACE_ENABLED()) {
5417 char counterName[40];
Siarhei Vishniakou587c3f02018-01-04 11:46:44 -08005418 snprintf(counterName, sizeof(counterName), "wq:%s", connection->getWindowName().c_str());
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07005419 ATRACE_INT(counterName, connection->waitQueue.size());
Michael Wrightd02c5b62014-02-10 15:10:22 -08005420 }
5421}
5422
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08005423void InputDispatcher::dump(std::string& dump) {
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08005424 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08005425
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08005426 dump += "Input Dispatcher State:\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08005427 dumpDispatchStateLocked(dump);
5428
Siarhei Vishniakoub1a16272020-05-06 16:09:19 -07005429 if (!mLastAnrState.empty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08005430 dump += "\nInput Dispatcher State at time of last ANR:\n";
Siarhei Vishniakoub1a16272020-05-06 16:09:19 -07005431 dump += mLastAnrState;
Michael Wrightd02c5b62014-02-10 15:10:22 -08005432 }
5433}
5434
5435void InputDispatcher::monitor() {
5436 // Acquire and release the lock to ensure that the dispatcher has not deadlocked.
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08005437 std::unique_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08005438 mLooper->wake();
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08005439 mDispatcherIsAlive.wait(_l);
Michael Wrightd02c5b62014-02-10 15:10:22 -08005440}
5441
Siarhei Vishniakou2bfa9052019-11-21 18:10:54 -08005442/**
5443 * Wake up the dispatcher and wait until it processes all events and commands.
5444 * The notification of mDispatcherEnteredIdle is guaranteed to happen after wake(), so
5445 * this method can be safely called from any thread, as long as you've ensured that
5446 * the work you are interested in completing has already been queued.
5447 */
5448bool InputDispatcher::waitForIdle() {
5449 /**
5450 * Timeout should represent the longest possible time that a device might spend processing
5451 * events and commands.
5452 */
5453 constexpr std::chrono::duration TIMEOUT = 100ms;
5454 std::unique_lock lock(mLock);
5455 mLooper->wake();
5456 std::cv_status result = mDispatcherEnteredIdle.wait_for(lock, TIMEOUT);
5457 return result == std::cv_status::no_timeout;
5458}
5459
Vishnu Naire798b472020-07-23 13:52:21 -07005460/**
5461 * Sets focus to the window identified by the token. This must be called
5462 * after updating any input window handles.
5463 *
5464 * Params:
5465 * request.token - input channel token used to identify the window that should gain focus.
5466 * request.focusedToken - the token that the caller expects currently to be focused. If the
5467 * specified token does not match the currently focused window, this request will be dropped.
5468 * If the specified focused token matches the currently focused window, the call will succeed.
5469 * Set this to "null" if this call should succeed no matter what the currently focused token is.
5470 * request.timestamp - SYSTEM_TIME_MONOTONIC timestamp in nanos set by the client (wm)
5471 * when requesting the focus change. This determines which request gets
5472 * precedence if there is a focus change request from another source such as pointer down.
5473 */
Vishnu Nair958da932020-08-21 17:12:37 -07005474void InputDispatcher::setFocusedWindow(const FocusRequest& request) {
5475 { // acquire lock
5476 std::scoped_lock _l(mLock);
5477
5478 const int32_t displayId = request.displayId;
5479 const sp<IBinder> oldFocusedToken = getValueByKey(mFocusedWindowTokenByDisplay, displayId);
5480 if (request.focusedToken && oldFocusedToken != request.focusedToken) {
5481 ALOGD_IF(DEBUG_FOCUS,
5482 "setFocusedWindow on display %" PRId32
5483 " ignored, reason: focusedToken is not focused",
5484 displayId);
5485 return;
5486 }
5487
5488 mPendingFocusRequests.erase(displayId);
5489 FocusResult result = handleFocusRequestLocked(request);
5490 if (result == FocusResult::NOT_VISIBLE) {
5491 // The requested window is not currently visible. Wait for the window to become visible
5492 // and then provide it focus. This is to handle situations where a user action triggers
5493 // a new window to appear. We want to be able to queue any key events after the user
5494 // action and deliver it to the newly focused window. In order for this to happen, we
5495 // take focus from the currently focused window so key events can be queued.
5496 ALOGD_IF(DEBUG_FOCUS,
5497 "setFocusedWindow on display %" PRId32
5498 " pending, reason: window is not visible",
5499 displayId);
5500 mPendingFocusRequests[displayId] = request;
5501 onFocusChangedLocked(oldFocusedToken, nullptr, displayId,
5502 "setFocusedWindow_AwaitingWindowVisibility");
5503 } else if (result != FocusResult::OK) {
5504 ALOGW("setFocusedWindow on display %" PRId32 " ignored, reason:%s", displayId,
5505 typeToString(result));
5506 }
5507 } // release lock
5508 // Wake up poll loop since it may need to make new input dispatching choices.
5509 mLooper->wake();
5510}
5511
5512InputDispatcher::FocusResult InputDispatcher::handleFocusRequestLocked(
5513 const FocusRequest& request) {
5514 const int32_t displayId = request.displayId;
5515 const sp<IBinder> newFocusedToken = request.token;
5516 const sp<IBinder> oldFocusedToken = getValueByKey(mFocusedWindowTokenByDisplay, displayId);
5517
5518 if (oldFocusedToken == request.token) {
5519 ALOGD_IF(DEBUG_FOCUS,
5520 "setFocusedWindow on display %" PRId32 " ignored, reason: already focused",
5521 displayId);
5522 return FocusResult::OK;
5523 }
5524
5525 FocusResult result = checkTokenFocusableLocked(newFocusedToken, displayId);
5526 if (result != FocusResult::OK) {
5527 return result;
5528 }
5529
5530 std::string_view reason =
5531 (request.focusedToken) ? "setFocusedWindow_FocusCheck" : "setFocusedWindow";
5532 onFocusChangedLocked(oldFocusedToken, newFocusedToken, displayId, reason);
5533 return FocusResult::OK;
5534}
Vishnu Nair7d3d00d2020-08-03 11:20:42 -07005535
Vishnu Nairad321cd2020-08-20 16:40:21 -07005536void InputDispatcher::onFocusChangedLocked(const sp<IBinder>& oldFocusedToken,
5537 const sp<IBinder>& newFocusedToken, int32_t displayId,
5538 std::string_view reason) {
5539 if (oldFocusedToken) {
5540 std::shared_ptr<InputChannel> focusedInputChannel = getInputChannelLocked(oldFocusedToken);
Vishnu Nair7d3d00d2020-08-03 11:20:42 -07005541 if (focusedInputChannel) {
5542 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS,
5543 "focus left window");
5544 synthesizeCancelationEventsForInputChannelLocked(focusedInputChannel, options);
Vishnu Nairad321cd2020-08-20 16:40:21 -07005545 enqueueFocusEventLocked(oldFocusedToken, false /*hasFocus*/, reason);
Vishnu Nair7d3d00d2020-08-03 11:20:42 -07005546 }
Vishnu Nairad321cd2020-08-20 16:40:21 -07005547 mFocusedWindowTokenByDisplay.erase(displayId);
Vishnu Nair7d3d00d2020-08-03 11:20:42 -07005548 }
Vishnu Nairad321cd2020-08-20 16:40:21 -07005549 if (newFocusedToken) {
5550 mFocusedWindowTokenByDisplay[displayId] = newFocusedToken;
5551 enqueueFocusEventLocked(newFocusedToken, true /*hasFocus*/, reason);
Vishnu Nair7d3d00d2020-08-03 11:20:42 -07005552 }
5553
5554 if (mFocusedDisplayId == displayId) {
Vishnu Nairad321cd2020-08-20 16:40:21 -07005555 notifyFocusChangedLocked(oldFocusedToken, newFocusedToken);
Vishnu Nair7d3d00d2020-08-03 11:20:42 -07005556 }
5557}
Vishnu Nair958da932020-08-21 17:12:37 -07005558
5559/**
5560 * Checks if the window token can be focused on a display. The token can be focused if there is
5561 * at least one window handle that is visible with the same token and all window handles with the
5562 * same token are focusable.
5563 *
5564 * In the case of mirroring, two windows may share the same window token and their visibility
5565 * might be different. Example, the mirrored window can cover the window its mirroring. However,
5566 * we expect the focusability of the windows to match since its hard to reason why one window can
5567 * receive focus events and the other cannot when both are backed by the same input channel.
5568 */
5569InputDispatcher::FocusResult InputDispatcher::checkTokenFocusableLocked(const sp<IBinder>& token,
5570 int32_t displayId) const {
5571 bool allWindowsAreFocusable = true;
5572 bool visibleWindowFound = false;
5573 bool windowFound = false;
5574 for (const sp<InputWindowHandle>& window : getWindowHandlesLocked(displayId)) {
5575 if (window->getToken() != token) {
5576 continue;
5577 }
5578 windowFound = true;
5579 if (window->getInfo()->visible) {
5580 // Check if at least a single window is visible.
5581 visibleWindowFound = true;
5582 }
5583 if (!window->getInfo()->focusable) {
5584 // Check if all windows with the window token are focusable.
5585 allWindowsAreFocusable = false;
5586 break;
5587 }
5588 }
5589
5590 if (!windowFound) {
5591 return FocusResult::NO_WINDOW;
5592 }
5593 if (!allWindowsAreFocusable) {
5594 return FocusResult::NOT_FOCUSABLE;
5595 }
5596 if (!visibleWindowFound) {
5597 return FocusResult::NOT_VISIBLE;
5598 }
5599
5600 return FocusResult::OK;
5601}
Garfield Tane84e6f92019-08-29 17:28:41 -07005602} // namespace android::inputdispatcher