blob: 2361867e6271c658be83625803e7e42c25a47b40 [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
Michael Wright3dd60e22019-03-27 22:06:44 +000020#define LOG_NDEBUG 0
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
31// Log debug messages about registrations.
32#define DEBUG_REGISTRATION 0
33
34// Log debug messages about input event injection.
35#define DEBUG_INJECTION 0
36
37// Log debug messages about input focus tracking.
38#define DEBUG_FOCUS 0
39
40// Log debug messages about the app switch latency optimization.
41#define DEBUG_APP_SWITCH 0
42
43// Log debug messages about hover events.
44#define DEBUG_HOVER 0
45
46#include "InputDispatcher.h"
47
Garfield Tane84e6f92019-08-29 17:28:41 -070048#include "Connection.h"
49
Michael Wrightd02c5b62014-02-10 15:10:22 -080050#include <errno.h>
Siarhei Vishniakou443ad902019-03-06 17:25:41 -080051#include <inttypes.h>
Michael Wrightd02c5b62014-02-10 15:10:22 -080052#include <limits.h>
Siarhei Vishniakoude4bf152019-08-16 11:12:52 -050053#include <statslog.h>
Mark Salyzyna5e161b2016-09-29 08:08:05 -070054#include <stddef.h>
Michael Wrightd02c5b62014-02-10 15:10:22 -080055#include <time.h>
Mark Salyzyna5e161b2016-09-29 08:08:05 -070056#include <unistd.h>
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -070057#include <queue>
58#include <sstream>
Mark Salyzyna5e161b2016-09-29 08:08:05 -070059
Michael Wright2b3c3302018-03-02 17:19:13 +000060#include <android-base/chrono_utils.h>
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -080061#include <android-base/stringprintf.h>
Robert Carr4e670e52018-08-15 13:26:12 -070062#include <binder/Binder.h>
Garfield Tan0fc2fa72019-08-29 17:22:15 -070063#include <log/log.h>
64#include <powermanager/PowerManager.h>
65#include <utils/Trace.h>
Michael Wrightd02c5b62014-02-10 15:10:22 -080066
67#define INDENT " "
68#define INDENT2 " "
69#define INDENT3 " "
70#define INDENT4 " "
71
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -080072using android::base::StringPrintf;
73
Garfield Tane84e6f92019-08-29 17:28:41 -070074namespace android::inputdispatcher {
Michael Wrightd02c5b62014-02-10 15:10:22 -080075
76// Default input dispatching timeout if there is no focused application or paused window
77// from which to determine an appropriate dispatching timeout.
Michael Wright2b3c3302018-03-02 17:19:13 +000078constexpr nsecs_t DEFAULT_INPUT_DISPATCHING_TIMEOUT = 5000 * 1000000LL; // 5 sec
Michael Wrightd02c5b62014-02-10 15:10:22 -080079
80// Amount of time to allow for all pending events to be processed when an app switch
81// key is on the way. This is used to preempt input dispatch and drop input events
82// when an application takes too long to respond and the user has pressed an app switch key.
Michael Wright2b3c3302018-03-02 17:19:13 +000083constexpr nsecs_t APP_SWITCH_TIMEOUT = 500 * 1000000LL; // 0.5sec
Michael Wrightd02c5b62014-02-10 15:10:22 -080084
85// Amount of time to allow for an event to be dispatched (measured since its eventTime)
86// before considering it stale and dropping it.
Michael Wright2b3c3302018-03-02 17:19:13 +000087constexpr nsecs_t STALE_EVENT_TIMEOUT = 10000 * 1000000LL; // 10sec
Michael Wrightd02c5b62014-02-10 15:10:22 -080088
89// Amount of time to allow touch events to be streamed out to a connection before requiring
90// that the first event be finished. This value extends the ANR timeout by the specified
91// amount. For example, if streaming is allowed to get ahead by one second relative to the
92// queue of waiting unfinished events, then ANRs will similarly be delayed by one second.
Michael Wright2b3c3302018-03-02 17:19:13 +000093constexpr nsecs_t STREAM_AHEAD_EVENT_TIMEOUT = 500 * 1000000LL; // 0.5sec
Michael Wrightd02c5b62014-02-10 15:10:22 -080094
95// 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 +000096constexpr nsecs_t SLOW_EVENT_PROCESSING_WARNING_TIMEOUT = 2000 * 1000000LL; // 2sec
97
98// Log a warning when an interception call takes longer than this to process.
99constexpr std::chrono::milliseconds SLOW_INTERCEPTION_THRESHOLD = 50ms;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800100
101// Number of recent events to keep for debugging purposes.
Michael Wright2b3c3302018-03-02 17:19:13 +0000102constexpr size_t RECENT_QUEUE_MAX_SIZE = 10;
103
Michael Wrightd02c5b62014-02-10 15:10:22 -0800104static inline nsecs_t now() {
105 return systemTime(SYSTEM_TIME_MONOTONIC);
106}
107
108static inline const char* toString(bool value) {
109 return value ? "true" : "false";
110}
111
112static inline int32_t getMotionEventActionPointerIndex(int32_t action) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700113 return (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) >>
114 AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800115}
116
117static bool isValidKeyAction(int32_t action) {
118 switch (action) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700119 case AKEY_EVENT_ACTION_DOWN:
120 case AKEY_EVENT_ACTION_UP:
121 return true;
122 default:
123 return false;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800124 }
125}
126
127static bool validateKeyEvent(int32_t action) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700128 if (!isValidKeyAction(action)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800129 ALOGE("Key event has invalid action code 0x%x", action);
130 return false;
131 }
132 return true;
133}
134
Michael Wright7b159c92015-05-14 14:48:03 +0100135static bool isValidMotionAction(int32_t action, int32_t actionButton, int32_t pointerCount) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800136 switch (action & AMOTION_EVENT_ACTION_MASK) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700137 case AMOTION_EVENT_ACTION_DOWN:
138 case AMOTION_EVENT_ACTION_UP:
139 case AMOTION_EVENT_ACTION_CANCEL:
140 case AMOTION_EVENT_ACTION_MOVE:
141 case AMOTION_EVENT_ACTION_OUTSIDE:
142 case AMOTION_EVENT_ACTION_HOVER_ENTER:
143 case AMOTION_EVENT_ACTION_HOVER_MOVE:
144 case AMOTION_EVENT_ACTION_HOVER_EXIT:
145 case AMOTION_EVENT_ACTION_SCROLL:
146 return true;
147 case AMOTION_EVENT_ACTION_POINTER_DOWN:
148 case AMOTION_EVENT_ACTION_POINTER_UP: {
149 int32_t index = getMotionEventActionPointerIndex(action);
150 return index >= 0 && index < pointerCount;
151 }
152 case AMOTION_EVENT_ACTION_BUTTON_PRESS:
153 case AMOTION_EVENT_ACTION_BUTTON_RELEASE:
154 return actionButton != 0;
155 default:
156 return false;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800157 }
158}
159
Michael Wright7b159c92015-05-14 14:48:03 +0100160static bool validateMotionEvent(int32_t action, int32_t actionButton, size_t pointerCount,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700161 const PointerProperties* pointerProperties) {
162 if (!isValidMotionAction(action, actionButton, pointerCount)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800163 ALOGE("Motion event has invalid action code 0x%x", action);
164 return false;
165 }
166 if (pointerCount < 1 || pointerCount > MAX_POINTERS) {
Narayan Kamath37764c72014-03-27 14:21:09 +0000167 ALOGE("Motion event has invalid pointer count %zu; value must be between 1 and %d.",
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700168 pointerCount, MAX_POINTERS);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800169 return false;
170 }
171 BitSet32 pointerIdBits;
172 for (size_t i = 0; i < pointerCount; i++) {
173 int32_t id = pointerProperties[i].id;
174 if (id < 0 || id > MAX_POINTER_ID) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700175 ALOGE("Motion event has invalid pointer id %d; value must be between 0 and %d", id,
176 MAX_POINTER_ID);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800177 return false;
178 }
179 if (pointerIdBits.hasBit(id)) {
180 ALOGE("Motion event has duplicate pointer id %d", id);
181 return false;
182 }
183 pointerIdBits.markBit(id);
184 }
185 return true;
186}
187
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800188static void dumpRegion(std::string& dump, const Region& region) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800189 if (region.isEmpty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800190 dump += "<empty>";
Michael Wrightd02c5b62014-02-10 15:10:22 -0800191 return;
192 }
193
194 bool first = true;
195 Region::const_iterator cur = region.begin();
196 Region::const_iterator const tail = region.end();
197 while (cur != tail) {
198 if (first) {
199 first = false;
200 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800201 dump += "|";
Michael Wrightd02c5b62014-02-10 15:10:22 -0800202 }
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800203 dump += StringPrintf("[%d,%d][%d,%d]", cur->left, cur->top, cur->right, cur->bottom);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800204 cur++;
205 }
206}
207
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -0700208/**
209 * Find the entry in std::unordered_map by key, and return it.
210 * If the entry is not found, return a default constructed entry.
211 *
212 * Useful when the entries are vectors, since an empty vector will be returned
213 * if the entry is not found.
214 * Also useful when the entries are sp<>. If an entry is not found, nullptr is returned.
215 */
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -0700216template <typename K, typename V>
217static V getValueByKey(const std::unordered_map<K, V>& map, K key) {
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -0700218 auto it = map.find(key);
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -0700219 return it != map.end() ? it->second : V{};
Tiger Huang721e26f2018-07-24 22:26:19 +0800220}
221
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -0700222/**
223 * Find the entry in std::unordered_map by value, and remove it.
224 * If more than one entry has the same value, then all matching
225 * key-value pairs will be removed.
226 *
227 * Return true if at least one value has been removed.
228 */
229template <typename K, typename V>
230static bool removeByValue(std::unordered_map<K, V>& map, const V& value) {
231 bool removed = false;
232 for (auto it = map.begin(); it != map.end();) {
233 if (it->second == value) {
234 it = map.erase(it);
235 removed = true;
236 } else {
237 it++;
238 }
239 }
240 return removed;
241}
Michael Wrightd02c5b62014-02-10 15:10:22 -0800242
243// --- InputDispatcher ---
244
Garfield Tan00f511d2019-06-12 16:55:40 -0700245InputDispatcher::InputDispatcher(const sp<InputDispatcherPolicyInterface>& policy)
246 : mPolicy(policy),
247 mPendingEvent(nullptr),
248 mLastDropReason(DROP_REASON_NOT_DROPPED),
249 mAppSwitchSawKeyDown(false),
250 mAppSwitchDueTime(LONG_LONG_MAX),
251 mNextUnblockedEvent(nullptr),
252 mDispatchEnabled(false),
253 mDispatchFrozen(false),
254 mInputFilterEnabled(false),
255 mFocusedDisplayId(ADISPLAY_ID_DEFAULT),
256 mInputTargetWaitCause(INPUT_TARGET_WAIT_CAUSE_NONE) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800257 mLooper = new Looper(false);
Prabir Pradhanf93562f2018-11-29 12:13:37 -0800258 mReporter = createInputReporter();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800259
Yi Kong9b14ac62018-07-17 13:48:38 -0700260 mKeyRepeatState.lastKeyEntry = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800261
262 policy->getDispatcherConfiguration(&mConfig);
263}
264
265InputDispatcher::~InputDispatcher() {
266 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -0800267 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800268
269 resetKeyRepeatLocked();
270 releasePendingEventLocked();
271 drainInboundQueueLocked();
272 }
273
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -0700274 while (!mConnectionsByFd.empty()) {
275 sp<Connection> connection = mConnectionsByFd.begin()->second;
276 unregisterInputChannel(connection->inputChannel);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800277 }
278}
279
280void InputDispatcher::dispatchOnce() {
281 nsecs_t nextWakeupTime = LONG_LONG_MAX;
282 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -0800283 std::scoped_lock _l(mLock);
284 mDispatcherIsAlive.notify_all();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800285
286 // Run a dispatch loop if there are no pending commands.
287 // The dispatch loop might enqueue commands to run afterwards.
288 if (!haveCommandsLocked()) {
289 dispatchOnceInnerLocked(&nextWakeupTime);
290 }
291
292 // Run all pending commands if there are any.
293 // If any commands were run then force the next poll to wake up immediately.
294 if (runCommandsLockedInterruptible()) {
295 nextWakeupTime = LONG_LONG_MIN;
296 }
297 } // release lock
298
299 // Wait for callback or timeout or wake. (make sure we round up, not down)
300 nsecs_t currentTime = now();
301 int timeoutMillis = toMillisecondTimeoutDelay(currentTime, nextWakeupTime);
302 mLooper->pollOnce(timeoutMillis);
303}
304
305void InputDispatcher::dispatchOnceInnerLocked(nsecs_t* nextWakeupTime) {
306 nsecs_t currentTime = now();
307
Jeff Browndc5992e2014-04-11 01:27:26 -0700308 // Reset the key repeat timer whenever normal dispatch is suspended while the
309 // device is in a non-interactive state. This is to ensure that we abort a key
310 // repeat if the device is just coming out of sleep.
311 if (!mDispatchEnabled) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800312 resetKeyRepeatLocked();
313 }
314
315 // If dispatching is frozen, do not process timeouts or try to deliver any new events.
316 if (mDispatchFrozen) {
317#if DEBUG_FOCUS
318 ALOGD("Dispatch frozen. Waiting some more.");
319#endif
320 return;
321 }
322
323 // Optimize latency of app switches.
324 // Essentially we start a short timeout when an app switch key (HOME / ENDCALL) has
325 // been pressed. When it expires, we preempt dispatch and drop all other pending events.
326 bool isAppSwitchDue = mAppSwitchDueTime <= currentTime;
327 if (mAppSwitchDueTime < *nextWakeupTime) {
328 *nextWakeupTime = mAppSwitchDueTime;
329 }
330
331 // Ready to start a new event.
332 // If we don't already have a pending event, go grab one.
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700333 if (!mPendingEvent) {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700334 if (mInboundQueue.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800335 if (isAppSwitchDue) {
336 // The inbound queue is empty so the app switch key we were waiting
337 // for will never arrive. Stop waiting for it.
338 resetPendingAppSwitchLocked(false);
339 isAppSwitchDue = false;
340 }
341
342 // Synthesize a key repeat if appropriate.
343 if (mKeyRepeatState.lastKeyEntry) {
344 if (currentTime >= mKeyRepeatState.nextRepeatTime) {
345 mPendingEvent = synthesizeKeyRepeatLocked(currentTime);
346 } else {
347 if (mKeyRepeatState.nextRepeatTime < *nextWakeupTime) {
348 *nextWakeupTime = mKeyRepeatState.nextRepeatTime;
349 }
350 }
351 }
352
353 // Nothing to do if there is no pending event.
354 if (!mPendingEvent) {
355 return;
356 }
357 } else {
358 // Inbound queue has at least one entry.
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700359 mPendingEvent = mInboundQueue.front();
360 mInboundQueue.pop_front();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800361 traceInboundQueueLengthLocked();
362 }
363
364 // Poke user activity for this event.
365 if (mPendingEvent->policyFlags & POLICY_FLAG_PASS_TO_USER) {
366 pokeUserActivityLocked(mPendingEvent);
367 }
368
369 // Get ready to dispatch the event.
370 resetANRTimeoutsLocked();
371 }
372
373 // Now we have an event to dispatch.
374 // All events are eventually dequeued and processed this way, even if we intend to drop them.
Yi Kong9b14ac62018-07-17 13:48:38 -0700375 ALOG_ASSERT(mPendingEvent != nullptr);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800376 bool done = false;
377 DropReason dropReason = DROP_REASON_NOT_DROPPED;
378 if (!(mPendingEvent->policyFlags & POLICY_FLAG_PASS_TO_USER)) {
379 dropReason = DROP_REASON_POLICY;
380 } else if (!mDispatchEnabled) {
381 dropReason = DROP_REASON_DISABLED;
382 }
383
384 if (mNextUnblockedEvent == mPendingEvent) {
Yi Kong9b14ac62018-07-17 13:48:38 -0700385 mNextUnblockedEvent = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800386 }
387
388 switch (mPendingEvent->type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700389 case EventEntry::TYPE_CONFIGURATION_CHANGED: {
390 ConfigurationChangedEntry* typedEntry =
391 static_cast<ConfigurationChangedEntry*>(mPendingEvent);
392 done = dispatchConfigurationChangedLocked(currentTime, typedEntry);
393 dropReason = DROP_REASON_NOT_DROPPED; // configuration changes are never dropped
394 break;
395 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800396
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700397 case EventEntry::TYPE_DEVICE_RESET: {
398 DeviceResetEntry* typedEntry = static_cast<DeviceResetEntry*>(mPendingEvent);
399 done = dispatchDeviceResetLocked(currentTime, typedEntry);
400 dropReason = DROP_REASON_NOT_DROPPED; // device resets are never dropped
401 break;
402 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800403
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700404 case EventEntry::TYPE_KEY: {
405 KeyEntry* typedEntry = static_cast<KeyEntry*>(mPendingEvent);
406 if (isAppSwitchDue) {
407 if (isAppSwitchKeyEvent(typedEntry)) {
408 resetPendingAppSwitchLocked(true);
409 isAppSwitchDue = false;
410 } else if (dropReason == DROP_REASON_NOT_DROPPED) {
411 dropReason = DROP_REASON_APP_SWITCH;
412 }
413 }
414 if (dropReason == DROP_REASON_NOT_DROPPED && isStaleEvent(currentTime, typedEntry)) {
415 dropReason = DROP_REASON_STALE;
416 }
417 if (dropReason == DROP_REASON_NOT_DROPPED && mNextUnblockedEvent) {
418 dropReason = DROP_REASON_BLOCKED;
419 }
420 done = dispatchKeyLocked(currentTime, typedEntry, &dropReason, nextWakeupTime);
421 break;
422 }
423
424 case EventEntry::TYPE_MOTION: {
425 MotionEntry* typedEntry = static_cast<MotionEntry*>(mPendingEvent);
426 if (dropReason == DROP_REASON_NOT_DROPPED && isAppSwitchDue) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800427 dropReason = DROP_REASON_APP_SWITCH;
428 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700429 if (dropReason == DROP_REASON_NOT_DROPPED && isStaleEvent(currentTime, typedEntry)) {
430 dropReason = DROP_REASON_STALE;
431 }
432 if (dropReason == DROP_REASON_NOT_DROPPED && mNextUnblockedEvent) {
433 dropReason = DROP_REASON_BLOCKED;
434 }
435 done = dispatchMotionLocked(currentTime, typedEntry, &dropReason, nextWakeupTime);
436 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800437 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800438
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700439 default:
440 ALOG_ASSERT(false);
441 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800442 }
443
444 if (done) {
445 if (dropReason != DROP_REASON_NOT_DROPPED) {
446 dropInboundEventLocked(mPendingEvent, dropReason);
447 }
Michael Wright3a981722015-06-10 15:26:13 +0100448 mLastDropReason = dropReason;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800449
450 releasePendingEventLocked();
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700451 *nextWakeupTime = LONG_LONG_MIN; // force next poll to wake up immediately
Michael Wrightd02c5b62014-02-10 15:10:22 -0800452 }
453}
454
455bool InputDispatcher::enqueueInboundEventLocked(EventEntry* entry) {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700456 bool needWake = mInboundQueue.empty();
457 mInboundQueue.push_back(entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800458 traceInboundQueueLengthLocked();
459
460 switch (entry->type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700461 case EventEntry::TYPE_KEY: {
462 // Optimize app switch latency.
463 // If the application takes too long to catch up then we drop all events preceding
464 // the app switch key.
465 KeyEntry* keyEntry = static_cast<KeyEntry*>(entry);
466 if (isAppSwitchKeyEvent(keyEntry)) {
467 if (keyEntry->action == AKEY_EVENT_ACTION_DOWN) {
468 mAppSwitchSawKeyDown = true;
469 } else if (keyEntry->action == AKEY_EVENT_ACTION_UP) {
470 if (mAppSwitchSawKeyDown) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800471#if DEBUG_APP_SWITCH
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700472 ALOGD("App switch is pending!");
Michael Wrightd02c5b62014-02-10 15:10:22 -0800473#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700474 mAppSwitchDueTime = keyEntry->eventTime + APP_SWITCH_TIMEOUT;
475 mAppSwitchSawKeyDown = false;
476 needWake = true;
477 }
478 }
479 }
480 break;
481 }
482
483 case EventEntry::TYPE_MOTION: {
484 // Optimize case where the current application is unresponsive and the user
485 // decides to touch a window in a different application.
486 // If the application takes too long to catch up then we drop all events preceding
487 // the touch into the other window.
488 MotionEntry* motionEntry = static_cast<MotionEntry*>(entry);
489 if (motionEntry->action == AMOTION_EVENT_ACTION_DOWN &&
490 (motionEntry->source & AINPUT_SOURCE_CLASS_POINTER) &&
491 mInputTargetWaitCause == INPUT_TARGET_WAIT_CAUSE_APPLICATION_NOT_READY &&
492 mInputTargetWaitApplicationToken != nullptr) {
493 int32_t displayId = motionEntry->displayId;
494 int32_t x =
495 int32_t(motionEntry->pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X));
496 int32_t y =
497 int32_t(motionEntry->pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y));
498 sp<InputWindowHandle> touchedWindowHandle =
499 findTouchedWindowAtLocked(displayId, x, y);
500 if (touchedWindowHandle != nullptr &&
501 touchedWindowHandle->getApplicationToken() !=
502 mInputTargetWaitApplicationToken) {
503 // User touched a different application than the one we are waiting on.
504 // Flag the event, and start pruning the input queue.
505 mNextUnblockedEvent = motionEntry;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800506 needWake = true;
507 }
508 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700509 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800510 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800511 }
512
513 return needWake;
514}
515
516void InputDispatcher::addRecentEventLocked(EventEntry* entry) {
517 entry->refCount += 1;
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700518 mRecentQueue.push_back(entry);
519 if (mRecentQueue.size() > RECENT_QUEUE_MAX_SIZE) {
520 mRecentQueue.front()->release();
521 mRecentQueue.pop_front();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800522 }
523}
524
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700525sp<InputWindowHandle> InputDispatcher::findTouchedWindowAtLocked(int32_t displayId, int32_t x,
526 int32_t y, bool addOutsideTargets,
527 bool addPortalWindows) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800528 // Traverse windows from front to back to find touched window.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800529 const std::vector<sp<InputWindowHandle>> windowHandles = getWindowHandlesLocked(displayId);
530 for (const sp<InputWindowHandle>& windowHandle : windowHandles) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800531 const InputWindowInfo* windowInfo = windowHandle->getInfo();
532 if (windowInfo->displayId == displayId) {
533 int32_t flags = windowInfo->layoutParamsFlags;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800534
535 if (windowInfo->visible) {
536 if (!(flags & InputWindowInfo::FLAG_NOT_TOUCHABLE)) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700537 bool isTouchModal = (flags &
538 (InputWindowInfo::FLAG_NOT_FOCUSABLE |
539 InputWindowInfo::FLAG_NOT_TOUCH_MODAL)) == 0;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800540 if (isTouchModal || windowInfo->touchableRegionContainsPoint(x, y)) {
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800541 int32_t portalToDisplayId = windowInfo->portalToDisplayId;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700542 if (portalToDisplayId != ADISPLAY_ID_NONE &&
543 portalToDisplayId != displayId) {
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800544 if (addPortalWindows) {
545 // For the monitoring channels of the display.
546 mTempTouchState.addPortalWindow(windowHandle);
547 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700548 return findTouchedWindowAtLocked(portalToDisplayId, x, y,
549 addOutsideTargets, addPortalWindows);
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800550 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800551 // Found window.
552 return windowHandle;
553 }
554 }
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800555
556 if (addOutsideTargets && (flags & InputWindowInfo::FLAG_WATCH_OUTSIDE_TOUCH)) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700557 mTempTouchState.addOrUpdateWindow(windowHandle,
558 InputTarget::FLAG_DISPATCH_AS_OUTSIDE,
559 BitSet32(0));
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800560 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800561 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800562 }
563 }
Yi Kong9b14ac62018-07-17 13:48:38 -0700564 return nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800565}
566
Garfield Tane84e6f92019-08-29 17:28:41 -0700567std::vector<TouchedMonitor> InputDispatcher::findTouchedGestureMonitorsLocked(
Michael Wright3dd60e22019-03-27 22:06:44 +0000568 int32_t displayId, const std::vector<sp<InputWindowHandle>>& portalWindows) {
569 std::vector<TouchedMonitor> touchedMonitors;
570
571 std::vector<Monitor> monitors = getValueByKey(mGestureMonitorsByDisplay, displayId);
572 addGestureMonitors(monitors, touchedMonitors);
573 for (const sp<InputWindowHandle>& portalWindow : portalWindows) {
574 const InputWindowInfo* windowInfo = portalWindow->getInfo();
575 monitors = getValueByKey(mGestureMonitorsByDisplay, windowInfo->portalToDisplayId);
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700576 addGestureMonitors(monitors, touchedMonitors, -windowInfo->frameLeft,
577 -windowInfo->frameTop);
Michael Wright3dd60e22019-03-27 22:06:44 +0000578 }
579 return touchedMonitors;
580}
581
582void InputDispatcher::addGestureMonitors(const std::vector<Monitor>& monitors,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700583 std::vector<TouchedMonitor>& outTouchedMonitors,
584 float xOffset, float yOffset) {
Michael Wright3dd60e22019-03-27 22:06:44 +0000585 if (monitors.empty()) {
586 return;
587 }
588 outTouchedMonitors.reserve(monitors.size() + outTouchedMonitors.size());
589 for (const Monitor& monitor : monitors) {
590 outTouchedMonitors.emplace_back(monitor, xOffset, yOffset);
591 }
592}
593
Michael Wrightd02c5b62014-02-10 15:10:22 -0800594void InputDispatcher::dropInboundEventLocked(EventEntry* entry, DropReason dropReason) {
595 const char* reason;
596 switch (dropReason) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700597 case DROP_REASON_POLICY:
Michael Wrightd02c5b62014-02-10 15:10:22 -0800598#if DEBUG_INBOUND_EVENT_DETAILS
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700599 ALOGD("Dropped event because policy consumed it.");
Michael Wrightd02c5b62014-02-10 15:10:22 -0800600#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700601 reason = "inbound event was dropped because the policy consumed it";
602 break;
603 case DROP_REASON_DISABLED:
604 if (mLastDropReason != DROP_REASON_DISABLED) {
605 ALOGI("Dropped event because input dispatch is disabled.");
606 }
607 reason = "inbound event was dropped because input dispatch is disabled";
608 break;
609 case DROP_REASON_APP_SWITCH:
610 ALOGI("Dropped event because of pending overdue app switch.");
611 reason = "inbound event was dropped because of pending overdue app switch";
612 break;
613 case DROP_REASON_BLOCKED:
614 ALOGI("Dropped event because the current application is not responding and the user "
615 "has started interacting with a different application.");
616 reason = "inbound event was dropped because the current application is not responding "
617 "and the user has started interacting with a different application";
618 break;
619 case DROP_REASON_STALE:
620 ALOGI("Dropped event because it is stale.");
621 reason = "inbound event was dropped because it is stale";
622 break;
623 default:
624 ALOG_ASSERT(false);
625 return;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800626 }
627
628 switch (entry->type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700629 case EventEntry::TYPE_KEY: {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800630 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason);
631 synthesizeCancelationEventsForAllConnectionsLocked(options);
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700632 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800633 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700634 case EventEntry::TYPE_MOTION: {
635 MotionEntry* motionEntry = static_cast<MotionEntry*>(entry);
636 if (motionEntry->source & AINPUT_SOURCE_CLASS_POINTER) {
637 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS, reason);
638 synthesizeCancelationEventsForAllConnectionsLocked(options);
639 } else {
640 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason);
641 synthesizeCancelationEventsForAllConnectionsLocked(options);
642 }
643 break;
644 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800645 }
646}
647
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800648static bool isAppSwitchKeyCode(int32_t keyCode) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700649 return keyCode == AKEYCODE_HOME || keyCode == AKEYCODE_ENDCALL ||
650 keyCode == AKEYCODE_APP_SWITCH;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800651}
652
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800653bool InputDispatcher::isAppSwitchKeyEvent(KeyEntry* keyEntry) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700654 return !(keyEntry->flags & AKEY_EVENT_FLAG_CANCELED) && isAppSwitchKeyCode(keyEntry->keyCode) &&
655 (keyEntry->policyFlags & POLICY_FLAG_TRUSTED) &&
656 (keyEntry->policyFlags & POLICY_FLAG_PASS_TO_USER);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800657}
658
659bool InputDispatcher::isAppSwitchPendingLocked() {
660 return mAppSwitchDueTime != LONG_LONG_MAX;
661}
662
663void InputDispatcher::resetPendingAppSwitchLocked(bool handled) {
664 mAppSwitchDueTime = LONG_LONG_MAX;
665
666#if DEBUG_APP_SWITCH
667 if (handled) {
668 ALOGD("App switch has arrived.");
669 } else {
670 ALOGD("App switch was abandoned.");
671 }
672#endif
673}
674
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800675bool InputDispatcher::isStaleEvent(nsecs_t currentTime, EventEntry* entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800676 return currentTime - entry->eventTime >= STALE_EVENT_TIMEOUT;
677}
678
679bool InputDispatcher::haveCommandsLocked() const {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700680 return !mCommandQueue.empty();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800681}
682
683bool InputDispatcher::runCommandsLockedInterruptible() {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700684 if (mCommandQueue.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800685 return false;
686 }
687
688 do {
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700689 std::unique_ptr<CommandEntry> commandEntry = std::move(mCommandQueue.front());
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700690 mCommandQueue.pop_front();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800691 Command command = commandEntry->command;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700692 command(*this, commandEntry.get()); // commands are implicitly 'LockedInterruptible'
Michael Wrightd02c5b62014-02-10 15:10:22 -0800693
694 commandEntry->connection.clear();
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700695 } while (!mCommandQueue.empty());
Michael Wrightd02c5b62014-02-10 15:10:22 -0800696 return true;
697}
698
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700699void InputDispatcher::postCommandLocked(std::unique_ptr<CommandEntry> commandEntry) {
700 mCommandQueue.push_back(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -0800701}
702
703void InputDispatcher::drainInboundQueueLocked() {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700704 while (!mInboundQueue.empty()) {
705 EventEntry* entry = mInboundQueue.front();
706 mInboundQueue.pop_front();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800707 releaseInboundEventLocked(entry);
708 }
709 traceInboundQueueLengthLocked();
710}
711
712void InputDispatcher::releasePendingEventLocked() {
713 if (mPendingEvent) {
714 resetANRTimeoutsLocked();
715 releaseInboundEventLocked(mPendingEvent);
Yi Kong9b14ac62018-07-17 13:48:38 -0700716 mPendingEvent = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800717 }
718}
719
720void InputDispatcher::releaseInboundEventLocked(EventEntry* entry) {
721 InjectionState* injectionState = entry->injectionState;
722 if (injectionState && injectionState->injectionResult == INPUT_EVENT_INJECTION_PENDING) {
723#if DEBUG_DISPATCH_CYCLE
724 ALOGD("Injected inbound event was dropped.");
725#endif
Siarhei Vishniakou62683e82019-03-06 17:59:56 -0800726 setInjectionResult(entry, INPUT_EVENT_INJECTION_FAILED);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800727 }
728 if (entry == mNextUnblockedEvent) {
Yi Kong9b14ac62018-07-17 13:48:38 -0700729 mNextUnblockedEvent = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800730 }
731 addRecentEventLocked(entry);
732 entry->release();
733}
734
735void InputDispatcher::resetKeyRepeatLocked() {
736 if (mKeyRepeatState.lastKeyEntry) {
737 mKeyRepeatState.lastKeyEntry->release();
Yi Kong9b14ac62018-07-17 13:48:38 -0700738 mKeyRepeatState.lastKeyEntry = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800739 }
740}
741
Garfield Tane84e6f92019-08-29 17:28:41 -0700742KeyEntry* InputDispatcher::synthesizeKeyRepeatLocked(nsecs_t currentTime) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800743 KeyEntry* entry = mKeyRepeatState.lastKeyEntry;
744
745 // Reuse the repeated key entry if it is otherwise unreferenced.
Michael Wright2e732952014-09-24 13:26:59 -0700746 uint32_t policyFlags = entry->policyFlags &
747 (POLICY_FLAG_RAW_MASK | POLICY_FLAG_PASS_TO_USER | POLICY_FLAG_TRUSTED);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800748 if (entry->refCount == 1) {
749 entry->recycle();
750 entry->eventTime = currentTime;
751 entry->policyFlags = policyFlags;
752 entry->repeatCount += 1;
753 } else {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700754 KeyEntry* newEntry =
755 new KeyEntry(SYNTHESIZED_EVENT_SEQUENCE_NUM, currentTime, entry->deviceId,
756 entry->source, entry->displayId, policyFlags, entry->action,
757 entry->flags, entry->keyCode, entry->scanCode, entry->metaState,
758 entry->repeatCount + 1, entry->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800759
760 mKeyRepeatState.lastKeyEntry = newEntry;
761 entry->release();
762
763 entry = newEntry;
764 }
765 entry->syntheticRepeat = true;
766
767 // Increment reference count since we keep a reference to the event in
768 // mKeyRepeatState.lastKeyEntry in addition to the one we return.
769 entry->refCount += 1;
770
771 mKeyRepeatState.nextRepeatTime = currentTime + mConfig.keyRepeatDelay;
772 return entry;
773}
774
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700775bool InputDispatcher::dispatchConfigurationChangedLocked(nsecs_t currentTime,
776 ConfigurationChangedEntry* entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800777#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakou5d83f602017-09-12 12:40:29 -0700778 ALOGD("dispatchConfigurationChanged - eventTime=%" PRId64, entry->eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800779#endif
780
781 // Reset key repeating in case a keyboard device was added or removed or something.
782 resetKeyRepeatLocked();
783
784 // Enqueue a command to run outside the lock to tell the policy that the configuration changed.
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700785 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
786 &InputDispatcher::doNotifyConfigurationChangedLockedInterruptible);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800787 commandEntry->eventTime = entry->eventTime;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700788 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -0800789 return true;
790}
791
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700792bool InputDispatcher::dispatchDeviceResetLocked(nsecs_t currentTime, DeviceResetEntry* entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800793#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakou5d83f602017-09-12 12:40:29 -0700794 ALOGD("dispatchDeviceReset - eventTime=%" PRId64 ", deviceId=%d", entry->eventTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700795 entry->deviceId);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800796#endif
797
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700798 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS, "device was reset");
Michael Wrightd02c5b62014-02-10 15:10:22 -0800799 options.deviceId = entry->deviceId;
800 synthesizeCancelationEventsForAllConnectionsLocked(options);
801 return true;
802}
803
804bool InputDispatcher::dispatchKeyLocked(nsecs_t currentTime, KeyEntry* entry,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700805 DropReason* dropReason, nsecs_t* nextWakeupTime) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800806 // Preprocessing.
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700807 if (!entry->dispatchInProgress) {
808 if (entry->repeatCount == 0 && entry->action == AKEY_EVENT_ACTION_DOWN &&
809 (entry->policyFlags & POLICY_FLAG_TRUSTED) &&
810 (!(entry->policyFlags & POLICY_FLAG_DISABLE_KEY_REPEAT))) {
811 if (mKeyRepeatState.lastKeyEntry &&
812 mKeyRepeatState.lastKeyEntry->keyCode == entry->keyCode) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800813 // We have seen two identical key downs in a row which indicates that the device
814 // driver is automatically generating key repeats itself. We take note of the
815 // repeat here, but we disable our own next key repeat timer since it is clear that
816 // we will not need to synthesize key repeats ourselves.
817 entry->repeatCount = mKeyRepeatState.lastKeyEntry->repeatCount + 1;
818 resetKeyRepeatLocked();
819 mKeyRepeatState.nextRepeatTime = LONG_LONG_MAX; // don't generate repeats ourselves
820 } else {
821 // Not a repeat. Save key down state in case we do see a repeat later.
822 resetKeyRepeatLocked();
823 mKeyRepeatState.nextRepeatTime = entry->eventTime + mConfig.keyRepeatTimeout;
824 }
825 mKeyRepeatState.lastKeyEntry = entry;
826 entry->refCount += 1;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700827 } else if (!entry->syntheticRepeat) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800828 resetKeyRepeatLocked();
829 }
830
831 if (entry->repeatCount == 1) {
832 entry->flags |= AKEY_EVENT_FLAG_LONG_PRESS;
833 } else {
834 entry->flags &= ~AKEY_EVENT_FLAG_LONG_PRESS;
835 }
836
837 entry->dispatchInProgress = true;
838
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800839 logOutboundKeyDetails("dispatchKey - ", entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800840 }
841
842 // Handle case where the policy asked us to try again later last time.
843 if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER) {
844 if (currentTime < entry->interceptKeyWakeupTime) {
845 if (entry->interceptKeyWakeupTime < *nextWakeupTime) {
846 *nextWakeupTime = entry->interceptKeyWakeupTime;
847 }
848 return false; // wait until next wakeup
849 }
850 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN;
851 entry->interceptKeyWakeupTime = 0;
852 }
853
854 // Give the policy a chance to intercept the key.
855 if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN) {
856 if (entry->policyFlags & POLICY_FLAG_PASS_TO_USER) {
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700857 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
Siarhei Vishniakou49a350a2019-07-26 18:44:23 -0700858 &InputDispatcher::doInterceptKeyBeforeDispatchingLockedInterruptible);
Tiger Huang721e26f2018-07-24 22:26:19 +0800859 sp<InputWindowHandle> focusedWindowHandle =
860 getValueByKey(mFocusedWindowHandlesByDisplay, getTargetDisplayId(entry));
861 if (focusedWindowHandle != nullptr) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700862 commandEntry->inputChannel = getInputChannelLocked(focusedWindowHandle->getToken());
Michael Wrightd02c5b62014-02-10 15:10:22 -0800863 }
864 commandEntry->keyEntry = entry;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700865 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -0800866 entry->refCount += 1;
867 return false; // wait for the command to run
868 } else {
869 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE;
870 }
871 } else if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_SKIP) {
872 if (*dropReason == DROP_REASON_NOT_DROPPED) {
873 *dropReason = DROP_REASON_POLICY;
874 }
875 }
876
877 // Clean up if dropping the event.
878 if (*dropReason != DROP_REASON_NOT_DROPPED) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700879 setInjectionResult(entry,
880 *dropReason == DROP_REASON_POLICY ? INPUT_EVENT_INJECTION_SUCCEEDED
881 : INPUT_EVENT_INJECTION_FAILED);
Prabir Pradhanf93562f2018-11-29 12:13:37 -0800882 mReporter->reportDroppedKey(entry->sequenceNum);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800883 return true;
884 }
885
886 // Identify targets.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800887 std::vector<InputTarget> inputTargets;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700888 int32_t injectionResult =
889 findFocusedWindowTargetsLocked(currentTime, entry, inputTargets, nextWakeupTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800890 if (injectionResult == INPUT_EVENT_INJECTION_PENDING) {
891 return false;
892 }
893
Siarhei Vishniakou62683e82019-03-06 17:59:56 -0800894 setInjectionResult(entry, injectionResult);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800895 if (injectionResult != INPUT_EVENT_INJECTION_SUCCEEDED) {
896 return true;
897 }
898
Arthur Hung2fbf37f2018-09-13 18:16:41 +0800899 // Add monitor channels from event's or focused display.
Michael Wright3dd60e22019-03-27 22:06:44 +0000900 addGlobalMonitoringTargetsLocked(inputTargets, getTargetDisplayId(entry));
Michael Wrightd02c5b62014-02-10 15:10:22 -0800901
902 // Dispatch the key.
903 dispatchEventLocked(currentTime, entry, inputTargets);
904 return true;
905}
906
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800907void InputDispatcher::logOutboundKeyDetails(const char* prefix, const KeyEntry* entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800908#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakoua62a8dd2018-06-08 21:17:33 +0100909 ALOGD("%seventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32 ", "
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700910 "policyFlags=0x%x, action=0x%x, flags=0x%x, keyCode=0x%x, scanCode=0x%x, "
911 "metaState=0x%x, repeatCount=%d, downTime=%" PRId64,
912 prefix, entry->eventTime, entry->deviceId, entry->source, entry->displayId,
913 entry->policyFlags, entry->action, entry->flags, entry->keyCode, entry->scanCode,
914 entry->metaState, entry->repeatCount, entry->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800915#endif
916}
917
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700918bool InputDispatcher::dispatchMotionLocked(nsecs_t currentTime, MotionEntry* entry,
919 DropReason* dropReason, nsecs_t* nextWakeupTime) {
Michael Wright3dd60e22019-03-27 22:06:44 +0000920 ATRACE_CALL();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800921 // Preprocessing.
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700922 if (!entry->dispatchInProgress) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800923 entry->dispatchInProgress = true;
924
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800925 logOutboundMotionDetails("dispatchMotion - ", entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800926 }
927
928 // Clean up if dropping the event.
929 if (*dropReason != DROP_REASON_NOT_DROPPED) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700930 setInjectionResult(entry,
931 *dropReason == DROP_REASON_POLICY ? INPUT_EVENT_INJECTION_SUCCEEDED
932 : INPUT_EVENT_INJECTION_FAILED);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800933 return true;
934 }
935
936 bool isPointerEvent = entry->source & AINPUT_SOURCE_CLASS_POINTER;
937
938 // Identify targets.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800939 std::vector<InputTarget> inputTargets;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800940
941 bool conflictingPointerActions = false;
942 int32_t injectionResult;
943 if (isPointerEvent) {
944 // Pointer event. (eg. touchscreen)
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700945 injectionResult =
946 findTouchedWindowTargetsLocked(currentTime, entry, inputTargets, nextWakeupTime,
947 &conflictingPointerActions);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800948 } else {
949 // Non touch event. (eg. trackball)
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700950 injectionResult =
951 findFocusedWindowTargetsLocked(currentTime, entry, inputTargets, nextWakeupTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800952 }
953 if (injectionResult == INPUT_EVENT_INJECTION_PENDING) {
954 return false;
955 }
956
Siarhei Vishniakou62683e82019-03-06 17:59:56 -0800957 setInjectionResult(entry, injectionResult);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800958 if (injectionResult != INPUT_EVENT_INJECTION_SUCCEEDED) {
Michael Wrightfa13dcf2015-06-12 13:25:11 +0100959 if (injectionResult != INPUT_EVENT_INJECTION_PERMISSION_DENIED) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700960 CancelationOptions::Mode mode(isPointerEvent
961 ? CancelationOptions::CANCEL_POINTER_EVENTS
962 : CancelationOptions::CANCEL_NON_POINTER_EVENTS);
Michael Wrightfa13dcf2015-06-12 13:25:11 +0100963 CancelationOptions options(mode, "input event injection failed");
964 synthesizeCancelationEventsForMonitorsLocked(options);
965 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800966 return true;
967 }
968
Arthur Hung2fbf37f2018-09-13 18:16:41 +0800969 // Add monitor channels from event's or focused display.
Michael Wright3dd60e22019-03-27 22:06:44 +0000970 addGlobalMonitoringTargetsLocked(inputTargets, getTargetDisplayId(entry));
Michael Wrightd02c5b62014-02-10 15:10:22 -0800971
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800972 if (isPointerEvent) {
973 ssize_t stateIndex = mTouchStatesByDisplay.indexOfKey(entry->displayId);
974 if (stateIndex >= 0) {
975 const TouchState& state = mTouchStatesByDisplay.valueAt(stateIndex);
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800976 if (!state.portalWindows.empty()) {
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800977 // The event has gone through these portal windows, so we add monitoring targets of
978 // the corresponding displays as well.
979 for (size_t i = 0; i < state.portalWindows.size(); i++) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800980 const InputWindowInfo* windowInfo = state.portalWindows[i]->getInfo();
Michael Wright3dd60e22019-03-27 22:06:44 +0000981 addGlobalMonitoringTargetsLocked(inputTargets, windowInfo->portalToDisplayId,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700982 -windowInfo->frameLeft, -windowInfo->frameTop);
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800983 }
984 }
985 }
986 }
987
Michael Wrightd02c5b62014-02-10 15:10:22 -0800988 // Dispatch the motion.
989 if (conflictingPointerActions) {
990 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700991 "conflicting pointer actions");
Michael Wrightd02c5b62014-02-10 15:10:22 -0800992 synthesizeCancelationEventsForAllConnectionsLocked(options);
993 }
994 dispatchEventLocked(currentTime, entry, inputTargets);
995 return true;
996}
997
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800998void InputDispatcher::logOutboundMotionDetails(const char* prefix, const MotionEntry* entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800999#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakou777a10b2018-01-31 16:45:06 -08001000 ALOGD("%seventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001001 ", policyFlags=0x%x, "
1002 "action=0x%x, actionButton=0x%x, flags=0x%x, "
1003 "metaState=0x%x, buttonState=0x%x,"
1004 "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, downTime=%" PRId64,
1005 prefix, entry->eventTime, entry->deviceId, entry->source, entry->displayId,
1006 entry->policyFlags, entry->action, entry->actionButton, entry->flags, entry->metaState,
1007 entry->buttonState, entry->edgeFlags, entry->xPrecision, entry->yPrecision,
1008 entry->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001009
1010 for (uint32_t i = 0; i < entry->pointerCount; i++) {
1011 ALOGD(" Pointer %d: id=%d, toolType=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001012 "x=%f, y=%f, pressure=%f, size=%f, "
1013 "touchMajor=%f, touchMinor=%f, toolMajor=%f, toolMinor=%f, "
1014 "orientation=%f",
1015 i, entry->pointerProperties[i].id, entry->pointerProperties[i].toolType,
1016 entry->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_X),
1017 entry->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_Y),
1018 entry->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_PRESSURE),
1019 entry->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_SIZE),
1020 entry->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR),
1021 entry->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR),
1022 entry->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR),
1023 entry->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR),
1024 entry->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001025 }
1026#endif
1027}
1028
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001029void InputDispatcher::dispatchEventLocked(nsecs_t currentTime, EventEntry* eventEntry,
1030 const std::vector<InputTarget>& inputTargets) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001031 ATRACE_CALL();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001032#if DEBUG_DISPATCH_CYCLE
1033 ALOGD("dispatchEventToCurrentInputTargets");
1034#endif
1035
1036 ALOG_ASSERT(eventEntry->dispatchInProgress); // should already have been set to true
1037
1038 pokeUserActivityLocked(eventEntry);
1039
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001040 for (const InputTarget& inputTarget : inputTargets) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07001041 sp<Connection> connection = getConnectionLocked(inputTarget.inputChannel);
1042 if (connection != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001043 prepareDispatchCycleLocked(currentTime, connection, eventEntry, &inputTarget);
1044 } else {
1045#if DEBUG_FOCUS
1046 ALOGD("Dropping event delivery to target with channel '%s' because it "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001047 "is no longer registered with the input dispatcher.",
1048 inputTarget.inputChannel->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001049#endif
1050 }
1051 }
1052}
1053
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001054int32_t InputDispatcher::handleTargetsNotReadyLocked(
1055 nsecs_t currentTime, const EventEntry* entry,
Michael Wrightd02c5b62014-02-10 15:10:22 -08001056 const sp<InputApplicationHandle>& applicationHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001057 const sp<InputWindowHandle>& windowHandle, nsecs_t* nextWakeupTime, const char* reason) {
Yi Kong9b14ac62018-07-17 13:48:38 -07001058 if (applicationHandle == nullptr && windowHandle == nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001059 if (mInputTargetWaitCause != INPUT_TARGET_WAIT_CAUSE_SYSTEM_NOT_READY) {
1060#if DEBUG_FOCUS
1061 ALOGD("Waiting for system to become ready for input. Reason: %s", reason);
1062#endif
1063 mInputTargetWaitCause = INPUT_TARGET_WAIT_CAUSE_SYSTEM_NOT_READY;
1064 mInputTargetWaitStartTime = currentTime;
1065 mInputTargetWaitTimeoutTime = LONG_LONG_MAX;
1066 mInputTargetWaitTimeoutExpired = false;
Robert Carr740167f2018-10-11 19:03:41 -07001067 mInputTargetWaitApplicationToken.clear();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001068 }
1069 } else {
1070 if (mInputTargetWaitCause != INPUT_TARGET_WAIT_CAUSE_APPLICATION_NOT_READY) {
1071#if DEBUG_FOCUS
1072 ALOGD("Waiting for application to become ready for input: %s. Reason: %s",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001073 getApplicationWindowLabel(applicationHandle, windowHandle).c_str(), reason);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001074#endif
1075 nsecs_t timeout;
Yi Kong9b14ac62018-07-17 13:48:38 -07001076 if (windowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001077 timeout = windowHandle->getDispatchingTimeout(DEFAULT_INPUT_DISPATCHING_TIMEOUT);
Yi Kong9b14ac62018-07-17 13:48:38 -07001078 } else if (applicationHandle != nullptr) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001079 timeout =
1080 applicationHandle->getDispatchingTimeout(DEFAULT_INPUT_DISPATCHING_TIMEOUT);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001081 } else {
1082 timeout = DEFAULT_INPUT_DISPATCHING_TIMEOUT;
1083 }
1084
1085 mInputTargetWaitCause = INPUT_TARGET_WAIT_CAUSE_APPLICATION_NOT_READY;
1086 mInputTargetWaitStartTime = currentTime;
1087 mInputTargetWaitTimeoutTime = currentTime + timeout;
1088 mInputTargetWaitTimeoutExpired = false;
Robert Carr740167f2018-10-11 19:03:41 -07001089 mInputTargetWaitApplicationToken.clear();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001090
Yi Kong9b14ac62018-07-17 13:48:38 -07001091 if (windowHandle != nullptr) {
Robert Carr740167f2018-10-11 19:03:41 -07001092 mInputTargetWaitApplicationToken = windowHandle->getApplicationToken();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001093 }
Robert Carr740167f2018-10-11 19:03:41 -07001094 if (mInputTargetWaitApplicationToken == nullptr && applicationHandle != nullptr) {
1095 mInputTargetWaitApplicationToken = applicationHandle->getApplicationToken();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001096 }
1097 }
1098 }
1099
1100 if (mInputTargetWaitTimeoutExpired) {
1101 return INPUT_EVENT_INJECTION_TIMED_OUT;
1102 }
1103
1104 if (currentTime >= mInputTargetWaitTimeoutTime) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001105 onANRLocked(currentTime, applicationHandle, windowHandle, entry->eventTime,
1106 mInputTargetWaitStartTime, reason);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001107
1108 // Force poll loop to wake up immediately on next iteration once we get the
1109 // ANR response back from the policy.
1110 *nextWakeupTime = LONG_LONG_MIN;
1111 return INPUT_EVENT_INJECTION_PENDING;
1112 } else {
1113 // Force poll loop to wake up when timeout is due.
1114 if (mInputTargetWaitTimeoutTime < *nextWakeupTime) {
1115 *nextWakeupTime = mInputTargetWaitTimeoutTime;
1116 }
1117 return INPUT_EVENT_INJECTION_PENDING;
1118 }
1119}
1120
Robert Carr803535b2018-08-02 16:38:15 -07001121void InputDispatcher::removeWindowByTokenLocked(const sp<IBinder>& token) {
1122 for (size_t d = 0; d < mTouchStatesByDisplay.size(); d++) {
1123 TouchState& state = mTouchStatesByDisplay.editValueAt(d);
1124 state.removeWindowByToken(token);
1125 }
1126}
1127
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001128void InputDispatcher::resumeAfterTargetsNotReadyTimeoutLocked(
1129 nsecs_t newTimeout, const sp<InputChannel>& inputChannel) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001130 if (newTimeout > 0) {
1131 // Extend the timeout.
1132 mInputTargetWaitTimeoutTime = now() + newTimeout;
1133 } else {
1134 // Give up.
1135 mInputTargetWaitTimeoutExpired = true;
1136
1137 // Input state will not be realistic. Mark it out of sync.
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07001138 sp<Connection> connection = getConnectionLocked(inputChannel);
1139 if (connection != nullptr) {
1140 sp<IBinder> token = connection->inputChannel->getToken();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001141
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07001142 if (token != nullptr) {
1143 removeWindowByTokenLocked(token);
1144 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001145
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07001146 if (connection->status == Connection::STATUS_NORMAL) {
1147 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS,
1148 "application not responding");
1149 synthesizeCancelationEventsForConnectionLocked(connection, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001150 }
1151 }
1152 }
1153}
1154
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001155nsecs_t InputDispatcher::getTimeSpentWaitingForApplicationLocked(nsecs_t currentTime) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001156 if (mInputTargetWaitCause == INPUT_TARGET_WAIT_CAUSE_APPLICATION_NOT_READY) {
1157 return currentTime - mInputTargetWaitStartTime;
1158 }
1159 return 0;
1160}
1161
1162void InputDispatcher::resetANRTimeoutsLocked() {
1163#if DEBUG_FOCUS
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001164 ALOGD("Resetting ANR timeouts.");
Michael Wrightd02c5b62014-02-10 15:10:22 -08001165#endif
1166
1167 // Reset input target wait timeout.
1168 mInputTargetWaitCause = INPUT_TARGET_WAIT_CAUSE_NONE;
Robert Carr740167f2018-10-11 19:03:41 -07001169 mInputTargetWaitApplicationToken.clear();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001170}
1171
Tiger Huang721e26f2018-07-24 22:26:19 +08001172/**
1173 * Get the display id that the given event should go to. If this event specifies a valid display id,
1174 * then it should be dispatched to that display. Otherwise, the event goes to the focused display.
1175 * Focused display is the display that the user most recently interacted with.
1176 */
1177int32_t InputDispatcher::getTargetDisplayId(const EventEntry* entry) {
1178 int32_t displayId;
1179 switch (entry->type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001180 case EventEntry::TYPE_KEY: {
1181 const KeyEntry* typedEntry = static_cast<const KeyEntry*>(entry);
1182 displayId = typedEntry->displayId;
1183 break;
1184 }
1185 case EventEntry::TYPE_MOTION: {
1186 const MotionEntry* typedEntry = static_cast<const MotionEntry*>(entry);
1187 displayId = typedEntry->displayId;
1188 break;
1189 }
1190 default: {
1191 ALOGE("Unsupported event type '%" PRId32 "' for target display.", entry->type);
1192 return ADISPLAY_ID_NONE;
1193 }
Tiger Huang721e26f2018-07-24 22:26:19 +08001194 }
1195 return displayId == ADISPLAY_ID_NONE ? mFocusedDisplayId : displayId;
1196}
1197
Michael Wrightd02c5b62014-02-10 15:10:22 -08001198int32_t InputDispatcher::findFocusedWindowTargetsLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001199 const EventEntry* entry,
1200 std::vector<InputTarget>& inputTargets,
1201 nsecs_t* nextWakeupTime) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001202 int32_t injectionResult;
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001203 std::string reason;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001204
Tiger Huang721e26f2018-07-24 22:26:19 +08001205 int32_t displayId = getTargetDisplayId(entry);
1206 sp<InputWindowHandle> focusedWindowHandle =
1207 getValueByKey(mFocusedWindowHandlesByDisplay, displayId);
1208 sp<InputApplicationHandle> focusedApplicationHandle =
1209 getValueByKey(mFocusedApplicationHandlesByDisplay, displayId);
1210
Michael Wrightd02c5b62014-02-10 15:10:22 -08001211 // If there is no currently focused window and no focused application
1212 // then drop the event.
Tiger Huang721e26f2018-07-24 22:26:19 +08001213 if (focusedWindowHandle == nullptr) {
1214 if (focusedApplicationHandle != nullptr) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001215 injectionResult =
1216 handleTargetsNotReadyLocked(currentTime, entry, focusedApplicationHandle,
1217 nullptr, nextWakeupTime,
1218 "Waiting because no window has focus but there is "
1219 "a focused application that may eventually add a "
1220 "window when it finishes starting up.");
Michael Wrightd02c5b62014-02-10 15:10:22 -08001221 goto Unresponsive;
1222 }
1223
Arthur Hung3b413f22018-10-26 18:05:34 +08001224 ALOGI("Dropping event because there is no focused window or focused application in display "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001225 "%" PRId32 ".",
1226 displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001227 injectionResult = INPUT_EVENT_INJECTION_FAILED;
1228 goto Failed;
1229 }
1230
1231 // Check permissions.
Tiger Huang721e26f2018-07-24 22:26:19 +08001232 if (!checkInjectionPermission(focusedWindowHandle, entry->injectionState)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001233 injectionResult = INPUT_EVENT_INJECTION_PERMISSION_DENIED;
1234 goto Failed;
1235 }
1236
Jeff Brownffb49772014-10-10 19:01:34 -07001237 // Check whether the window is ready for more input.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001238 reason = checkWindowReadyForMoreInputLocked(currentTime, focusedWindowHandle, entry, "focused");
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001239 if (!reason.empty()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001240 injectionResult =
1241 handleTargetsNotReadyLocked(currentTime, entry, focusedApplicationHandle,
1242 focusedWindowHandle, nextWakeupTime, reason.c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001243 goto Unresponsive;
1244 }
1245
1246 // Success! Output targets.
1247 injectionResult = INPUT_EVENT_INJECTION_SUCCEEDED;
Tiger Huang721e26f2018-07-24 22:26:19 +08001248 addWindowTargetLocked(focusedWindowHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001249 InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_DISPATCH_AS_IS,
1250 BitSet32(0), inputTargets);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001251
1252 // Done.
1253Failed:
1254Unresponsive:
1255 nsecs_t timeSpentWaitingForApplication = getTimeSpentWaitingForApplicationLocked(currentTime);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001256 updateDispatchStatistics(currentTime, entry, injectionResult, timeSpentWaitingForApplication);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001257#if DEBUG_FOCUS
1258 ALOGD("findFocusedWindow finished: injectionResult=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001259 "timeSpentWaitingForApplication=%0.1fms",
1260 injectionResult, timeSpentWaitingForApplication / 1000000.0);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001261#endif
1262 return injectionResult;
1263}
1264
1265int32_t InputDispatcher::findTouchedWindowTargetsLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001266 const MotionEntry* entry,
1267 std::vector<InputTarget>& inputTargets,
1268 nsecs_t* nextWakeupTime,
1269 bool* outConflictingPointerActions) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001270 ATRACE_CALL();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001271 enum InjectionPermission {
1272 INJECTION_PERMISSION_UNKNOWN,
1273 INJECTION_PERMISSION_GRANTED,
1274 INJECTION_PERMISSION_DENIED
1275 };
1276
Michael Wrightd02c5b62014-02-10 15:10:22 -08001277 // For security reasons, we defer updating the touch state until we are sure that
1278 // event injection will be allowed.
Michael Wrightd02c5b62014-02-10 15:10:22 -08001279 int32_t displayId = entry->displayId;
1280 int32_t action = entry->action;
1281 int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK;
1282
1283 // Update the touch state as needed based on the properties of the touch event.
1284 int32_t injectionResult = INPUT_EVENT_INJECTION_PENDING;
1285 InjectionPermission injectionPermission = INJECTION_PERMISSION_UNKNOWN;
1286 sp<InputWindowHandle> newHoverWindowHandle;
1287
Jeff Brownf086ddb2014-02-11 14:28:48 -08001288 // Copy current touch state into mTempTouchState.
1289 // This state is always reset at the end of this function, so if we don't find state
1290 // for the specified display then our initial state will be empty.
Yi Kong9b14ac62018-07-17 13:48:38 -07001291 const TouchState* oldState = nullptr;
Jeff Brownf086ddb2014-02-11 14:28:48 -08001292 ssize_t oldStateIndex = mTouchStatesByDisplay.indexOfKey(displayId);
1293 if (oldStateIndex >= 0) {
1294 oldState = &mTouchStatesByDisplay.valueAt(oldStateIndex);
1295 mTempTouchState.copyFrom(*oldState);
1296 }
1297
1298 bool isSplit = mTempTouchState.split;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001299 bool switchedDevice = mTempTouchState.deviceId >= 0 && mTempTouchState.displayId >= 0 &&
1300 (mTempTouchState.deviceId != entry->deviceId ||
1301 mTempTouchState.source != entry->source || mTempTouchState.displayId != displayId);
1302 bool isHoverAction = (maskedAction == AMOTION_EVENT_ACTION_HOVER_MOVE ||
1303 maskedAction == AMOTION_EVENT_ACTION_HOVER_ENTER ||
1304 maskedAction == AMOTION_EVENT_ACTION_HOVER_EXIT);
1305 bool newGesture = (maskedAction == AMOTION_EVENT_ACTION_DOWN ||
1306 maskedAction == AMOTION_EVENT_ACTION_SCROLL || isHoverAction);
Garfield Tan00f511d2019-06-12 16:55:40 -07001307 const bool isFromMouse = entry->source == AINPUT_SOURCE_MOUSE;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001308 bool wrongDevice = false;
1309 if (newGesture) {
1310 bool down = maskedAction == AMOTION_EVENT_ACTION_DOWN;
Kevin Schoedel1eb587b2017-05-03 13:58:56 -04001311 if (switchedDevice && mTempTouchState.down && !down && !isHoverAction) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001312#if DEBUG_FOCUS
Arthur Hung3b413f22018-10-26 18:05:34 +08001313 ALOGD("Dropping event because a pointer for a different device is already down "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001314 "in display %" PRId32,
1315 displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001316#endif
Kevin Schoedel1eb587b2017-05-03 13:58:56 -04001317 // TODO: test multiple simultaneous input streams.
Michael Wrightd02c5b62014-02-10 15:10:22 -08001318 injectionResult = INPUT_EVENT_INJECTION_FAILED;
1319 switchedDevice = false;
1320 wrongDevice = true;
1321 goto Failed;
1322 }
1323 mTempTouchState.reset();
1324 mTempTouchState.down = down;
1325 mTempTouchState.deviceId = entry->deviceId;
1326 mTempTouchState.source = entry->source;
1327 mTempTouchState.displayId = displayId;
1328 isSplit = false;
Kevin Schoedel1eb587b2017-05-03 13:58:56 -04001329 } else if (switchedDevice && maskedAction == AMOTION_EVENT_ACTION_MOVE) {
1330#if DEBUG_FOCUS
Arthur Hung3b413f22018-10-26 18:05:34 +08001331 ALOGI("Dropping move event because a pointer for a different device is already active "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001332 "in display %" PRId32,
1333 displayId);
Kevin Schoedel1eb587b2017-05-03 13:58:56 -04001334#endif
1335 // TODO: test multiple simultaneous input streams.
1336 injectionResult = INPUT_EVENT_INJECTION_PERMISSION_DENIED;
1337 switchedDevice = false;
1338 wrongDevice = true;
1339 goto Failed;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001340 }
1341
1342 if (newGesture || (isSplit && maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN)) {
1343 /* Case 1: New splittable pointer going down, or need target for hover or scroll. */
1344
Garfield Tan00f511d2019-06-12 16:55:40 -07001345 int32_t x;
1346 int32_t y;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001347 int32_t pointerIndex = getMotionEventActionPointerIndex(action);
Garfield Tan00f511d2019-06-12 16:55:40 -07001348 // Always dispatch mouse events to cursor position.
1349 if (isFromMouse) {
1350 x = int32_t(entry->xCursorPosition);
1351 y = int32_t(entry->yCursorPosition);
1352 } else {
1353 x = int32_t(entry->pointerCoords[pointerIndex].getAxisValue(AMOTION_EVENT_AXIS_X));
1354 y = int32_t(entry->pointerCoords[pointerIndex].getAxisValue(AMOTION_EVENT_AXIS_Y));
1355 }
Michael Wright3dd60e22019-03-27 22:06:44 +00001356 bool isDown = maskedAction == AMOTION_EVENT_ACTION_DOWN;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001357 sp<InputWindowHandle> newTouchedWindowHandle =
1358 findTouchedWindowAtLocked(displayId, x, y, isDown /*addOutsideTargets*/,
1359 true /*addPortalWindows*/);
Michael Wright3dd60e22019-03-27 22:06:44 +00001360
1361 std::vector<TouchedMonitor> newGestureMonitors = isDown
1362 ? findTouchedGestureMonitorsLocked(displayId, mTempTouchState.portalWindows)
1363 : std::vector<TouchedMonitor>{};
Michael Wrightd02c5b62014-02-10 15:10:22 -08001364
Michael Wrightd02c5b62014-02-10 15:10:22 -08001365 // Figure out whether splitting will be allowed for this window.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001366 if (newTouchedWindowHandle != nullptr &&
1367 newTouchedWindowHandle->getInfo()->supportsSplitTouch()) {
Garfield Tanaddb02b2019-06-25 16:36:13 -07001368 // New window supports splitting, but we should never split mouse events.
1369 isSplit = !isFromMouse;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001370 } else if (isSplit) {
1371 // New window does not support splitting but we have already split events.
1372 // Ignore the new window.
Yi Kong9b14ac62018-07-17 13:48:38 -07001373 newTouchedWindowHandle = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001374 }
1375
1376 // Handle the case where we did not find a window.
Yi Kong9b14ac62018-07-17 13:48:38 -07001377 if (newTouchedWindowHandle == nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001378 // Try to assign the pointer to the first foreground window we find, if there is one.
1379 newTouchedWindowHandle = mTempTouchState.getFirstForegroundWindowHandle();
Michael Wright3dd60e22019-03-27 22:06:44 +00001380 }
1381
1382 if (newTouchedWindowHandle == nullptr && newGestureMonitors.empty()) {
1383 ALOGI("Dropping event because there is no touchable window or gesture monitor at "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001384 "(%d, %d) in display %" PRId32 ".",
1385 x, y, displayId);
Michael Wright3dd60e22019-03-27 22:06:44 +00001386 injectionResult = INPUT_EVENT_INJECTION_FAILED;
1387 goto Failed;
1388 }
1389
1390 if (newTouchedWindowHandle != nullptr) {
1391 // Set target flags.
1392 int32_t targetFlags = InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_DISPATCH_AS_IS;
1393 if (isSplit) {
1394 targetFlags |= InputTarget::FLAG_SPLIT;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001395 }
Michael Wright3dd60e22019-03-27 22:06:44 +00001396 if (isWindowObscuredAtPointLocked(newTouchedWindowHandle, x, y)) {
1397 targetFlags |= InputTarget::FLAG_WINDOW_IS_OBSCURED;
1398 } else if (isWindowObscuredLocked(newTouchedWindowHandle)) {
1399 targetFlags |= InputTarget::FLAG_WINDOW_IS_PARTIALLY_OBSCURED;
1400 }
1401
1402 // Update hover state.
1403 if (isHoverAction) {
1404 newHoverWindowHandle = newTouchedWindowHandle;
1405 } else if (maskedAction == AMOTION_EVENT_ACTION_SCROLL) {
1406 newHoverWindowHandle = mLastHoverWindowHandle;
1407 }
1408
1409 // Update the temporary touch state.
1410 BitSet32 pointerIds;
1411 if (isSplit) {
1412 uint32_t pointerId = entry->pointerProperties[pointerIndex].id;
1413 pointerIds.markBit(pointerId);
1414 }
1415 mTempTouchState.addOrUpdateWindow(newTouchedWindowHandle, targetFlags, pointerIds);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001416 }
1417
Michael Wright3dd60e22019-03-27 22:06:44 +00001418 mTempTouchState.addGestureMonitors(newGestureMonitors);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001419 } else {
1420 /* Case 2: Pointer move, up, cancel or non-splittable pointer down. */
1421
1422 // If the pointer is not currently down, then ignore the event.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001423 if (!mTempTouchState.down) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001424#if DEBUG_FOCUS
1425 ALOGD("Dropping event because the pointer is not down or we previously "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001426 "dropped the pointer down event in display %" PRId32,
1427 displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001428#endif
1429 injectionResult = INPUT_EVENT_INJECTION_FAILED;
1430 goto Failed;
1431 }
1432
1433 // Check whether touches should slip outside of the current foreground window.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001434 if (maskedAction == AMOTION_EVENT_ACTION_MOVE && entry->pointerCount == 1 &&
1435 mTempTouchState.isSlippery()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001436 int32_t x = int32_t(entry->pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X));
1437 int32_t y = int32_t(entry->pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y));
1438
1439 sp<InputWindowHandle> oldTouchedWindowHandle =
1440 mTempTouchState.getFirstForegroundWindowHandle();
1441 sp<InputWindowHandle> newTouchedWindowHandle =
1442 findTouchedWindowAtLocked(displayId, x, y);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001443 if (oldTouchedWindowHandle != newTouchedWindowHandle &&
1444 oldTouchedWindowHandle != nullptr && newTouchedWindowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001445#if DEBUG_FOCUS
Arthur Hung3b413f22018-10-26 18:05:34 +08001446 ALOGD("Touch is slipping out of window %s into window %s in display %" PRId32,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001447 oldTouchedWindowHandle->getName().c_str(),
1448 newTouchedWindowHandle->getName().c_str(), displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001449#endif
1450 // Make a slippery exit from the old window.
1451 mTempTouchState.addOrUpdateWindow(oldTouchedWindowHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001452 InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT,
1453 BitSet32(0));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001454
1455 // Make a slippery entrance into the new window.
1456 if (newTouchedWindowHandle->getInfo()->supportsSplitTouch()) {
1457 isSplit = true;
1458 }
1459
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001460 int32_t targetFlags =
1461 InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001462 if (isSplit) {
1463 targetFlags |= InputTarget::FLAG_SPLIT;
1464 }
1465 if (isWindowObscuredAtPointLocked(newTouchedWindowHandle, x, y)) {
1466 targetFlags |= InputTarget::FLAG_WINDOW_IS_OBSCURED;
1467 }
1468
1469 BitSet32 pointerIds;
1470 if (isSplit) {
1471 pointerIds.markBit(entry->pointerProperties[0].id);
1472 }
1473 mTempTouchState.addOrUpdateWindow(newTouchedWindowHandle, targetFlags, pointerIds);
1474 }
1475 }
1476 }
1477
1478 if (newHoverWindowHandle != mLastHoverWindowHandle) {
1479 // Let the previous window know that the hover sequence is over.
Yi Kong9b14ac62018-07-17 13:48:38 -07001480 if (mLastHoverWindowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001481#if DEBUG_HOVER
1482 ALOGD("Sending hover exit event to window %s.",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001483 mLastHoverWindowHandle->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001484#endif
1485 mTempTouchState.addOrUpdateWindow(mLastHoverWindowHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001486 InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT,
1487 BitSet32(0));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001488 }
1489
1490 // Let the new window know that the hover sequence is starting.
Yi Kong9b14ac62018-07-17 13:48:38 -07001491 if (newHoverWindowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001492#if DEBUG_HOVER
1493 ALOGD("Sending hover enter event to window %s.",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001494 newHoverWindowHandle->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001495#endif
1496 mTempTouchState.addOrUpdateWindow(newHoverWindowHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001497 InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER,
1498 BitSet32(0));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001499 }
1500 }
1501
1502 // Check permission to inject into all touched foreground windows and ensure there
1503 // is at least one touched foreground window.
1504 {
1505 bool haveForegroundWindow = false;
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001506 for (const TouchedWindow& touchedWindow : mTempTouchState.windows) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001507 if (touchedWindow.targetFlags & InputTarget::FLAG_FOREGROUND) {
1508 haveForegroundWindow = true;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001509 if (!checkInjectionPermission(touchedWindow.windowHandle, entry->injectionState)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001510 injectionResult = INPUT_EVENT_INJECTION_PERMISSION_DENIED;
1511 injectionPermission = INJECTION_PERMISSION_DENIED;
1512 goto Failed;
1513 }
1514 }
1515 }
Michael Wright3dd60e22019-03-27 22:06:44 +00001516 bool hasGestureMonitor = !mTempTouchState.gestureMonitors.empty();
1517 if (!haveForegroundWindow && !hasGestureMonitor) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001518#if DEBUG_FOCUS
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001519 ALOGD("Dropping event because there is no touched foreground window in display %" PRId32
1520 " or gesture monitor to receive it.",
1521 displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001522#endif
1523 injectionResult = INPUT_EVENT_INJECTION_FAILED;
1524 goto Failed;
1525 }
1526
1527 // Permission granted to injection into all touched foreground windows.
1528 injectionPermission = INJECTION_PERMISSION_GRANTED;
1529 }
1530
1531 // Check whether windows listening for outside touches are owned by the same UID. If it is
1532 // set the policy flag that we will not reveal coordinate information to this window.
1533 if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
1534 sp<InputWindowHandle> foregroundWindowHandle =
1535 mTempTouchState.getFirstForegroundWindowHandle();
Michael Wright3dd60e22019-03-27 22:06:44 +00001536 if (foregroundWindowHandle) {
1537 const int32_t foregroundWindowUid = foregroundWindowHandle->getInfo()->ownerUid;
1538 for (const TouchedWindow& touchedWindow : mTempTouchState.windows) {
1539 if (touchedWindow.targetFlags & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) {
1540 sp<InputWindowHandle> inputWindowHandle = touchedWindow.windowHandle;
1541 if (inputWindowHandle->getInfo()->ownerUid != foregroundWindowUid) {
1542 mTempTouchState.addOrUpdateWindow(inputWindowHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001543 InputTarget::FLAG_ZERO_COORDS,
1544 BitSet32(0));
Michael Wright3dd60e22019-03-27 22:06:44 +00001545 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001546 }
1547 }
1548 }
1549 }
1550
1551 // Ensure all touched foreground windows are ready for new input.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001552 for (const TouchedWindow& touchedWindow : mTempTouchState.windows) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001553 if (touchedWindow.targetFlags & InputTarget::FLAG_FOREGROUND) {
Jeff Brownffb49772014-10-10 19:01:34 -07001554 // Check whether the window is ready for more input.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001555 std::string reason =
1556 checkWindowReadyForMoreInputLocked(currentTime, touchedWindow.windowHandle,
1557 entry, "touched");
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001558 if (!reason.empty()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001559 injectionResult = handleTargetsNotReadyLocked(currentTime, entry, nullptr,
1560 touchedWindow.windowHandle,
1561 nextWakeupTime, reason.c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001562 goto Unresponsive;
1563 }
1564 }
1565 }
1566
1567 // If this is the first pointer going down and the touched window has a wallpaper
1568 // then also add the touched wallpaper windows so they are locked in for the duration
1569 // of the touch gesture.
1570 // We do not collect wallpapers during HOVER_MOVE or SCROLL because the wallpaper
1571 // engine only supports touch events. We would need to add a mechanism similar
1572 // to View.onGenericMotionEvent to enable wallpapers to handle these events.
1573 if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
1574 sp<InputWindowHandle> foregroundWindowHandle =
1575 mTempTouchState.getFirstForegroundWindowHandle();
Michael Wright3dd60e22019-03-27 22:06:44 +00001576 if (foregroundWindowHandle && foregroundWindowHandle->getInfo()->hasWallpaper) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001577 const std::vector<sp<InputWindowHandle>> windowHandles =
1578 getWindowHandlesLocked(displayId);
1579 for (const sp<InputWindowHandle>& windowHandle : windowHandles) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001580 const InputWindowInfo* info = windowHandle->getInfo();
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001581 if (info->displayId == displayId &&
1582 windowHandle->getInfo()->layoutParamsType == InputWindowInfo::TYPE_WALLPAPER) {
1583 mTempTouchState
1584 .addOrUpdateWindow(windowHandle,
1585 InputTarget::FLAG_WINDOW_IS_OBSCURED |
1586 InputTarget::
1587 FLAG_WINDOW_IS_PARTIALLY_OBSCURED |
1588 InputTarget::FLAG_DISPATCH_AS_IS,
1589 BitSet32(0));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001590 }
1591 }
1592 }
1593 }
1594
1595 // Success! Output targets.
1596 injectionResult = INPUT_EVENT_INJECTION_SUCCEEDED;
1597
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001598 for (const TouchedWindow& touchedWindow : mTempTouchState.windows) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001599 addWindowTargetLocked(touchedWindow.windowHandle, touchedWindow.targetFlags,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001600 touchedWindow.pointerIds, inputTargets);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001601 }
1602
Michael Wright3dd60e22019-03-27 22:06:44 +00001603 for (const TouchedMonitor& touchedMonitor : mTempTouchState.gestureMonitors) {
1604 addMonitoringTargetLocked(touchedMonitor.monitor, touchedMonitor.xOffset,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001605 touchedMonitor.yOffset, inputTargets);
Michael Wright3dd60e22019-03-27 22:06:44 +00001606 }
1607
Michael Wrightd02c5b62014-02-10 15:10:22 -08001608 // Drop the outside or hover touch windows since we will not care about them
1609 // in the next iteration.
1610 mTempTouchState.filterNonAsIsTouchWindows();
1611
1612Failed:
1613 // Check injection permission once and for all.
1614 if (injectionPermission == INJECTION_PERMISSION_UNKNOWN) {
Yi Kong9b14ac62018-07-17 13:48:38 -07001615 if (checkInjectionPermission(nullptr, entry->injectionState)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001616 injectionPermission = INJECTION_PERMISSION_GRANTED;
1617 } else {
1618 injectionPermission = INJECTION_PERMISSION_DENIED;
1619 }
1620 }
1621
1622 // Update final pieces of touch state if the injector had permission.
1623 if (injectionPermission == INJECTION_PERMISSION_GRANTED) {
1624 if (!wrongDevice) {
1625 if (switchedDevice) {
1626#if DEBUG_FOCUS
1627 ALOGD("Conflicting pointer actions: Switched to a different device.");
1628#endif
1629 *outConflictingPointerActions = true;
1630 }
1631
1632 if (isHoverAction) {
1633 // Started hovering, therefore no longer down.
Jeff Brownf086ddb2014-02-11 14:28:48 -08001634 if (oldState && oldState->down) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001635#if DEBUG_FOCUS
1636 ALOGD("Conflicting pointer actions: Hover received while pointer was down.");
1637#endif
1638 *outConflictingPointerActions = true;
1639 }
Jeff Brownf086ddb2014-02-11 14:28:48 -08001640 mTempTouchState.reset();
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001641 if (maskedAction == AMOTION_EVENT_ACTION_HOVER_ENTER ||
1642 maskedAction == AMOTION_EVENT_ACTION_HOVER_MOVE) {
Jeff Brownf086ddb2014-02-11 14:28:48 -08001643 mTempTouchState.deviceId = entry->deviceId;
1644 mTempTouchState.source = entry->source;
1645 mTempTouchState.displayId = displayId;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001646 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001647 } else if (maskedAction == AMOTION_EVENT_ACTION_UP ||
1648 maskedAction == AMOTION_EVENT_ACTION_CANCEL) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001649 // All pointers up or canceled.
Jeff Brownf086ddb2014-02-11 14:28:48 -08001650 mTempTouchState.reset();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001651 } else if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
1652 // First pointer went down.
Jeff Brownf086ddb2014-02-11 14:28:48 -08001653 if (oldState && oldState->down) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001654#if DEBUG_FOCUS
1655 ALOGD("Conflicting pointer actions: Down received while already down.");
1656#endif
1657 *outConflictingPointerActions = true;
1658 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001659 } else if (maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) {
1660 // One pointer went up.
1661 if (isSplit) {
1662 int32_t pointerIndex = getMotionEventActionPointerIndex(action);
1663 uint32_t pointerId = entry->pointerProperties[pointerIndex].id;
1664
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001665 for (size_t i = 0; i < mTempTouchState.windows.size();) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001666 TouchedWindow& touchedWindow = mTempTouchState.windows[i];
Michael Wrightd02c5b62014-02-10 15:10:22 -08001667 if (touchedWindow.targetFlags & InputTarget::FLAG_SPLIT) {
1668 touchedWindow.pointerIds.clearBit(pointerId);
1669 if (touchedWindow.pointerIds.isEmpty()) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001670 mTempTouchState.windows.erase(mTempTouchState.windows.begin() + i);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001671 continue;
1672 }
1673 }
1674 i += 1;
1675 }
1676 }
Jeff Brownf086ddb2014-02-11 14:28:48 -08001677 }
1678
1679 // Save changes unless the action was scroll in which case the temporary touch
1680 // state was only valid for this one action.
1681 if (maskedAction != AMOTION_EVENT_ACTION_SCROLL) {
1682 if (mTempTouchState.displayId >= 0) {
1683 if (oldStateIndex >= 0) {
1684 mTouchStatesByDisplay.editValueAt(oldStateIndex).copyFrom(mTempTouchState);
1685 } else {
1686 mTouchStatesByDisplay.add(displayId, mTempTouchState);
1687 }
1688 } else if (oldStateIndex >= 0) {
1689 mTouchStatesByDisplay.removeItemsAt(oldStateIndex);
1690 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001691 }
1692
1693 // Update hover state.
1694 mLastHoverWindowHandle = newHoverWindowHandle;
1695 }
1696 } else {
1697#if DEBUG_FOCUS
1698 ALOGD("Not updating touch focus because injection was denied.");
1699#endif
1700 }
1701
1702Unresponsive:
1703 // Reset temporary touch state to ensure we release unnecessary references to input channels.
1704 mTempTouchState.reset();
1705
1706 nsecs_t timeSpentWaitingForApplication = getTimeSpentWaitingForApplicationLocked(currentTime);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001707 updateDispatchStatistics(currentTime, entry, injectionResult, timeSpentWaitingForApplication);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001708#if DEBUG_FOCUS
1709 ALOGD("findTouchedWindow finished: injectionResult=%d, injectionPermission=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001710 "timeSpentWaitingForApplication=%0.1fms",
1711 injectionResult, injectionPermission, timeSpentWaitingForApplication / 1000000.0);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001712#endif
1713 return injectionResult;
1714}
1715
1716void InputDispatcher::addWindowTargetLocked(const sp<InputWindowHandle>& windowHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001717 int32_t targetFlags, BitSet32 pointerIds,
1718 std::vector<InputTarget>& inputTargets) {
Arthur Hungceeb5d72018-12-05 16:14:18 +08001719 sp<InputChannel> inputChannel = getInputChannelLocked(windowHandle->getToken());
1720 if (inputChannel == nullptr) {
1721 ALOGW("Window %s already unregistered input channel", windowHandle->getName().c_str());
1722 return;
1723 }
1724
Michael Wrightd02c5b62014-02-10 15:10:22 -08001725 const InputWindowInfo* windowInfo = windowHandle->getInfo();
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001726 InputTarget target;
Arthur Hungceeb5d72018-12-05 16:14:18 +08001727 target.inputChannel = inputChannel;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001728 target.flags = targetFlags;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001729 target.xOffset = -windowInfo->frameLeft;
1730 target.yOffset = -windowInfo->frameTop;
Robert Carre07e1032018-11-26 12:55:53 -08001731 target.globalScaleFactor = windowInfo->globalScaleFactor;
1732 target.windowXScale = windowInfo->windowXScale;
1733 target.windowYScale = windowInfo->windowYScale;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001734 target.pointerIds = pointerIds;
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001735 inputTargets.push_back(target);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001736}
1737
Michael Wright3dd60e22019-03-27 22:06:44 +00001738void InputDispatcher::addGlobalMonitoringTargetsLocked(std::vector<InputTarget>& inputTargets,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001739 int32_t displayId, float xOffset,
1740 float yOffset) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001741 std::unordered_map<int32_t, std::vector<Monitor>>::const_iterator it =
1742 mGlobalMonitorsByDisplay.find(displayId);
1743
1744 if (it != mGlobalMonitorsByDisplay.end()) {
1745 const std::vector<Monitor>& monitors = it->second;
1746 for (const Monitor& monitor : monitors) {
1747 addMonitoringTargetLocked(monitor, xOffset, yOffset, inputTargets);
Arthur Hung2fbf37f2018-09-13 18:16:41 +08001748 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001749 }
1750}
1751
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001752void InputDispatcher::addMonitoringTargetLocked(const Monitor& monitor, float xOffset,
1753 float yOffset,
1754 std::vector<InputTarget>& inputTargets) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001755 InputTarget target;
1756 target.inputChannel = monitor.inputChannel;
1757 target.flags = InputTarget::FLAG_DISPATCH_AS_IS;
1758 target.xOffset = xOffset;
1759 target.yOffset = yOffset;
1760 target.pointerIds.clear();
1761 target.globalScaleFactor = 1.0f;
1762 inputTargets.push_back(target);
1763}
1764
Michael Wrightd02c5b62014-02-10 15:10:22 -08001765bool InputDispatcher::checkInjectionPermission(const sp<InputWindowHandle>& windowHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001766 const InjectionState* injectionState) {
1767 if (injectionState &&
1768 (windowHandle == nullptr ||
1769 windowHandle->getInfo()->ownerUid != injectionState->injectorUid) &&
1770 !hasInjectionPermission(injectionState->injectorPid, injectionState->injectorUid)) {
Yi Kong9b14ac62018-07-17 13:48:38 -07001771 if (windowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001772 ALOGW("Permission denied: injecting event from pid %d uid %d to window %s "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001773 "owned by uid %d",
1774 injectionState->injectorPid, injectionState->injectorUid,
1775 windowHandle->getName().c_str(), windowHandle->getInfo()->ownerUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001776 } else {
1777 ALOGW("Permission denied: injecting event from pid %d uid %d",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001778 injectionState->injectorPid, injectionState->injectorUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001779 }
1780 return false;
1781 }
1782 return true;
1783}
1784
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001785bool InputDispatcher::isWindowObscuredAtPointLocked(const sp<InputWindowHandle>& windowHandle,
1786 int32_t x, int32_t y) const {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001787 int32_t displayId = windowHandle->getInfo()->displayId;
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001788 const std::vector<sp<InputWindowHandle>> windowHandles = getWindowHandlesLocked(displayId);
1789 for (const sp<InputWindowHandle>& otherHandle : windowHandles) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001790 if (otherHandle == windowHandle) {
1791 break;
1792 }
1793
1794 const InputWindowInfo* otherInfo = otherHandle->getInfo();
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001795 if (otherInfo->displayId == displayId && otherInfo->visible &&
1796 !otherInfo->isTrustedOverlay() && otherInfo->frameContainsPoint(x, y)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001797 return true;
1798 }
1799 }
1800 return false;
1801}
1802
Michael Wrightcdcd8f22016-03-22 16:52:13 -07001803bool InputDispatcher::isWindowObscuredLocked(const sp<InputWindowHandle>& windowHandle) const {
1804 int32_t displayId = windowHandle->getInfo()->displayId;
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001805 const std::vector<sp<InputWindowHandle>> windowHandles = getWindowHandlesLocked(displayId);
Michael Wrightcdcd8f22016-03-22 16:52:13 -07001806 const InputWindowInfo* windowInfo = windowHandle->getInfo();
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001807 for (const sp<InputWindowHandle>& otherHandle : windowHandles) {
Michael Wrightcdcd8f22016-03-22 16:52:13 -07001808 if (otherHandle == windowHandle) {
1809 break;
1810 }
1811
1812 const InputWindowInfo* otherInfo = otherHandle->getInfo();
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001813 if (otherInfo->displayId == displayId && otherInfo->visible &&
1814 !otherInfo->isTrustedOverlay() && otherInfo->overlaps(windowInfo)) {
Michael Wrightcdcd8f22016-03-22 16:52:13 -07001815 return true;
1816 }
1817 }
1818 return false;
1819}
1820
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001821std::string InputDispatcher::checkWindowReadyForMoreInputLocked(
1822 nsecs_t currentTime, const sp<InputWindowHandle>& windowHandle,
1823 const EventEntry* eventEntry, const char* targetType) {
Jeff Brownffb49772014-10-10 19:01:34 -07001824 // If the window is paused then keep waiting.
1825 if (windowHandle->getInfo()->paused) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001826 return StringPrintf("Waiting because the %s window is paused.", targetType);
Jeff Brownffb49772014-10-10 19:01:34 -07001827 }
1828
1829 // If the window's connection is not registered then keep waiting.
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07001830 sp<Connection> connection =
1831 getConnectionLocked(getInputChannelLocked(windowHandle->getToken()));
1832 if (connection == nullptr) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001833 return StringPrintf("Waiting because the %s window's input channel is not "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001834 "registered with the input dispatcher. The window may be in the "
1835 "process of being removed.",
1836 targetType);
Jeff Brownffb49772014-10-10 19:01:34 -07001837 }
1838
1839 // If the connection is dead then keep waiting.
Jeff Brownffb49772014-10-10 19:01:34 -07001840 if (connection->status != Connection::STATUS_NORMAL) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001841 return StringPrintf("Waiting because the %s window's input connection is %s."
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001842 "The window may be in the process of being removed.",
1843 targetType, connection->getStatusLabel());
Jeff Brownffb49772014-10-10 19:01:34 -07001844 }
1845
1846 // If the connection is backed up then keep waiting.
1847 if (connection->inputPublisherBlocked) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001848 return StringPrintf("Waiting because the %s window's input channel is full. "
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07001849 "Outbound queue length: %zu. Wait queue length: %zu.",
1850 targetType, connection->outboundQueue.size(),
1851 connection->waitQueue.size());
Jeff Brownffb49772014-10-10 19:01:34 -07001852 }
1853
1854 // Ensure that the dispatch queues aren't too far backed up for this event.
1855 if (eventEntry->type == EventEntry::TYPE_KEY) {
1856 // If the event is a key event, then we must wait for all previous events to
1857 // complete before delivering it because previous events may have the
1858 // side-effect of transferring focus to a different window and we want to
1859 // ensure that the following keys are sent to the new window.
1860 //
1861 // Suppose the user touches a button in a window then immediately presses "A".
1862 // If the button causes a pop-up window to appear then we want to ensure that
1863 // the "A" key is delivered to the new pop-up window. This is because users
1864 // often anticipate pending UI changes when typing on a keyboard.
1865 // To obtain this behavior, we must serialize key events with respect to all
1866 // prior input events.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07001867 if (!connection->outboundQueue.empty() || !connection->waitQueue.empty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001868 return StringPrintf("Waiting to send key event because the %s window has not "
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07001869 "finished processing all of the input events that were previously "
1870 "delivered to it. Outbound queue length: %zu. Wait queue length: "
1871 "%zu.",
1872 targetType, connection->outboundQueue.size(),
1873 connection->waitQueue.size());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001874 }
Jeff Brownffb49772014-10-10 19:01:34 -07001875 } else {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001876 // Touch events can always be sent to a window immediately because the user intended
1877 // to touch whatever was visible at the time. Even if focus changes or a new
1878 // window appears moments later, the touch event was meant to be delivered to
1879 // whatever window happened to be on screen at the time.
1880 //
1881 // Generic motion events, such as trackball or joystick events are a little trickier.
1882 // Like key events, generic motion events are delivered to the focused window.
1883 // Unlike key events, generic motion events don't tend to transfer focus to other
1884 // windows and it is not important for them to be serialized. So we prefer to deliver
1885 // generic motion events as soon as possible to improve efficiency and reduce lag
1886 // through batching.
1887 //
1888 // The one case where we pause input event delivery is when the wait queue is piling
1889 // up with lots of events because the application is not responding.
1890 // This condition ensures that ANRs are detected reliably.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07001891 if (!connection->waitQueue.empty() &&
1892 currentTime >=
1893 connection->waitQueue.front()->deliveryTime + STREAM_AHEAD_EVENT_TIMEOUT) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001894 return StringPrintf("Waiting to send non-key event because the %s window has not "
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07001895 "finished processing certain input events that were delivered to "
1896 "it over "
1897 "%0.1fms ago. Wait queue length: %zu. Wait queue head age: "
1898 "%0.1fms.",
1899 targetType, STREAM_AHEAD_EVENT_TIMEOUT * 0.000001f,
1900 connection->waitQueue.size(),
1901 (currentTime - connection->waitQueue.front()->deliveryTime) *
1902 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001903 }
1904 }
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001905 return "";
Michael Wrightd02c5b62014-02-10 15:10:22 -08001906}
1907
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001908std::string InputDispatcher::getApplicationWindowLabel(
Michael Wrightd02c5b62014-02-10 15:10:22 -08001909 const sp<InputApplicationHandle>& applicationHandle,
1910 const sp<InputWindowHandle>& windowHandle) {
Yi Kong9b14ac62018-07-17 13:48:38 -07001911 if (applicationHandle != nullptr) {
1912 if (windowHandle != nullptr) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001913 std::string label(applicationHandle->getName());
1914 label += " - ";
1915 label += windowHandle->getName();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001916 return label;
1917 } else {
1918 return applicationHandle->getName();
1919 }
Yi Kong9b14ac62018-07-17 13:48:38 -07001920 } else if (windowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001921 return windowHandle->getName();
1922 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001923 return "<unknown application or window>";
Michael Wrightd02c5b62014-02-10 15:10:22 -08001924 }
1925}
1926
1927void InputDispatcher::pokeUserActivityLocked(const EventEntry* eventEntry) {
Tiger Huang721e26f2018-07-24 22:26:19 +08001928 int32_t displayId = getTargetDisplayId(eventEntry);
1929 sp<InputWindowHandle> focusedWindowHandle =
1930 getValueByKey(mFocusedWindowHandlesByDisplay, displayId);
1931 if (focusedWindowHandle != nullptr) {
1932 const InputWindowInfo* info = focusedWindowHandle->getInfo();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001933 if (info->inputFeatures & InputWindowInfo::INPUT_FEATURE_DISABLE_USER_ACTIVITY) {
1934#if DEBUG_DISPATCH_CYCLE
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001935 ALOGD("Not poking user activity: disabled by window '%s'.", info->name.c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001936#endif
1937 return;
1938 }
1939 }
1940
1941 int32_t eventType = USER_ACTIVITY_EVENT_OTHER;
1942 switch (eventEntry->type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001943 case EventEntry::TYPE_MOTION: {
1944 const MotionEntry* motionEntry = static_cast<const MotionEntry*>(eventEntry);
1945 if (motionEntry->action == AMOTION_EVENT_ACTION_CANCEL) {
1946 return;
1947 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001948
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001949 if (MotionEvent::isTouchEvent(motionEntry->source, motionEntry->action)) {
1950 eventType = USER_ACTIVITY_EVENT_TOUCH;
1951 }
1952 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001953 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001954 case EventEntry::TYPE_KEY: {
1955 const KeyEntry* keyEntry = static_cast<const KeyEntry*>(eventEntry);
1956 if (keyEntry->flags & AKEY_EVENT_FLAG_CANCELED) {
1957 return;
1958 }
1959 eventType = USER_ACTIVITY_EVENT_BUTTON;
1960 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001961 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001962 }
1963
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07001964 std::unique_ptr<CommandEntry> commandEntry =
1965 std::make_unique<CommandEntry>(&InputDispatcher::doPokeUserActivityLockedInterruptible);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001966 commandEntry->eventTime = eventEntry->eventTime;
1967 commandEntry->userActivityEventType = eventType;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07001968 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001969}
1970
1971void InputDispatcher::prepareDispatchCycleLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001972 const sp<Connection>& connection,
1973 EventEntry* eventEntry,
1974 const InputTarget* inputTarget) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001975 if (ATRACE_ENABLED()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001976 std::string message =
1977 StringPrintf("prepareDispatchCycleLocked(inputChannel=%s, sequenceNum=%" PRIu32 ")",
1978 connection->getInputChannelName().c_str(), eventEntry->sequenceNum);
Michael Wright3dd60e22019-03-27 22:06:44 +00001979 ATRACE_NAME(message.c_str());
1980 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001981#if DEBUG_DISPATCH_CYCLE
1982 ALOGD("channel '%s' ~ prepareDispatchCycle - flags=0x%08x, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001983 "xOffset=%f, yOffset=%f, globalScaleFactor=%f, "
1984 "windowScaleFactor=(%f, %f), pointerIds=0x%x",
1985 connection->getInputChannelName().c_str(), inputTarget->flags, inputTarget->xOffset,
1986 inputTarget->yOffset, inputTarget->globalScaleFactor, inputTarget->windowXScale,
1987 inputTarget->windowYScale, inputTarget->pointerIds.value);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001988#endif
1989
1990 // Skip this event if the connection status is not normal.
1991 // We don't want to enqueue additional outbound events if the connection is broken.
1992 if (connection->status != Connection::STATUS_NORMAL) {
1993#if DEBUG_DISPATCH_CYCLE
1994 ALOGD("channel '%s' ~ Dropping event because the channel status is %s",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001995 connection->getInputChannelName().c_str(), connection->getStatusLabel());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001996#endif
1997 return;
1998 }
1999
2000 // Split a motion event if needed.
2001 if (inputTarget->flags & InputTarget::FLAG_SPLIT) {
2002 ALOG_ASSERT(eventEntry->type == EventEntry::TYPE_MOTION);
2003
2004 MotionEntry* originalMotionEntry = static_cast<MotionEntry*>(eventEntry);
2005 if (inputTarget->pointerIds.count() != originalMotionEntry->pointerCount) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002006 MotionEntry* splitMotionEntry =
2007 splitMotionEvent(originalMotionEntry, inputTarget->pointerIds);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002008 if (!splitMotionEntry) {
2009 return; // split event was dropped
2010 }
2011#if DEBUG_FOCUS
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002012 ALOGD("channel '%s' ~ Split motion event.", connection->getInputChannelName().c_str());
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002013 logOutboundMotionDetails(" ", splitMotionEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002014#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002015 enqueueDispatchEntriesLocked(currentTime, connection, splitMotionEntry, inputTarget);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002016 splitMotionEntry->release();
2017 return;
2018 }
2019 }
2020
2021 // Not splitting. Enqueue dispatch entries for the event as is.
2022 enqueueDispatchEntriesLocked(currentTime, connection, eventEntry, inputTarget);
2023}
2024
2025void InputDispatcher::enqueueDispatchEntriesLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002026 const sp<Connection>& connection,
2027 EventEntry* eventEntry,
2028 const InputTarget* inputTarget) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002029 if (ATRACE_ENABLED()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002030 std::string message =
2031 StringPrintf("enqueueDispatchEntriesLocked(inputChannel=%s, sequenceNum=%" PRIu32
2032 ")",
2033 connection->getInputChannelName().c_str(), eventEntry->sequenceNum);
Michael Wright3dd60e22019-03-27 22:06:44 +00002034 ATRACE_NAME(message.c_str());
2035 }
2036
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002037 bool wasEmpty = connection->outboundQueue.empty();
Michael Wrightd02c5b62014-02-10 15:10:22 -08002038
2039 // Enqueue dispatch entries for the requested modes.
chaviw8c9cf542019-03-25 13:02:48 -07002040 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002041 InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT);
chaviw8c9cf542019-03-25 13:02:48 -07002042 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002043 InputTarget::FLAG_DISPATCH_AS_OUTSIDE);
chaviw8c9cf542019-03-25 13:02:48 -07002044 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002045 InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER);
chaviw8c9cf542019-03-25 13:02:48 -07002046 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002047 InputTarget::FLAG_DISPATCH_AS_IS);
chaviw8c9cf542019-03-25 13:02:48 -07002048 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002049 InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT);
chaviw8c9cf542019-03-25 13:02:48 -07002050 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002051 InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002052
2053 // If the outbound queue was previously empty, start the dispatch cycle going.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002054 if (wasEmpty && !connection->outboundQueue.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002055 startDispatchCycleLocked(currentTime, connection);
2056 }
2057}
2058
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002059void InputDispatcher::enqueueDispatchEntryLocked(const sp<Connection>& connection,
2060 EventEntry* eventEntry,
2061 const InputTarget* inputTarget,
2062 int32_t dispatchMode) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002063 if (ATRACE_ENABLED()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002064 std::string message = StringPrintf("enqueueDispatchEntry(inputChannel=%s, dispatchMode=%s)",
2065 connection->getInputChannelName().c_str(),
2066 dispatchModeToString(dispatchMode).c_str());
Michael Wright3dd60e22019-03-27 22:06:44 +00002067 ATRACE_NAME(message.c_str());
2068 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002069 int32_t inputTargetFlags = inputTarget->flags;
2070 if (!(inputTargetFlags & dispatchMode)) {
2071 return;
2072 }
2073 inputTargetFlags = (inputTargetFlags & ~InputTarget::FLAG_DISPATCH_MASK) | dispatchMode;
2074
2075 // This is a new event.
2076 // Enqueue a new dispatch entry onto the outbound queue for this connection.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002077 DispatchEntry* dispatchEntry =
2078 new DispatchEntry(eventEntry, // increments ref
2079 inputTargetFlags, inputTarget->xOffset, inputTarget->yOffset,
2080 inputTarget->globalScaleFactor, inputTarget->windowXScale,
2081 inputTarget->windowYScale);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002082
2083 // Apply target flags and update the connection's input state.
2084 switch (eventEntry->type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002085 case EventEntry::TYPE_KEY: {
2086 KeyEntry* keyEntry = static_cast<KeyEntry*>(eventEntry);
2087 dispatchEntry->resolvedAction = keyEntry->action;
2088 dispatchEntry->resolvedFlags = keyEntry->flags;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002089
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002090 if (!connection->inputState.trackKey(keyEntry, dispatchEntry->resolvedAction,
2091 dispatchEntry->resolvedFlags)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002092#if DEBUG_DISPATCH_CYCLE
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002093 ALOGD("channel '%s' ~ enqueueDispatchEntryLocked: skipping inconsistent key event",
2094 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002095#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002096 delete dispatchEntry;
2097 return; // skip the inconsistent event
2098 }
2099 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002100 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002101
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002102 case EventEntry::TYPE_MOTION: {
2103 MotionEntry* motionEntry = static_cast<MotionEntry*>(eventEntry);
2104 if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) {
2105 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_OUTSIDE;
2106 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT) {
2107 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_EXIT;
2108 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER) {
2109 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_ENTER;
2110 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT) {
2111 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_CANCEL;
2112 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER) {
2113 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_DOWN;
2114 } else {
2115 dispatchEntry->resolvedAction = motionEntry->action;
2116 }
2117 if (dispatchEntry->resolvedAction == AMOTION_EVENT_ACTION_HOVER_MOVE &&
2118 !connection->inputState.isHovering(motionEntry->deviceId, motionEntry->source,
2119 motionEntry->displayId)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002120#if DEBUG_DISPATCH_CYCLE
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002121 ALOGD("channel '%s' ~ enqueueDispatchEntryLocked: filling in missing hover enter "
2122 "event",
2123 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002124#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002125 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_ENTER;
2126 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002127
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002128 dispatchEntry->resolvedFlags = motionEntry->flags;
2129 if (dispatchEntry->targetFlags & InputTarget::FLAG_WINDOW_IS_OBSCURED) {
2130 dispatchEntry->resolvedFlags |= AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED;
2131 }
2132 if (dispatchEntry->targetFlags & InputTarget::FLAG_WINDOW_IS_PARTIALLY_OBSCURED) {
2133 dispatchEntry->resolvedFlags |= AMOTION_EVENT_FLAG_WINDOW_IS_PARTIALLY_OBSCURED;
2134 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002135
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002136 if (!connection->inputState.trackMotion(motionEntry, dispatchEntry->resolvedAction,
2137 dispatchEntry->resolvedFlags)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002138#if DEBUG_DISPATCH_CYCLE
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002139 ALOGD("channel '%s' ~ enqueueDispatchEntryLocked: skipping inconsistent motion "
2140 "event",
2141 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002142#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002143 delete dispatchEntry;
2144 return; // skip the inconsistent event
2145 }
2146
2147 dispatchPointerDownOutsideFocus(motionEntry->source, dispatchEntry->resolvedAction,
2148 inputTarget->inputChannel->getToken());
2149
2150 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002151 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002152 }
2153
2154 // Remember that we are waiting for this dispatch to complete.
2155 if (dispatchEntry->hasForegroundTarget()) {
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002156 incrementPendingForegroundDispatches(eventEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002157 }
2158
2159 // Enqueue the dispatch entry.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002160 connection->outboundQueue.push_back(dispatchEntry);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002161 traceOutboundQueueLength(connection);
chaviw8c9cf542019-03-25 13:02:48 -07002162}
2163
chaviwfd6d3512019-03-25 13:23:49 -07002164void InputDispatcher::dispatchPointerDownOutsideFocus(uint32_t source, int32_t action,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002165 const sp<IBinder>& newToken) {
chaviw8c9cf542019-03-25 13:02:48 -07002166 int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK;
chaviwfd6d3512019-03-25 13:23:49 -07002167 uint32_t maskedSource = source & AINPUT_SOURCE_CLASS_MASK;
2168 if (maskedSource != AINPUT_SOURCE_CLASS_POINTER || maskedAction != AMOTION_EVENT_ACTION_DOWN) {
chaviw8c9cf542019-03-25 13:02:48 -07002169 return;
2170 }
2171
2172 sp<InputWindowHandle> inputWindowHandle = getWindowHandleLocked(newToken);
2173 if (inputWindowHandle == nullptr) {
2174 return;
2175 }
2176
chaviw8c9cf542019-03-25 13:02:48 -07002177 sp<InputWindowHandle> focusedWindowHandle =
Tiger Huang0683fe72019-06-03 21:50:55 +08002178 getValueByKey(mFocusedWindowHandlesByDisplay, mFocusedDisplayId);
chaviw8c9cf542019-03-25 13:02:48 -07002179
2180 bool hasFocusChanged = !focusedWindowHandle || focusedWindowHandle->getToken() != newToken;
2181
2182 if (!hasFocusChanged) {
2183 return;
2184 }
2185
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07002186 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
2187 &InputDispatcher::doOnPointerDownOutsideFocusLockedInterruptible);
chaviwfd6d3512019-03-25 13:23:49 -07002188 commandEntry->newToken = newToken;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07002189 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002190}
2191
2192void InputDispatcher::startDispatchCycleLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002193 const sp<Connection>& connection) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002194 if (ATRACE_ENABLED()) {
2195 std::string message = StringPrintf("startDispatchCycleLocked(inputChannel=%s)",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002196 connection->getInputChannelName().c_str());
Michael Wright3dd60e22019-03-27 22:06:44 +00002197 ATRACE_NAME(message.c_str());
2198 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002199#if DEBUG_DISPATCH_CYCLE
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002200 ALOGD("channel '%s' ~ startDispatchCycle", connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002201#endif
2202
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002203 while (connection->status == Connection::STATUS_NORMAL && !connection->outboundQueue.empty()) {
2204 DispatchEntry* dispatchEntry = connection->outboundQueue.front();
Michael Wrightd02c5b62014-02-10 15:10:22 -08002205 dispatchEntry->deliveryTime = currentTime;
2206
2207 // Publish the event.
2208 status_t status;
2209 EventEntry* eventEntry = dispatchEntry->eventEntry;
2210 switch (eventEntry->type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002211 case EventEntry::TYPE_KEY: {
2212 KeyEntry* keyEntry = static_cast<KeyEntry*>(eventEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002213
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002214 // Publish the key event.
2215 status = connection->inputPublisher
2216 .publishKeyEvent(dispatchEntry->seq, keyEntry->deviceId,
2217 keyEntry->source, keyEntry->displayId,
2218 dispatchEntry->resolvedAction,
2219 dispatchEntry->resolvedFlags, keyEntry->keyCode,
2220 keyEntry->scanCode, keyEntry->metaState,
2221 keyEntry->repeatCount, keyEntry->downTime,
2222 keyEntry->eventTime);
2223 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002224 }
2225
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002226 case EventEntry::TYPE_MOTION: {
2227 MotionEntry* motionEntry = static_cast<MotionEntry*>(eventEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002228
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002229 PointerCoords scaledCoords[MAX_POINTERS];
2230 const PointerCoords* usingCoords = motionEntry->pointerCoords;
2231
2232 // Set the X and Y offset depending on the input source.
2233 float xOffset, yOffset;
2234 if ((motionEntry->source & AINPUT_SOURCE_CLASS_POINTER) &&
2235 !(dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS)) {
2236 float globalScaleFactor = dispatchEntry->globalScaleFactor;
2237 float wxs = dispatchEntry->windowXScale;
2238 float wys = dispatchEntry->windowYScale;
2239 xOffset = dispatchEntry->xOffset * wxs;
2240 yOffset = dispatchEntry->yOffset * wys;
2241 if (wxs != 1.0f || wys != 1.0f || globalScaleFactor != 1.0f) {
2242 for (uint32_t i = 0; i < motionEntry->pointerCount; i++) {
2243 scaledCoords[i] = motionEntry->pointerCoords[i];
2244 scaledCoords[i].scale(globalScaleFactor, wxs, wys);
2245 }
2246 usingCoords = scaledCoords;
2247 }
2248 } else {
2249 xOffset = 0.0f;
2250 yOffset = 0.0f;
2251
2252 // We don't want the dispatch target to know.
2253 if (dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS) {
2254 for (uint32_t i = 0; i < motionEntry->pointerCount; i++) {
2255 scaledCoords[i].clear();
2256 }
2257 usingCoords = scaledCoords;
2258 }
2259 }
2260
2261 // Publish the motion event.
2262 status = connection->inputPublisher
2263 .publishMotionEvent(dispatchEntry->seq, motionEntry->deviceId,
2264 motionEntry->source, motionEntry->displayId,
2265 dispatchEntry->resolvedAction,
2266 motionEntry->actionButton,
2267 dispatchEntry->resolvedFlags,
2268 motionEntry->edgeFlags, motionEntry->metaState,
2269 motionEntry->buttonState,
2270 motionEntry->classification, xOffset, yOffset,
2271 motionEntry->xPrecision,
2272 motionEntry->yPrecision,
2273 motionEntry->xCursorPosition,
2274 motionEntry->yCursorPosition,
2275 motionEntry->downTime, motionEntry->eventTime,
2276 motionEntry->pointerCount,
2277 motionEntry->pointerProperties, usingCoords);
Siarhei Vishniakoude4bf152019-08-16 11:12:52 -05002278 reportTouchEventForStatistics(*motionEntry);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002279 break;
2280 }
2281
2282 default:
2283 ALOG_ASSERT(false);
2284 return;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002285 }
2286
2287 // Check the result.
2288 if (status) {
2289 if (status == WOULD_BLOCK) {
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002290 if (connection->waitQueue.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002291 ALOGE("channel '%s' ~ Could not publish event because the pipe is full. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002292 "This is unexpected because the wait queue is empty, so the pipe "
2293 "should be empty and we shouldn't have any problems writing an "
2294 "event to it, status=%d",
2295 connection->getInputChannelName().c_str(), status);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002296 abortBrokenDispatchCycleLocked(currentTime, connection, true /*notify*/);
2297 } else {
2298 // Pipe is full and we are waiting for the app to finish process some events
2299 // before sending more events to it.
2300#if DEBUG_DISPATCH_CYCLE
2301 ALOGD("channel '%s' ~ Could not publish event because the pipe is full, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002302 "waiting for the application to catch up",
2303 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002304#endif
2305 connection->inputPublisherBlocked = true;
2306 }
2307 } else {
2308 ALOGE("channel '%s' ~ Could not publish event due to an unexpected error, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002309 "status=%d",
2310 connection->getInputChannelName().c_str(), status);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002311 abortBrokenDispatchCycleLocked(currentTime, connection, true /*notify*/);
2312 }
2313 return;
2314 }
2315
2316 // Re-enqueue the event on the wait queue.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002317 connection->outboundQueue.erase(std::remove(connection->outboundQueue.begin(),
2318 connection->outboundQueue.end(),
2319 dispatchEntry));
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002320 traceOutboundQueueLength(connection);
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002321 connection->waitQueue.push_back(dispatchEntry);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002322 traceWaitQueueLength(connection);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002323 }
2324}
2325
2326void InputDispatcher::finishDispatchCycleLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002327 const sp<Connection>& connection, uint32_t seq,
2328 bool handled) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002329#if DEBUG_DISPATCH_CYCLE
2330 ALOGD("channel '%s' ~ finishDispatchCycle - seq=%u, handled=%s",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002331 connection->getInputChannelName().c_str(), seq, toString(handled));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002332#endif
2333
2334 connection->inputPublisherBlocked = false;
2335
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002336 if (connection->status == Connection::STATUS_BROKEN ||
2337 connection->status == Connection::STATUS_ZOMBIE) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002338 return;
2339 }
2340
2341 // Notify other system components and prepare to start the next dispatch cycle.
2342 onDispatchCycleFinishedLocked(currentTime, connection, seq, handled);
2343}
2344
2345void InputDispatcher::abortBrokenDispatchCycleLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002346 const sp<Connection>& connection,
2347 bool notify) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002348#if DEBUG_DISPATCH_CYCLE
2349 ALOGD("channel '%s' ~ abortBrokenDispatchCycle - notify=%s",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002350 connection->getInputChannelName().c_str(), toString(notify));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002351#endif
2352
2353 // Clear the dispatch queues.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002354 drainDispatchQueue(connection->outboundQueue);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002355 traceOutboundQueueLength(connection);
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002356 drainDispatchQueue(connection->waitQueue);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002357 traceWaitQueueLength(connection);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002358
2359 // The connection appears to be unrecoverably broken.
2360 // Ignore already broken or zombie connections.
2361 if (connection->status == Connection::STATUS_NORMAL) {
2362 connection->status = Connection::STATUS_BROKEN;
2363
2364 if (notify) {
2365 // Notify other system components.
2366 onDispatchCycleBrokenLocked(currentTime, connection);
2367 }
2368 }
2369}
2370
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002371void InputDispatcher::drainDispatchQueue(std::deque<DispatchEntry*>& queue) {
2372 while (!queue.empty()) {
2373 DispatchEntry* dispatchEntry = queue.front();
2374 queue.pop_front();
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08002375 releaseDispatchEntry(dispatchEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002376 }
2377}
2378
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08002379void InputDispatcher::releaseDispatchEntry(DispatchEntry* dispatchEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002380 if (dispatchEntry->hasForegroundTarget()) {
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08002381 decrementPendingForegroundDispatches(dispatchEntry->eventEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002382 }
2383 delete dispatchEntry;
2384}
2385
2386int InputDispatcher::handleReceiveCallback(int fd, int events, void* data) {
2387 InputDispatcher* d = static_cast<InputDispatcher*>(data);
2388
2389 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08002390 std::scoped_lock _l(d->mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002391
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07002392 if (d->mConnectionsByFd.find(fd) == d->mConnectionsByFd.end()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002393 ALOGE("Received spurious receive callback for unknown input channel. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002394 "fd=%d, events=0x%x",
2395 fd, events);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002396 return 0; // remove the callback
2397 }
2398
2399 bool notify;
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07002400 sp<Connection> connection = d->mConnectionsByFd[fd];
Michael Wrightd02c5b62014-02-10 15:10:22 -08002401 if (!(events & (ALOOPER_EVENT_ERROR | ALOOPER_EVENT_HANGUP))) {
2402 if (!(events & ALOOPER_EVENT_INPUT)) {
2403 ALOGW("channel '%s' ~ Received spurious callback for unhandled poll event. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002404 "events=0x%x",
2405 connection->getInputChannelName().c_str(), events);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002406 return 1;
2407 }
2408
2409 nsecs_t currentTime = now();
2410 bool gotOne = false;
2411 status_t status;
2412 for (;;) {
2413 uint32_t seq;
2414 bool handled;
2415 status = connection->inputPublisher.receiveFinishedSignal(&seq, &handled);
2416 if (status) {
2417 break;
2418 }
2419 d->finishDispatchCycleLocked(currentTime, connection, seq, handled);
2420 gotOne = true;
2421 }
2422 if (gotOne) {
2423 d->runCommandsLockedInterruptible();
2424 if (status == WOULD_BLOCK) {
2425 return 1;
2426 }
2427 }
2428
2429 notify = status != DEAD_OBJECT || !connection->monitor;
2430 if (notify) {
2431 ALOGE("channel '%s' ~ Failed to receive finished signal. status=%d",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002432 connection->getInputChannelName().c_str(), status);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002433 }
2434 } else {
2435 // Monitor channels are never explicitly unregistered.
2436 // We do it automatically when the remote endpoint is closed so don't warn
2437 // about them.
2438 notify = !connection->monitor;
2439 if (notify) {
2440 ALOGW("channel '%s' ~ Consumer closed input channel or an error occurred. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002441 "events=0x%x",
2442 connection->getInputChannelName().c_str(), events);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002443 }
2444 }
2445
2446 // Unregister the channel.
2447 d->unregisterInputChannelLocked(connection->inputChannel, notify);
2448 return 0; // remove the callback
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002449 } // release lock
Michael Wrightd02c5b62014-02-10 15:10:22 -08002450}
2451
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002452void InputDispatcher::synthesizeCancelationEventsForAllConnectionsLocked(
Michael Wrightd02c5b62014-02-10 15:10:22 -08002453 const CancelationOptions& options) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07002454 for (const auto& pair : mConnectionsByFd) {
2455 synthesizeCancelationEventsForConnectionLocked(pair.second, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002456 }
2457}
2458
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002459void InputDispatcher::synthesizeCancelationEventsForMonitorsLocked(
Michael Wrightfa13dcf2015-06-12 13:25:11 +01002460 const CancelationOptions& options) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002461 synthesizeCancelationEventsForMonitorsLocked(options, mGlobalMonitorsByDisplay);
2462 synthesizeCancelationEventsForMonitorsLocked(options, mGestureMonitorsByDisplay);
2463}
2464
2465void InputDispatcher::synthesizeCancelationEventsForMonitorsLocked(
2466 const CancelationOptions& options,
2467 std::unordered_map<int32_t, std::vector<Monitor>>& monitorsByDisplay) {
2468 for (const auto& it : monitorsByDisplay) {
2469 const std::vector<Monitor>& monitors = it.second;
2470 for (const Monitor& monitor : monitors) {
2471 synthesizeCancelationEventsForInputChannelLocked(monitor.inputChannel, options);
Arthur Hung2fbf37f2018-09-13 18:16:41 +08002472 }
Michael Wrightfa13dcf2015-06-12 13:25:11 +01002473 }
2474}
2475
Michael Wrightd02c5b62014-02-10 15:10:22 -08002476void InputDispatcher::synthesizeCancelationEventsForInputChannelLocked(
2477 const sp<InputChannel>& channel, const CancelationOptions& options) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07002478 sp<Connection> connection = getConnectionLocked(channel);
2479 if (connection == nullptr) {
2480 return;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002481 }
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07002482
2483 synthesizeCancelationEventsForConnectionLocked(connection, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002484}
2485
2486void InputDispatcher::synthesizeCancelationEventsForConnectionLocked(
2487 const sp<Connection>& connection, const CancelationOptions& options) {
2488 if (connection->status == Connection::STATUS_BROKEN) {
2489 return;
2490 }
2491
2492 nsecs_t currentTime = now();
2493
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002494 std::vector<EventEntry*> cancelationEvents;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002495 connection->inputState.synthesizeCancelationEvents(currentTime, cancelationEvents, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002496
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002497 if (!cancelationEvents.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002498#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakou5d83f602017-09-12 12:40:29 -07002499 ALOGD("channel '%s' ~ Synthesized %zu cancelation events to bring channel back in sync "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002500 "with reality: %s, mode=%d.",
2501 connection->getInputChannelName().c_str(), cancelationEvents.size(), options.reason,
2502 options.mode);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002503#endif
2504 for (size_t i = 0; i < cancelationEvents.size(); i++) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002505 EventEntry* cancelationEventEntry = cancelationEvents[i];
Michael Wrightd02c5b62014-02-10 15:10:22 -08002506 switch (cancelationEventEntry->type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002507 case EventEntry::TYPE_KEY:
2508 logOutboundKeyDetails("cancel - ",
2509 static_cast<KeyEntry*>(cancelationEventEntry));
2510 break;
2511 case EventEntry::TYPE_MOTION:
2512 logOutboundMotionDetails("cancel - ",
2513 static_cast<MotionEntry*>(cancelationEventEntry));
2514 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002515 }
2516
2517 InputTarget target;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002518 sp<InputWindowHandle> windowHandle =
2519 getWindowHandleLocked(connection->inputChannel->getToken());
Yi Kong9b14ac62018-07-17 13:48:38 -07002520 if (windowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002521 const InputWindowInfo* windowInfo = windowHandle->getInfo();
2522 target.xOffset = -windowInfo->frameLeft;
2523 target.yOffset = -windowInfo->frameTop;
Robert Carre07e1032018-11-26 12:55:53 -08002524 target.globalScaleFactor = windowInfo->globalScaleFactor;
2525 target.windowXScale = windowInfo->windowXScale;
2526 target.windowYScale = windowInfo->windowYScale;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002527 } else {
2528 target.xOffset = 0;
2529 target.yOffset = 0;
Robert Carre07e1032018-11-26 12:55:53 -08002530 target.globalScaleFactor = 1.0f;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002531 }
2532 target.inputChannel = connection->inputChannel;
2533 target.flags = InputTarget::FLAG_DISPATCH_AS_IS;
2534
chaviw8c9cf542019-03-25 13:02:48 -07002535 enqueueDispatchEntryLocked(connection, cancelationEventEntry, // increments ref
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002536 &target, InputTarget::FLAG_DISPATCH_AS_IS);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002537
2538 cancelationEventEntry->release();
2539 }
2540
2541 startDispatchCycleLocked(currentTime, connection);
2542 }
2543}
2544
Garfield Tane84e6f92019-08-29 17:28:41 -07002545MotionEntry* InputDispatcher::splitMotionEvent(const MotionEntry* originalMotionEntry,
2546 BitSet32 pointerIds) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002547 ALOG_ASSERT(pointerIds.value != 0);
2548
2549 uint32_t splitPointerIndexMap[MAX_POINTERS];
2550 PointerProperties splitPointerProperties[MAX_POINTERS];
2551 PointerCoords splitPointerCoords[MAX_POINTERS];
2552
2553 uint32_t originalPointerCount = originalMotionEntry->pointerCount;
2554 uint32_t splitPointerCount = 0;
2555
2556 for (uint32_t originalPointerIndex = 0; originalPointerIndex < originalPointerCount;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002557 originalPointerIndex++) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002558 const PointerProperties& pointerProperties =
2559 originalMotionEntry->pointerProperties[originalPointerIndex];
2560 uint32_t pointerId = uint32_t(pointerProperties.id);
2561 if (pointerIds.hasBit(pointerId)) {
2562 splitPointerIndexMap[splitPointerCount] = originalPointerIndex;
2563 splitPointerProperties[splitPointerCount].copyFrom(pointerProperties);
2564 splitPointerCoords[splitPointerCount].copyFrom(
2565 originalMotionEntry->pointerCoords[originalPointerIndex]);
2566 splitPointerCount += 1;
2567 }
2568 }
2569
2570 if (splitPointerCount != pointerIds.count()) {
2571 // This is bad. We are missing some of the pointers that we expected to deliver.
2572 // Most likely this indicates that we received an ACTION_MOVE events that has
2573 // different pointer ids than we expected based on the previous ACTION_DOWN
2574 // or ACTION_POINTER_DOWN events that caused us to decide to split the pointers
2575 // in this way.
2576 ALOGW("Dropping split motion event because the pointer count is %d but "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002577 "we expected there to be %d pointers. This probably means we received "
2578 "a broken sequence of pointer ids from the input device.",
2579 splitPointerCount, pointerIds.count());
Yi Kong9b14ac62018-07-17 13:48:38 -07002580 return nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002581 }
2582
2583 int32_t action = originalMotionEntry->action;
2584 int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002585 if (maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN ||
2586 maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002587 int32_t originalPointerIndex = getMotionEventActionPointerIndex(action);
2588 const PointerProperties& pointerProperties =
2589 originalMotionEntry->pointerProperties[originalPointerIndex];
2590 uint32_t pointerId = uint32_t(pointerProperties.id);
2591 if (pointerIds.hasBit(pointerId)) {
2592 if (pointerIds.count() == 1) {
2593 // The first/last pointer went down/up.
2594 action = maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002595 ? AMOTION_EVENT_ACTION_DOWN
2596 : AMOTION_EVENT_ACTION_UP;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002597 } else {
2598 // A secondary pointer went down/up.
2599 uint32_t splitPointerIndex = 0;
2600 while (pointerId != uint32_t(splitPointerProperties[splitPointerIndex].id)) {
2601 splitPointerIndex += 1;
2602 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002603 action = maskedAction |
2604 (splitPointerIndex << AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002605 }
2606 } else {
2607 // An unrelated pointer changed.
2608 action = AMOTION_EVENT_ACTION_MOVE;
2609 }
2610 }
2611
Garfield Tan00f511d2019-06-12 16:55:40 -07002612 MotionEntry* splitMotionEntry =
2613 new MotionEntry(originalMotionEntry->sequenceNum, originalMotionEntry->eventTime,
2614 originalMotionEntry->deviceId, originalMotionEntry->source,
2615 originalMotionEntry->displayId, originalMotionEntry->policyFlags,
2616 action, originalMotionEntry->actionButton, originalMotionEntry->flags,
2617 originalMotionEntry->metaState, originalMotionEntry->buttonState,
2618 originalMotionEntry->classification, originalMotionEntry->edgeFlags,
2619 originalMotionEntry->xPrecision, originalMotionEntry->yPrecision,
2620 originalMotionEntry->xCursorPosition,
2621 originalMotionEntry->yCursorPosition, originalMotionEntry->downTime,
2622 splitPointerCount, splitPointerProperties, splitPointerCoords, 0, 0);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002623
2624 if (originalMotionEntry->injectionState) {
2625 splitMotionEntry->injectionState = originalMotionEntry->injectionState;
2626 splitMotionEntry->injectionState->refCount += 1;
2627 }
2628
2629 return splitMotionEntry;
2630}
2631
2632void InputDispatcher::notifyConfigurationChanged(const NotifyConfigurationChangedArgs* args) {
2633#if DEBUG_INBOUND_EVENT_DETAILS
Siarhei Vishniakou5d83f602017-09-12 12:40:29 -07002634 ALOGD("notifyConfigurationChanged - eventTime=%" PRId64, args->eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002635#endif
2636
2637 bool needWake;
2638 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08002639 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002640
Prabir Pradhan42611e02018-11-27 14:04:02 -08002641 ConfigurationChangedEntry* newEntry =
2642 new ConfigurationChangedEntry(args->sequenceNum, args->eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002643 needWake = enqueueInboundEventLocked(newEntry);
2644 } // release lock
2645
2646 if (needWake) {
2647 mLooper->wake();
2648 }
2649}
2650
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05002651/**
2652 * If one of the meta shortcuts is detected, process them here:
2653 * Meta + Backspace -> generate BACK
2654 * Meta + Enter -> generate HOME
2655 * This will potentially overwrite keyCode and metaState.
2656 */
2657void InputDispatcher::accelerateMetaShortcuts(const int32_t deviceId, const int32_t action,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002658 int32_t& keyCode, int32_t& metaState) {
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05002659 if (metaState & AMETA_META_ON && action == AKEY_EVENT_ACTION_DOWN) {
2660 int32_t newKeyCode = AKEYCODE_UNKNOWN;
2661 if (keyCode == AKEYCODE_DEL) {
2662 newKeyCode = AKEYCODE_BACK;
2663 } else if (keyCode == AKEYCODE_ENTER) {
2664 newKeyCode = AKEYCODE_HOME;
2665 }
2666 if (newKeyCode != AKEYCODE_UNKNOWN) {
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08002667 std::scoped_lock _l(mLock);
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05002668 struct KeyReplacement replacement = {keyCode, deviceId};
2669 mReplacedKeys.add(replacement, newKeyCode);
2670 keyCode = newKeyCode;
2671 metaState &= ~(AMETA_META_ON | AMETA_META_LEFT_ON | AMETA_META_RIGHT_ON);
2672 }
2673 } else if (action == AKEY_EVENT_ACTION_UP) {
2674 // In order to maintain a consistent stream of up and down events, check to see if the key
2675 // going up is one we've replaced in a down event and haven't yet replaced in an up event,
2676 // even if the modifier was released between the down and the up events.
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08002677 std::scoped_lock _l(mLock);
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05002678 struct KeyReplacement replacement = {keyCode, deviceId};
2679 ssize_t index = mReplacedKeys.indexOfKey(replacement);
2680 if (index >= 0) {
2681 keyCode = mReplacedKeys.valueAt(index);
2682 mReplacedKeys.removeItemsAt(index);
2683 metaState &= ~(AMETA_META_ON | AMETA_META_LEFT_ON | AMETA_META_RIGHT_ON);
2684 }
2685 }
2686}
2687
Michael Wrightd02c5b62014-02-10 15:10:22 -08002688void InputDispatcher::notifyKey(const NotifyKeyArgs* args) {
2689#if DEBUG_INBOUND_EVENT_DETAILS
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002690 ALOGD("notifyKey - eventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32
2691 "policyFlags=0x%x, action=0x%x, "
2692 "flags=0x%x, keyCode=0x%x, scanCode=0x%x, metaState=0x%x, downTime=%" PRId64,
2693 args->eventTime, args->deviceId, args->source, args->displayId, args->policyFlags,
2694 args->action, args->flags, args->keyCode, args->scanCode, args->metaState,
2695 args->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002696#endif
2697 if (!validateKeyEvent(args->action)) {
2698 return;
2699 }
2700
2701 uint32_t policyFlags = args->policyFlags;
2702 int32_t flags = args->flags;
2703 int32_t metaState = args->metaState;
Siarhei Vishniakou622bd322018-10-29 18:02:27 -07002704 // InputDispatcher tracks and generates key repeats on behalf of
2705 // whatever notifies it, so repeatCount should always be set to 0
2706 constexpr int32_t repeatCount = 0;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002707 if ((policyFlags & POLICY_FLAG_VIRTUAL) || (flags & AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY)) {
2708 policyFlags |= POLICY_FLAG_VIRTUAL;
2709 flags |= AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY;
2710 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002711 if (policyFlags & POLICY_FLAG_FUNCTION) {
2712 metaState |= AMETA_FUNCTION_ON;
2713 }
2714
2715 policyFlags |= POLICY_FLAG_TRUSTED;
2716
Michael Wright78f24442014-08-06 15:55:28 -07002717 int32_t keyCode = args->keyCode;
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05002718 accelerateMetaShortcuts(args->deviceId, args->action, keyCode, metaState);
Michael Wright78f24442014-08-06 15:55:28 -07002719
Michael Wrightd02c5b62014-02-10 15:10:22 -08002720 KeyEvent event;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002721 event.initialize(args->deviceId, args->source, args->displayId, args->action, flags, keyCode,
2722 args->scanCode, metaState, repeatCount, args->downTime, args->eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002723
Michael Wright2b3c3302018-03-02 17:19:13 +00002724 android::base::Timer t;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002725 mPolicy->interceptKeyBeforeQueueing(&event, /*byref*/ policyFlags);
Michael Wright2b3c3302018-03-02 17:19:13 +00002726 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
2727 ALOGW("Excessive delay in interceptKeyBeforeQueueing; took %s ms",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002728 std::to_string(t.duration().count()).c_str());
Michael Wright2b3c3302018-03-02 17:19:13 +00002729 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002730
Michael Wrightd02c5b62014-02-10 15:10:22 -08002731 bool needWake;
2732 { // acquire lock
2733 mLock.lock();
2734
2735 if (shouldSendKeyToInputFilterLocked(args)) {
2736 mLock.unlock();
2737
2738 policyFlags |= POLICY_FLAG_FILTERED;
2739 if (!mPolicy->filterInputEvent(&event, policyFlags)) {
2740 return; // event was consumed by the filter
2741 }
2742
2743 mLock.lock();
2744 }
2745
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002746 KeyEntry* newEntry =
2747 new KeyEntry(args->sequenceNum, args->eventTime, args->deviceId, args->source,
2748 args->displayId, policyFlags, args->action, flags, keyCode,
2749 args->scanCode, metaState, repeatCount, args->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002750
2751 needWake = enqueueInboundEventLocked(newEntry);
2752 mLock.unlock();
2753 } // release lock
2754
2755 if (needWake) {
2756 mLooper->wake();
2757 }
2758}
2759
2760bool InputDispatcher::shouldSendKeyToInputFilterLocked(const NotifyKeyArgs* args) {
2761 return mInputFilterEnabled;
2762}
2763
2764void InputDispatcher::notifyMotion(const NotifyMotionArgs* args) {
2765#if DEBUG_INBOUND_EVENT_DETAILS
Siarhei Vishniakou777a10b2018-01-31 16:45:06 -08002766 ALOGD("notifyMotion - eventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32
Garfield Tan00f511d2019-06-12 16:55:40 -07002767 ", policyFlags=0x%x, "
2768 "action=0x%x, actionButton=0x%x, flags=0x%x, metaState=0x%x, buttonState=0x%x, "
2769 "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, xCursorPosition=%f, "
Garfield Tanab0ab9c2019-07-10 18:58:28 -07002770 "yCursorPosition=%f, downTime=%" PRId64,
Garfield Tan00f511d2019-06-12 16:55:40 -07002771 args->eventTime, args->deviceId, args->source, args->displayId, args->policyFlags,
2772 args->action, args->actionButton, args->flags, args->metaState, args->buttonState,
2773 args->edgeFlags, args->xPrecision, args->yPrecision, arg->xCursorPosition,
2774 args->yCursorPosition, args->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002775 for (uint32_t i = 0; i < args->pointerCount; i++) {
2776 ALOGD(" Pointer %d: id=%d, toolType=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002777 "x=%f, y=%f, pressure=%f, size=%f, "
2778 "touchMajor=%f, touchMinor=%f, toolMajor=%f, toolMinor=%f, "
2779 "orientation=%f",
2780 i, args->pointerProperties[i].id, args->pointerProperties[i].toolType,
2781 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_X),
2782 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_Y),
2783 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_PRESSURE),
2784 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_SIZE),
2785 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR),
2786 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR),
2787 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR),
2788 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR),
2789 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002790 }
2791#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002792 if (!validateMotionEvent(args->action, args->actionButton, args->pointerCount,
2793 args->pointerProperties)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002794 return;
2795 }
2796
2797 uint32_t policyFlags = args->policyFlags;
2798 policyFlags |= POLICY_FLAG_TRUSTED;
Michael Wright2b3c3302018-03-02 17:19:13 +00002799
2800 android::base::Timer t;
Charles Chen3611f1f2019-01-29 17:26:18 +08002801 mPolicy->interceptMotionBeforeQueueing(args->displayId, args->eventTime, /*byref*/ policyFlags);
Michael Wright2b3c3302018-03-02 17:19:13 +00002802 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
2803 ALOGW("Excessive delay in interceptMotionBeforeQueueing; took %s ms",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002804 std::to_string(t.duration().count()).c_str());
Michael Wright2b3c3302018-03-02 17:19:13 +00002805 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002806
2807 bool needWake;
2808 { // acquire lock
2809 mLock.lock();
2810
2811 if (shouldSendMotionToInputFilterLocked(args)) {
2812 mLock.unlock();
2813
2814 MotionEvent event;
Garfield Tan00f511d2019-06-12 16:55:40 -07002815 event.initialize(args->deviceId, args->source, args->displayId, args->action,
2816 args->actionButton, args->flags, args->edgeFlags, args->metaState,
2817 args->buttonState, args->classification, 0, 0, args->xPrecision,
2818 args->yPrecision, args->xCursorPosition, args->yCursorPosition,
2819 args->downTime, args->eventTime, args->pointerCount,
2820 args->pointerProperties, args->pointerCoords);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002821
2822 policyFlags |= POLICY_FLAG_FILTERED;
2823 if (!mPolicy->filterInputEvent(&event, policyFlags)) {
2824 return; // event was consumed by the filter
2825 }
2826
2827 mLock.lock();
2828 }
2829
2830 // Just enqueue a new motion event.
Garfield Tan00f511d2019-06-12 16:55:40 -07002831 MotionEntry* newEntry =
2832 new MotionEntry(args->sequenceNum, args->eventTime, args->deviceId, args->source,
2833 args->displayId, policyFlags, args->action, args->actionButton,
2834 args->flags, args->metaState, args->buttonState,
2835 args->classification, args->edgeFlags, args->xPrecision,
2836 args->yPrecision, args->xCursorPosition, args->yCursorPosition,
2837 args->downTime, args->pointerCount, args->pointerProperties,
2838 args->pointerCoords, 0, 0);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002839
2840 needWake = enqueueInboundEventLocked(newEntry);
2841 mLock.unlock();
2842 } // release lock
2843
2844 if (needWake) {
2845 mLooper->wake();
2846 }
2847}
2848
2849bool InputDispatcher::shouldSendMotionToInputFilterLocked(const NotifyMotionArgs* args) {
Jackal Guof9696682018-10-05 12:23:23 +08002850 return mInputFilterEnabled;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002851}
2852
2853void InputDispatcher::notifySwitch(const NotifySwitchArgs* args) {
2854#if DEBUG_INBOUND_EVENT_DETAILS
Siarhei Vishniakou5d83f602017-09-12 12:40:29 -07002855 ALOGD("notifySwitch - eventTime=%" PRId64 ", policyFlags=0x%x, switchValues=0x%08x, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002856 "switchMask=0x%08x",
2857 args->eventTime, args->policyFlags, args->switchValues, args->switchMask);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002858#endif
2859
2860 uint32_t policyFlags = args->policyFlags;
2861 policyFlags |= POLICY_FLAG_TRUSTED;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002862 mPolicy->notifySwitch(args->eventTime, args->switchValues, args->switchMask, policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002863}
2864
2865void InputDispatcher::notifyDeviceReset(const NotifyDeviceResetArgs* args) {
2866#if DEBUG_INBOUND_EVENT_DETAILS
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002867 ALOGD("notifyDeviceReset - eventTime=%" PRId64 ", deviceId=%d", args->eventTime,
2868 args->deviceId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002869#endif
2870
2871 bool needWake;
2872 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08002873 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002874
Prabir Pradhan42611e02018-11-27 14:04:02 -08002875 DeviceResetEntry* newEntry =
2876 new DeviceResetEntry(args->sequenceNum, args->eventTime, args->deviceId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002877 needWake = enqueueInboundEventLocked(newEntry);
2878 } // release lock
2879
2880 if (needWake) {
2881 mLooper->wake();
2882 }
2883}
2884
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002885int32_t InputDispatcher::injectInputEvent(const InputEvent* event, int32_t injectorPid,
2886 int32_t injectorUid, int32_t syncMode,
2887 int32_t timeoutMillis, uint32_t policyFlags) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002888#if DEBUG_INBOUND_EVENT_DETAILS
2889 ALOGD("injectInputEvent - eventType=%d, injectorPid=%d, injectorUid=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002890 "syncMode=%d, timeoutMillis=%d, policyFlags=0x%08x",
2891 event->getType(), injectorPid, injectorUid, syncMode, timeoutMillis, policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002892#endif
2893
2894 nsecs_t endTime = now() + milliseconds_to_nanoseconds(timeoutMillis);
2895
2896 policyFlags |= POLICY_FLAG_INJECTED;
2897 if (hasInjectionPermission(injectorPid, injectorUid)) {
2898 policyFlags |= POLICY_FLAG_TRUSTED;
2899 }
2900
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07002901 std::queue<EventEntry*> injectedEntries;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002902 switch (event->getType()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002903 case AINPUT_EVENT_TYPE_KEY: {
2904 KeyEvent keyEvent;
2905 keyEvent.initialize(*static_cast<const KeyEvent*>(event));
2906 int32_t action = keyEvent.getAction();
2907 if (!validateKeyEvent(action)) {
2908 return INPUT_EVENT_INJECTION_FAILED;
Michael Wright2b3c3302018-03-02 17:19:13 +00002909 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002910
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002911 int32_t flags = keyEvent.getFlags();
2912 int32_t keyCode = keyEvent.getKeyCode();
2913 int32_t metaState = keyEvent.getMetaState();
2914 accelerateMetaShortcuts(keyEvent.getDeviceId(), action,
2915 /*byref*/ keyCode, /*byref*/ metaState);
2916 keyEvent.initialize(keyEvent.getDeviceId(), keyEvent.getSource(),
2917 keyEvent.getDisplayId(), action, flags, keyCode,
2918 keyEvent.getScanCode(), metaState, keyEvent.getRepeatCount(),
2919 keyEvent.getDownTime(), keyEvent.getEventTime());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002920
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002921 if (flags & AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY) {
2922 policyFlags |= POLICY_FLAG_VIRTUAL;
Michael Wright2b3c3302018-03-02 17:19:13 +00002923 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002924
2925 if (!(policyFlags & POLICY_FLAG_FILTERED)) {
2926 android::base::Timer t;
2927 mPolicy->interceptKeyBeforeQueueing(&keyEvent, /*byref*/ policyFlags);
2928 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
2929 ALOGW("Excessive delay in interceptKeyBeforeQueueing; took %s ms",
2930 std::to_string(t.duration().count()).c_str());
2931 }
2932 }
2933
2934 mLock.lock();
2935 KeyEntry* injectedEntry =
2936 new KeyEntry(SYNTHESIZED_EVENT_SEQUENCE_NUM, keyEvent.getEventTime(),
2937 keyEvent.getDeviceId(), keyEvent.getSource(),
2938 keyEvent.getDisplayId(), policyFlags, action, flags,
2939 keyEvent.getKeyCode(), keyEvent.getScanCode(),
2940 keyEvent.getMetaState(), keyEvent.getRepeatCount(),
2941 keyEvent.getDownTime());
2942 injectedEntries.push(injectedEntry);
2943 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002944 }
2945
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002946 case AINPUT_EVENT_TYPE_MOTION: {
2947 const MotionEvent* motionEvent = static_cast<const MotionEvent*>(event);
2948 int32_t action = motionEvent->getAction();
2949 size_t pointerCount = motionEvent->getPointerCount();
2950 const PointerProperties* pointerProperties = motionEvent->getPointerProperties();
2951 int32_t actionButton = motionEvent->getActionButton();
2952 int32_t displayId = motionEvent->getDisplayId();
2953 if (!validateMotionEvent(action, actionButton, pointerCount, pointerProperties)) {
2954 return INPUT_EVENT_INJECTION_FAILED;
2955 }
2956
2957 if (!(policyFlags & POLICY_FLAG_FILTERED)) {
2958 nsecs_t eventTime = motionEvent->getEventTime();
2959 android::base::Timer t;
2960 mPolicy->interceptMotionBeforeQueueing(displayId, eventTime, /*byref*/ policyFlags);
2961 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
2962 ALOGW("Excessive delay in interceptMotionBeforeQueueing; took %s ms",
2963 std::to_string(t.duration().count()).c_str());
2964 }
2965 }
2966
2967 mLock.lock();
2968 const nsecs_t* sampleEventTimes = motionEvent->getSampleEventTimes();
2969 const PointerCoords* samplePointerCoords = motionEvent->getSamplePointerCoords();
2970 MotionEntry* injectedEntry =
Garfield Tan00f511d2019-06-12 16:55:40 -07002971 new MotionEntry(SYNTHESIZED_EVENT_SEQUENCE_NUM, *sampleEventTimes,
2972 motionEvent->getDeviceId(), motionEvent->getSource(),
2973 motionEvent->getDisplayId(), policyFlags, action, actionButton,
2974 motionEvent->getFlags(), motionEvent->getMetaState(),
2975 motionEvent->getButtonState(), motionEvent->getClassification(),
2976 motionEvent->getEdgeFlags(), motionEvent->getXPrecision(),
2977 motionEvent->getYPrecision(),
2978 motionEvent->getRawXCursorPosition(),
2979 motionEvent->getRawYCursorPosition(),
2980 motionEvent->getDownTime(), uint32_t(pointerCount),
2981 pointerProperties, samplePointerCoords,
2982 motionEvent->getXOffset(), motionEvent->getYOffset());
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002983 injectedEntries.push(injectedEntry);
2984 for (size_t i = motionEvent->getHistorySize(); i > 0; i--) {
2985 sampleEventTimes += 1;
2986 samplePointerCoords += pointerCount;
2987 MotionEntry* nextInjectedEntry =
2988 new MotionEntry(SYNTHESIZED_EVENT_SEQUENCE_NUM, *sampleEventTimes,
2989 motionEvent->getDeviceId(), motionEvent->getSource(),
2990 motionEvent->getDisplayId(), policyFlags, action,
2991 actionButton, motionEvent->getFlags(),
2992 motionEvent->getMetaState(), motionEvent->getButtonState(),
2993 motionEvent->getClassification(),
2994 motionEvent->getEdgeFlags(), motionEvent->getXPrecision(),
2995 motionEvent->getYPrecision(),
2996 motionEvent->getRawXCursorPosition(),
2997 motionEvent->getRawYCursorPosition(),
2998 motionEvent->getDownTime(), uint32_t(pointerCount),
2999 pointerProperties, samplePointerCoords,
3000 motionEvent->getXOffset(), motionEvent->getYOffset());
3001 injectedEntries.push(nextInjectedEntry);
3002 }
3003 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003004 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003005
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003006 default:
3007 ALOGW("Cannot inject event of type %d", event->getType());
3008 return INPUT_EVENT_INJECTION_FAILED;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003009 }
3010
3011 InjectionState* injectionState = new InjectionState(injectorPid, injectorUid);
3012 if (syncMode == INPUT_EVENT_INJECTION_SYNC_NONE) {
3013 injectionState->injectionIsAsync = true;
3014 }
3015
3016 injectionState->refCount += 1;
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07003017 injectedEntries.back()->injectionState = injectionState;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003018
3019 bool needWake = false;
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07003020 while (!injectedEntries.empty()) {
3021 needWake |= enqueueInboundEventLocked(injectedEntries.front());
3022 injectedEntries.pop();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003023 }
3024
3025 mLock.unlock();
3026
3027 if (needWake) {
3028 mLooper->wake();
3029 }
3030
3031 int32_t injectionResult;
3032 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003033 std::unique_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003034
3035 if (syncMode == INPUT_EVENT_INJECTION_SYNC_NONE) {
3036 injectionResult = INPUT_EVENT_INJECTION_SUCCEEDED;
3037 } else {
3038 for (;;) {
3039 injectionResult = injectionState->injectionResult;
3040 if (injectionResult != INPUT_EVENT_INJECTION_PENDING) {
3041 break;
3042 }
3043
3044 nsecs_t remainingTimeout = endTime - now();
3045 if (remainingTimeout <= 0) {
3046#if DEBUG_INJECTION
3047 ALOGD("injectInputEvent - Timed out waiting for injection result "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003048 "to become available.");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003049#endif
3050 injectionResult = INPUT_EVENT_INJECTION_TIMED_OUT;
3051 break;
3052 }
3053
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003054 mInjectionResultAvailable.wait_for(_l, std::chrono::nanoseconds(remainingTimeout));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003055 }
3056
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003057 if (injectionResult == INPUT_EVENT_INJECTION_SUCCEEDED &&
3058 syncMode == INPUT_EVENT_INJECTION_SYNC_WAIT_FOR_FINISHED) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003059 while (injectionState->pendingForegroundDispatches != 0) {
3060#if DEBUG_INJECTION
3061 ALOGD("injectInputEvent - Waiting for %d pending foreground dispatches.",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003062 injectionState->pendingForegroundDispatches);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003063#endif
3064 nsecs_t remainingTimeout = endTime - now();
3065 if (remainingTimeout <= 0) {
3066#if DEBUG_INJECTION
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003067 ALOGD("injectInputEvent - Timed out waiting for pending foreground "
3068 "dispatches to finish.");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003069#endif
3070 injectionResult = INPUT_EVENT_INJECTION_TIMED_OUT;
3071 break;
3072 }
3073
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003074 mInjectionSyncFinished.wait_for(_l, std::chrono::nanoseconds(remainingTimeout));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003075 }
3076 }
3077 }
3078
3079 injectionState->release();
3080 } // release lock
3081
3082#if DEBUG_INJECTION
3083 ALOGD("injectInputEvent - Finished with result %d. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003084 "injectorPid=%d, injectorUid=%d",
3085 injectionResult, injectorPid, injectorUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003086#endif
3087
3088 return injectionResult;
3089}
3090
3091bool InputDispatcher::hasInjectionPermission(int32_t injectorPid, int32_t injectorUid) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003092 return injectorUid == 0 ||
3093 mPolicy->checkInjectEventsPermissionNonReentrant(injectorPid, injectorUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003094}
3095
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08003096void InputDispatcher::setInjectionResult(EventEntry* entry, int32_t injectionResult) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003097 InjectionState* injectionState = entry->injectionState;
3098 if (injectionState) {
3099#if DEBUG_INJECTION
3100 ALOGD("Setting input event injection result to %d. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003101 "injectorPid=%d, injectorUid=%d",
3102 injectionResult, injectionState->injectorPid, injectionState->injectorUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003103#endif
3104
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003105 if (injectionState->injectionIsAsync && !(entry->policyFlags & POLICY_FLAG_FILTERED)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003106 // Log the outcome since the injector did not wait for the injection result.
3107 switch (injectionResult) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003108 case INPUT_EVENT_INJECTION_SUCCEEDED:
3109 ALOGV("Asynchronous input event injection succeeded.");
3110 break;
3111 case INPUT_EVENT_INJECTION_FAILED:
3112 ALOGW("Asynchronous input event injection failed.");
3113 break;
3114 case INPUT_EVENT_INJECTION_PERMISSION_DENIED:
3115 ALOGW("Asynchronous input event injection permission denied.");
3116 break;
3117 case INPUT_EVENT_INJECTION_TIMED_OUT:
3118 ALOGW("Asynchronous input event injection timed out.");
3119 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003120 }
3121 }
3122
3123 injectionState->injectionResult = injectionResult;
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003124 mInjectionResultAvailable.notify_all();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003125 }
3126}
3127
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08003128void InputDispatcher::incrementPendingForegroundDispatches(EventEntry* entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003129 InjectionState* injectionState = entry->injectionState;
3130 if (injectionState) {
3131 injectionState->pendingForegroundDispatches += 1;
3132 }
3133}
3134
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08003135void InputDispatcher::decrementPendingForegroundDispatches(EventEntry* entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003136 InjectionState* injectionState = entry->injectionState;
3137 if (injectionState) {
3138 injectionState->pendingForegroundDispatches -= 1;
3139
3140 if (injectionState->pendingForegroundDispatches == 0) {
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003141 mInjectionSyncFinished.notify_all();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003142 }
3143 }
3144}
3145
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003146std::vector<sp<InputWindowHandle>> InputDispatcher::getWindowHandlesLocked(
3147 int32_t displayId) const {
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003148 return getValueByKey(mWindowHandlesByDisplay, displayId);
Arthur Hungb92218b2018-08-14 12:00:21 +08003149}
3150
Michael Wrightd02c5b62014-02-10 15:10:22 -08003151sp<InputWindowHandle> InputDispatcher::getWindowHandleLocked(
chaviwfbe5d9c2018-12-26 12:23:37 -08003152 const sp<IBinder>& windowHandleToken) const {
Arthur Hungb92218b2018-08-14 12:00:21 +08003153 for (auto& it : mWindowHandlesByDisplay) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003154 const std::vector<sp<InputWindowHandle>> windowHandles = it.second;
3155 for (const sp<InputWindowHandle>& windowHandle : windowHandles) {
chaviwfbe5d9c2018-12-26 12:23:37 -08003156 if (windowHandle->getToken() == windowHandleToken) {
Arthur Hungb92218b2018-08-14 12:00:21 +08003157 return windowHandle;
3158 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003159 }
3160 }
Yi Kong9b14ac62018-07-17 13:48:38 -07003161 return nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003162}
3163
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08003164bool InputDispatcher::hasWindowHandleLocked(const sp<InputWindowHandle>& windowHandle) const {
Arthur Hungb92218b2018-08-14 12:00:21 +08003165 for (auto& it : mWindowHandlesByDisplay) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003166 const std::vector<sp<InputWindowHandle>> windowHandles = it.second;
3167 for (const sp<InputWindowHandle>& handle : windowHandles) {
3168 if (handle->getToken() == windowHandle->getToken()) {
Arthur Hungb92218b2018-08-14 12:00:21 +08003169 if (windowHandle->getInfo()->displayId != it.first) {
Arthur Hung3b413f22018-10-26 18:05:34 +08003170 ALOGE("Found window %s in display %" PRId32
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003171 ", but it should belong to display %" PRId32,
3172 windowHandle->getName().c_str(), it.first,
3173 windowHandle->getInfo()->displayId);
Arthur Hungb92218b2018-08-14 12:00:21 +08003174 }
3175 return true;
3176 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003177 }
3178 }
3179 return false;
3180}
3181
Robert Carr5c8a0262018-10-03 16:30:44 -07003182sp<InputChannel> InputDispatcher::getInputChannelLocked(const sp<IBinder>& token) const {
3183 size_t count = mInputChannelsByToken.count(token);
3184 if (count == 0) {
3185 return nullptr;
3186 }
3187 return mInputChannelsByToken.at(token);
3188}
3189
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003190void InputDispatcher::updateWindowHandlesForDisplayLocked(
3191 const std::vector<sp<InputWindowHandle>>& inputWindowHandles, int32_t displayId) {
3192 if (inputWindowHandles.empty()) {
3193 // Remove all handles on a display if there are no windows left.
3194 mWindowHandlesByDisplay.erase(displayId);
3195 return;
3196 }
3197
3198 // Since we compare the pointer of input window handles across window updates, we need
3199 // to make sure the handle object for the same window stays unchanged across updates.
3200 const std::vector<sp<InputWindowHandle>>& oldHandles = getWindowHandlesLocked(displayId);
3201 std::unordered_map<sp<IBinder>, sp<InputWindowHandle>, IBinderHash> oldHandlesByTokens;
3202 for (const sp<InputWindowHandle>& handle : oldHandles) {
3203 oldHandlesByTokens[handle->getToken()] = handle;
3204 }
3205
3206 std::vector<sp<InputWindowHandle>> newHandles;
3207 for (const sp<InputWindowHandle>& handle : inputWindowHandles) {
3208 if (!handle->updateInfo()) {
3209 // handle no longer valid
3210 continue;
3211 }
3212
3213 const InputWindowInfo* info = handle->getInfo();
3214 if ((getInputChannelLocked(handle->getToken()) == nullptr &&
3215 info->portalToDisplayId == ADISPLAY_ID_NONE)) {
3216 const bool noInputChannel =
3217 info->inputFeatures & InputWindowInfo::INPUT_FEATURE_NO_INPUT_CHANNEL;
3218 const bool canReceiveInput =
3219 !(info->layoutParamsFlags & InputWindowInfo::FLAG_NOT_TOUCHABLE) ||
3220 !(info->layoutParamsFlags & InputWindowInfo::FLAG_NOT_FOCUSABLE);
3221 if (canReceiveInput && !noInputChannel) {
3222 ALOGE("Window handle %s has no registered input channel",
3223 handle->getName().c_str());
3224 }
3225 continue;
3226 }
3227
3228 if (info->displayId != displayId) {
3229 ALOGE("Window %s updated by wrong display %d, should belong to display %d",
3230 handle->getName().c_str(), displayId, info->displayId);
3231 continue;
3232 }
3233
3234 if (oldHandlesByTokens.find(handle->getToken()) != oldHandlesByTokens.end()) {
3235 const sp<InputWindowHandle> oldHandle = oldHandlesByTokens.at(handle->getToken());
3236 oldHandle->updateFrom(handle);
3237 newHandles.push_back(oldHandle);
3238 } else {
3239 newHandles.push_back(handle);
3240 }
3241 }
3242
3243 // Insert or replace
3244 mWindowHandlesByDisplay[displayId] = newHandles;
3245}
3246
Arthur Hungb92218b2018-08-14 12:00:21 +08003247/**
3248 * Called from InputManagerService, update window handle list by displayId that can receive input.
3249 * A window handle contains information about InputChannel, Touch Region, Types, Focused,...
3250 * If set an empty list, remove all handles from the specific display.
3251 * For focused handle, check if need to change and send a cancel event to previous one.
3252 * For removed handle, check if need to send a cancel event if already in touch.
3253 */
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003254void InputDispatcher::setInputWindows(const std::vector<sp<InputWindowHandle>>& inputWindowHandles,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003255 int32_t displayId,
3256 const sp<ISetInputWindowsListener>& setInputWindowsListener) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003257#if DEBUG_FOCUS
Arthur Hung3b413f22018-10-26 18:05:34 +08003258 ALOGD("setInputWindows displayId=%" PRId32, displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003259#endif
3260 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003261 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003262
Arthur Hungb92218b2018-08-14 12:00:21 +08003263 // Copy old handles for release if they are no longer present.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003264 const std::vector<sp<InputWindowHandle>> oldWindowHandles =
3265 getWindowHandlesLocked(displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003266
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003267 updateWindowHandlesForDisplayLocked(inputWindowHandles, displayId);
3268
Tiger Huang721e26f2018-07-24 22:26:19 +08003269 sp<InputWindowHandle> newFocusedWindowHandle = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003270 bool foundHoveredWindow = false;
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003271 for (const sp<InputWindowHandle>& windowHandle : getWindowHandlesLocked(displayId)) {
3272 // Set newFocusedWindowHandle to the top most focused window instead of the last one
3273 if (!newFocusedWindowHandle && windowHandle->getInfo()->hasFocus &&
3274 windowHandle->getInfo()->visible) {
3275 newFocusedWindowHandle = windowHandle;
Garfield Tanbd0fbcd2018-11-30 12:45:03 -08003276 }
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003277 if (windowHandle == mLastHoverWindowHandle) {
3278 foundHoveredWindow = true;
Garfield Tanbd0fbcd2018-11-30 12:45:03 -08003279 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003280 }
3281
3282 if (!foundHoveredWindow) {
Yi Kong9b14ac62018-07-17 13:48:38 -07003283 mLastHoverWindowHandle = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003284 }
3285
Tiger Huang721e26f2018-07-24 22:26:19 +08003286 sp<InputWindowHandle> oldFocusedWindowHandle =
3287 getValueByKey(mFocusedWindowHandlesByDisplay, displayId);
3288
3289 if (oldFocusedWindowHandle != newFocusedWindowHandle) {
3290 if (oldFocusedWindowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003291#if DEBUG_FOCUS
Arthur Hung3b413f22018-10-26 18:05:34 +08003292 ALOGD("Focus left window: %s in display %" PRId32,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003293 oldFocusedWindowHandle->getName().c_str(), displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003294#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003295 sp<InputChannel> focusedInputChannel =
3296 getInputChannelLocked(oldFocusedWindowHandle->getToken());
Yi Kong9b14ac62018-07-17 13:48:38 -07003297 if (focusedInputChannel != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003298 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003299 "focus left window");
3300 synthesizeCancelationEventsForInputChannelLocked(focusedInputChannel, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003301 }
Tiger Huang721e26f2018-07-24 22:26:19 +08003302 mFocusedWindowHandlesByDisplay.erase(displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003303 }
Yi Kong9b14ac62018-07-17 13:48:38 -07003304 if (newFocusedWindowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003305#if DEBUG_FOCUS
Arthur Hung3b413f22018-10-26 18:05:34 +08003306 ALOGD("Focus entered window: %s in display %" PRId32,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003307 newFocusedWindowHandle->getName().c_str(), displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003308#endif
Tiger Huang721e26f2018-07-24 22:26:19 +08003309 mFocusedWindowHandlesByDisplay[displayId] = newFocusedWindowHandle;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003310 }
Robert Carrf759f162018-11-13 12:57:11 -08003311
3312 if (mFocusedDisplayId == displayId) {
chaviw0c06c6e2019-01-09 13:27:07 -08003313 onFocusChangedLocked(oldFocusedWindowHandle, newFocusedWindowHandle);
Robert Carrf759f162018-11-13 12:57:11 -08003314 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003315 }
3316
Arthur Hungb92218b2018-08-14 12:00:21 +08003317 ssize_t stateIndex = mTouchStatesByDisplay.indexOfKey(displayId);
3318 if (stateIndex >= 0) {
3319 TouchState& state = mTouchStatesByDisplay.editValueAt(stateIndex);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003320 for (size_t i = 0; i < state.windows.size();) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003321 TouchedWindow& touchedWindow = state.windows[i];
Siarhei Vishniakou9224fba2018-08-13 18:55:08 +00003322 if (!hasWindowHandleLocked(touchedWindow.windowHandle)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003323#if DEBUG_FOCUS
Arthur Hung3b413f22018-10-26 18:05:34 +08003324 ALOGD("Touched window was removed: %s in display %" PRId32,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003325 touchedWindow.windowHandle->getName().c_str(), displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003326#endif
Jeff Brownf086ddb2014-02-11 14:28:48 -08003327 sp<InputChannel> touchedInputChannel =
Robert Carr5c8a0262018-10-03 16:30:44 -07003328 getInputChannelLocked(touchedWindow.windowHandle->getToken());
Yi Kong9b14ac62018-07-17 13:48:38 -07003329 if (touchedInputChannel != nullptr) {
Jeff Brownf086ddb2014-02-11 14:28:48 -08003330 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003331 "touched window was removed");
3332 synthesizeCancelationEventsForInputChannelLocked(touchedInputChannel,
3333 options);
Jeff Brownf086ddb2014-02-11 14:28:48 -08003334 }
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003335 state.windows.erase(state.windows.begin() + i);
Ivan Lozano96f12992017-11-09 14:45:38 -08003336 } else {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003337 ++i;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003338 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003339 }
3340 }
3341
3342 // Release information for windows that are no longer present.
3343 // This ensures that unused input channels are released promptly.
3344 // Otherwise, they might stick around until the window handle is destroyed
3345 // which might not happen until the next GC.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003346 for (const sp<InputWindowHandle>& oldWindowHandle : oldWindowHandles) {
Siarhei Vishniakou9224fba2018-08-13 18:55:08 +00003347 if (!hasWindowHandleLocked(oldWindowHandle)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003348#if DEBUG_FOCUS
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003349 ALOGD("Window went away: %s", oldWindowHandle->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08003350#endif
Arthur Hung3b413f22018-10-26 18:05:34 +08003351 oldWindowHandle->releaseChannel();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003352 }
3353 }
3354 } // release lock
3355
3356 // Wake up poll loop since it may need to make new input dispatching choices.
3357 mLooper->wake();
chaviw291d88a2019-02-14 10:33:58 -08003358
3359 if (setInputWindowsListener) {
3360 setInputWindowsListener->onSetInputWindowsFinished();
3361 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003362}
3363
3364void InputDispatcher::setFocusedApplication(
Tiger Huang721e26f2018-07-24 22:26:19 +08003365 int32_t displayId, const sp<InputApplicationHandle>& inputApplicationHandle) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003366#if DEBUG_FOCUS
Arthur Hung3b413f22018-10-26 18:05:34 +08003367 ALOGD("setFocusedApplication displayId=%" PRId32, displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003368#endif
3369 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003370 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003371
Tiger Huang721e26f2018-07-24 22:26:19 +08003372 sp<InputApplicationHandle> oldFocusedApplicationHandle =
3373 getValueByKey(mFocusedApplicationHandlesByDisplay, displayId);
Yi Kong9b14ac62018-07-17 13:48:38 -07003374 if (inputApplicationHandle != nullptr && inputApplicationHandle->updateInfo()) {
Tiger Huang721e26f2018-07-24 22:26:19 +08003375 if (oldFocusedApplicationHandle != inputApplicationHandle) {
3376 if (oldFocusedApplicationHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003377 resetANRTimeoutsLocked();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003378 }
Tiger Huang721e26f2018-07-24 22:26:19 +08003379 mFocusedApplicationHandlesByDisplay[displayId] = inputApplicationHandle;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003380 }
Tiger Huang721e26f2018-07-24 22:26:19 +08003381 } else if (oldFocusedApplicationHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003382 resetANRTimeoutsLocked();
Tiger Huang721e26f2018-07-24 22:26:19 +08003383 oldFocusedApplicationHandle.clear();
3384 mFocusedApplicationHandlesByDisplay.erase(displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003385 }
3386
3387#if DEBUG_FOCUS
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003388 // logDispatchStateLocked();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003389#endif
3390 } // release lock
3391
3392 // Wake up poll loop since it may need to make new input dispatching choices.
3393 mLooper->wake();
3394}
3395
Tiger Huang721e26f2018-07-24 22:26:19 +08003396/**
3397 * Sets the focused display, which is responsible for receiving focus-dispatched input events where
3398 * the display not specified.
3399 *
3400 * We track any unreleased events for each window. If a window loses the ability to receive the
3401 * released event, we will send a cancel event to it. So when the focused display is changed, we
3402 * cancel all the unreleased display-unspecified events for the focused window on the old focused
3403 * display. The display-specified events won't be affected.
3404 */
3405void InputDispatcher::setFocusedDisplay(int32_t displayId) {
3406#if DEBUG_FOCUS
3407 ALOGD("setFocusedDisplay displayId=%" PRId32, displayId);
3408#endif
3409 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003410 std::scoped_lock _l(mLock);
Tiger Huang721e26f2018-07-24 22:26:19 +08003411
3412 if (mFocusedDisplayId != displayId) {
3413 sp<InputWindowHandle> oldFocusedWindowHandle =
3414 getValueByKey(mFocusedWindowHandlesByDisplay, mFocusedDisplayId);
3415 if (oldFocusedWindowHandle != nullptr) {
Robert Carr5c8a0262018-10-03 16:30:44 -07003416 sp<InputChannel> inputChannel =
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003417 getInputChannelLocked(oldFocusedWindowHandle->getToken());
Tiger Huang721e26f2018-07-24 22:26:19 +08003418 if (inputChannel != nullptr) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003419 CancelationOptions
3420 options(CancelationOptions::CANCEL_NON_POINTER_EVENTS,
3421 "The display which contains this window no longer has focus.");
Michael Wright3dd60e22019-03-27 22:06:44 +00003422 options.displayId = ADISPLAY_ID_NONE;
Tiger Huang721e26f2018-07-24 22:26:19 +08003423 synthesizeCancelationEventsForInputChannelLocked(inputChannel, options);
3424 }
3425 }
3426 mFocusedDisplayId = displayId;
3427
3428 // Sanity check
3429 sp<InputWindowHandle> newFocusedWindowHandle =
3430 getValueByKey(mFocusedWindowHandlesByDisplay, displayId);
chaviw0c06c6e2019-01-09 13:27:07 -08003431 onFocusChangedLocked(oldFocusedWindowHandle, newFocusedWindowHandle);
Robert Carrf759f162018-11-13 12:57:11 -08003432
Tiger Huang721e26f2018-07-24 22:26:19 +08003433 if (newFocusedWindowHandle == nullptr) {
3434 ALOGW("Focused display #%" PRId32 " does not have a focused window.", displayId);
3435 if (!mFocusedWindowHandlesByDisplay.empty()) {
3436 ALOGE("But another display has a focused window:");
3437 for (auto& it : mFocusedWindowHandlesByDisplay) {
3438 const int32_t displayId = it.first;
3439 const sp<InputWindowHandle>& windowHandle = it.second;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003440 ALOGE("Display #%" PRId32 " has focused window: '%s'\n", displayId,
3441 windowHandle->getName().c_str());
Tiger Huang721e26f2018-07-24 22:26:19 +08003442 }
3443 }
3444 }
3445 }
3446
3447#if DEBUG_FOCUS
3448 logDispatchStateLocked();
3449#endif
3450 } // release lock
3451
3452 // Wake up poll loop since it may need to make new input dispatching choices.
3453 mLooper->wake();
3454}
3455
Michael Wrightd02c5b62014-02-10 15:10:22 -08003456void InputDispatcher::setInputDispatchMode(bool enabled, bool frozen) {
3457#if DEBUG_FOCUS
3458 ALOGD("setInputDispatchMode: enabled=%d, frozen=%d", enabled, frozen);
3459#endif
3460
3461 bool changed;
3462 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003463 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003464
3465 if (mDispatchEnabled != enabled || mDispatchFrozen != frozen) {
3466 if (mDispatchFrozen && !frozen) {
3467 resetANRTimeoutsLocked();
3468 }
3469
3470 if (mDispatchEnabled && !enabled) {
3471 resetAndDropEverythingLocked("dispatcher is being disabled");
3472 }
3473
3474 mDispatchEnabled = enabled;
3475 mDispatchFrozen = frozen;
3476 changed = true;
3477 } else {
3478 changed = false;
3479 }
3480
3481#if DEBUG_FOCUS
Tiger Huang721e26f2018-07-24 22:26:19 +08003482 logDispatchStateLocked();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003483#endif
3484 } // release lock
3485
3486 if (changed) {
3487 // Wake up poll loop since it may need to make new input dispatching choices.
3488 mLooper->wake();
3489 }
3490}
3491
3492void InputDispatcher::setInputFilterEnabled(bool enabled) {
3493#if DEBUG_FOCUS
3494 ALOGD("setInputFilterEnabled: enabled=%d", enabled);
3495#endif
3496
3497 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003498 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003499
3500 if (mInputFilterEnabled == enabled) {
3501 return;
3502 }
3503
3504 mInputFilterEnabled = enabled;
3505 resetAndDropEverythingLocked("input filter is being enabled or disabled");
3506 } // release lock
3507
3508 // Wake up poll loop since there might be work to do to drop everything.
3509 mLooper->wake();
3510}
3511
chaviwfbe5d9c2018-12-26 12:23:37 -08003512bool InputDispatcher::transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) {
3513 if (fromToken == toToken) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003514#if DEBUG_FOCUS
chaviwfbe5d9c2018-12-26 12:23:37 -08003515 ALOGD("Trivial transfer to same window.");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003516#endif
chaviwfbe5d9c2018-12-26 12:23:37 -08003517 return true;
3518 }
3519
Michael Wrightd02c5b62014-02-10 15:10:22 -08003520 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003521 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003522
chaviwfbe5d9c2018-12-26 12:23:37 -08003523 sp<InputWindowHandle> fromWindowHandle = getWindowHandleLocked(fromToken);
3524 sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(toToken);
Yi Kong9b14ac62018-07-17 13:48:38 -07003525 if (fromWindowHandle == nullptr || toWindowHandle == nullptr) {
chaviwfbe5d9c2018-12-26 12:23:37 -08003526 ALOGW("Cannot transfer focus because from or to window not found.");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003527 return false;
3528 }
chaviw4f2dd402018-12-26 15:30:27 -08003529#if DEBUG_FOCUS
3530 ALOGD("transferTouchFocus: fromWindowHandle=%s, toWindowHandle=%s",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003531 fromWindowHandle->getName().c_str(), toWindowHandle->getName().c_str());
chaviw4f2dd402018-12-26 15:30:27 -08003532#endif
Michael Wrightd02c5b62014-02-10 15:10:22 -08003533 if (fromWindowHandle->getInfo()->displayId != toWindowHandle->getInfo()->displayId) {
3534#if DEBUG_FOCUS
3535 ALOGD("Cannot transfer focus because windows are on different displays.");
3536#endif
3537 return false;
3538 }
3539
3540 bool found = false;
Jeff Brownf086ddb2014-02-11 14:28:48 -08003541 for (size_t d = 0; d < mTouchStatesByDisplay.size(); d++) {
3542 TouchState& state = mTouchStatesByDisplay.editValueAt(d);
3543 for (size_t i = 0; i < state.windows.size(); i++) {
3544 const TouchedWindow& touchedWindow = state.windows[i];
3545 if (touchedWindow.windowHandle == fromWindowHandle) {
3546 int32_t oldTargetFlags = touchedWindow.targetFlags;
3547 BitSet32 pointerIds = touchedWindow.pointerIds;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003548
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003549 state.windows.erase(state.windows.begin() + i);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003550
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003551 int32_t newTargetFlags = oldTargetFlags &
3552 (InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_SPLIT |
3553 InputTarget::FLAG_DISPATCH_AS_IS);
Jeff Brownf086ddb2014-02-11 14:28:48 -08003554 state.addOrUpdateWindow(toWindowHandle, newTargetFlags, pointerIds);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003555
Jeff Brownf086ddb2014-02-11 14:28:48 -08003556 found = true;
3557 goto Found;
3558 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003559 }
3560 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003561 Found:
Michael Wrightd02c5b62014-02-10 15:10:22 -08003562
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003563 if (!found) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003564#if DEBUG_FOCUS
3565 ALOGD("Focus transfer failed because from window did not have focus.");
3566#endif
3567 return false;
3568 }
3569
chaviwfbe5d9c2018-12-26 12:23:37 -08003570 sp<InputChannel> fromChannel = getInputChannelLocked(fromToken);
3571 sp<InputChannel> toChannel = getInputChannelLocked(toToken);
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003572 sp<Connection> fromConnection = getConnectionLocked(fromChannel);
3573 sp<Connection> toConnection = getConnectionLocked(toChannel);
3574 if (fromConnection != nullptr && toConnection != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003575 fromConnection->inputState.copyPointerStateTo(toConnection->inputState);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003576 CancelationOptions
3577 options(CancelationOptions::CANCEL_POINTER_EVENTS,
3578 "transferring touch focus from this window to another window");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003579 synthesizeCancelationEventsForConnectionLocked(fromConnection, options);
3580 }
3581
3582#if DEBUG_FOCUS
3583 logDispatchStateLocked();
3584#endif
3585 } // release lock
3586
3587 // Wake up poll loop since it may need to make new input dispatching choices.
3588 mLooper->wake();
3589 return true;
3590}
3591
3592void InputDispatcher::resetAndDropEverythingLocked(const char* reason) {
3593#if DEBUG_FOCUS
3594 ALOGD("Resetting and dropping all events (%s).", reason);
3595#endif
3596
3597 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS, reason);
3598 synthesizeCancelationEventsForAllConnectionsLocked(options);
3599
3600 resetKeyRepeatLocked();
3601 releasePendingEventLocked();
3602 drainInboundQueueLocked();
3603 resetANRTimeoutsLocked();
3604
Jeff Brownf086ddb2014-02-11 14:28:48 -08003605 mTouchStatesByDisplay.clear();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003606 mLastHoverWindowHandle.clear();
Michael Wright78f24442014-08-06 15:55:28 -07003607 mReplacedKeys.clear();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003608}
3609
3610void InputDispatcher::logDispatchStateLocked() {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003611 std::string dump;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003612 dumpDispatchStateLocked(dump);
3613
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003614 std::istringstream stream(dump);
3615 std::string line;
3616
3617 while (std::getline(stream, line, '\n')) {
3618 ALOGD("%s", line.c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08003619 }
3620}
3621
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003622void InputDispatcher::dumpDispatchStateLocked(std::string& dump) {
Siarhei Vishniakou043a3ec2019-05-01 11:30:46 -07003623 dump += StringPrintf(INDENT "DispatchEnabled: %s\n", toString(mDispatchEnabled));
3624 dump += StringPrintf(INDENT "DispatchFrozen: %s\n", toString(mDispatchFrozen));
3625 dump += StringPrintf(INDENT "InputFilterEnabled: %s\n", toString(mInputFilterEnabled));
Tiger Huang721e26f2018-07-24 22:26:19 +08003626 dump += StringPrintf(INDENT "FocusedDisplayId: %" PRId32 "\n", mFocusedDisplayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003627
Tiger Huang721e26f2018-07-24 22:26:19 +08003628 if (!mFocusedApplicationHandlesByDisplay.empty()) {
3629 dump += StringPrintf(INDENT "FocusedApplications:\n");
3630 for (auto& it : mFocusedApplicationHandlesByDisplay) {
3631 const int32_t displayId = it.first;
3632 const sp<InputApplicationHandle>& applicationHandle = it.second;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003633 dump += StringPrintf(INDENT2 "displayId=%" PRId32
3634 ", name='%s', dispatchingTimeout=%0.3fms\n",
3635 displayId, applicationHandle->getName().c_str(),
3636 applicationHandle->getDispatchingTimeout(
3637 DEFAULT_INPUT_DISPATCHING_TIMEOUT) /
3638 1000000.0);
Tiger Huang721e26f2018-07-24 22:26:19 +08003639 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003640 } else {
Tiger Huang721e26f2018-07-24 22:26:19 +08003641 dump += StringPrintf(INDENT "FocusedApplications: <none>\n");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003642 }
Tiger Huang721e26f2018-07-24 22:26:19 +08003643
3644 if (!mFocusedWindowHandlesByDisplay.empty()) {
3645 dump += StringPrintf(INDENT "FocusedWindows:\n");
3646 for (auto& it : mFocusedWindowHandlesByDisplay) {
3647 const int32_t displayId = it.first;
3648 const sp<InputWindowHandle>& windowHandle = it.second;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003649 dump += StringPrintf(INDENT2 "displayId=%" PRId32 ", name='%s'\n", displayId,
3650 windowHandle->getName().c_str());
Tiger Huang721e26f2018-07-24 22:26:19 +08003651 }
3652 } else {
3653 dump += StringPrintf(INDENT "FocusedWindows: <none>\n");
3654 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003655
Jeff Brownf086ddb2014-02-11 14:28:48 -08003656 if (!mTouchStatesByDisplay.isEmpty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003657 dump += StringPrintf(INDENT "TouchStatesByDisplay:\n");
Jeff Brownf086ddb2014-02-11 14:28:48 -08003658 for (size_t i = 0; i < mTouchStatesByDisplay.size(); i++) {
3659 const TouchState& state = mTouchStatesByDisplay.valueAt(i);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003660 dump += StringPrintf(INDENT2 "%d: down=%s, split=%s, deviceId=%d, source=0x%08x\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003661 state.displayId, toString(state.down), toString(state.split),
3662 state.deviceId, state.source);
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003663 if (!state.windows.empty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003664 dump += INDENT3 "Windows:\n";
Jeff Brownf086ddb2014-02-11 14:28:48 -08003665 for (size_t i = 0; i < state.windows.size(); i++) {
3666 const TouchedWindow& touchedWindow = state.windows[i];
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003667 dump += StringPrintf(INDENT4
3668 "%zu: name='%s', pointerIds=0x%0x, targetFlags=0x%x\n",
3669 i, touchedWindow.windowHandle->getName().c_str(),
3670 touchedWindow.pointerIds.value, touchedWindow.targetFlags);
Jeff Brownf086ddb2014-02-11 14:28:48 -08003671 }
3672 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003673 dump += INDENT3 "Windows: <none>\n";
Jeff Brownf086ddb2014-02-11 14:28:48 -08003674 }
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003675 if (!state.portalWindows.empty()) {
Tiger Huang85b8c5e2019-01-17 18:34:54 +08003676 dump += INDENT3 "Portal windows:\n";
3677 for (size_t i = 0; i < state.portalWindows.size(); i++) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003678 const sp<InputWindowHandle> portalWindowHandle = state.portalWindows[i];
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003679 dump += StringPrintf(INDENT4 "%zu: name='%s'\n", i,
3680 portalWindowHandle->getName().c_str());
Tiger Huang85b8c5e2019-01-17 18:34:54 +08003681 }
3682 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003683 }
3684 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003685 dump += INDENT "TouchStates: <no displays touched>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003686 }
3687
Arthur Hungb92218b2018-08-14 12:00:21 +08003688 if (!mWindowHandlesByDisplay.empty()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003689 for (auto& it : mWindowHandlesByDisplay) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003690 const std::vector<sp<InputWindowHandle>> windowHandles = it.second;
Arthur Hung3b413f22018-10-26 18:05:34 +08003691 dump += StringPrintf(INDENT "Display: %" PRId32 "\n", it.first);
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003692 if (!windowHandles.empty()) {
Arthur Hungb92218b2018-08-14 12:00:21 +08003693 dump += INDENT2 "Windows:\n";
3694 for (size_t i = 0; i < windowHandles.size(); i++) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003695 const sp<InputWindowHandle>& windowHandle = windowHandles[i];
Arthur Hungb92218b2018-08-14 12:00:21 +08003696 const InputWindowInfo* windowInfo = windowHandle->getInfo();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003697
Arthur Hungb92218b2018-08-14 12:00:21 +08003698 dump += StringPrintf(INDENT3 "%zu: name='%s', displayId=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003699 "portalToDisplayId=%d, paused=%s, hasFocus=%s, "
3700 "hasWallpaper=%s, "
3701 "visible=%s, canReceiveKeys=%s, flags=0x%08x, "
3702 "type=0x%08x, layer=%d, "
3703 "frame=[%d,%d][%d,%d], globalScale=%f, "
3704 "windowScale=(%f,%f), "
3705 "touchableRegion=",
3706 i, windowInfo->name.c_str(), windowInfo->displayId,
3707 windowInfo->portalToDisplayId,
3708 toString(windowInfo->paused),
3709 toString(windowInfo->hasFocus),
3710 toString(windowInfo->hasWallpaper),
3711 toString(windowInfo->visible),
3712 toString(windowInfo->canReceiveKeys),
3713 windowInfo->layoutParamsFlags,
3714 windowInfo->layoutParamsType, windowInfo->layer,
3715 windowInfo->frameLeft, windowInfo->frameTop,
3716 windowInfo->frameRight, windowInfo->frameBottom,
3717 windowInfo->globalScaleFactor, windowInfo->windowXScale,
3718 windowInfo->windowYScale);
Arthur Hungb92218b2018-08-14 12:00:21 +08003719 dumpRegion(dump, windowInfo->touchableRegion);
3720 dump += StringPrintf(", inputFeatures=0x%08x", windowInfo->inputFeatures);
3721 dump += StringPrintf(", ownerPid=%d, ownerUid=%d, dispatchingTimeout=%0.3fms\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003722 windowInfo->ownerPid, windowInfo->ownerUid,
3723 windowInfo->dispatchingTimeout / 1000000.0);
Arthur Hungb92218b2018-08-14 12:00:21 +08003724 }
3725 } else {
3726 dump += INDENT2 "Windows: <none>\n";
3727 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003728 }
3729 } else {
Arthur Hungb92218b2018-08-14 12:00:21 +08003730 dump += INDENT "Displays: <none>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003731 }
3732
Michael Wright3dd60e22019-03-27 22:06:44 +00003733 if (!mGlobalMonitorsByDisplay.empty() || !mGestureMonitorsByDisplay.empty()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003734 for (auto& it : mGlobalMonitorsByDisplay) {
Michael Wright3dd60e22019-03-27 22:06:44 +00003735 const std::vector<Monitor>& monitors = it.second;
3736 dump += StringPrintf(INDENT "Global monitors in display %" PRId32 ":\n", it.first);
3737 dumpMonitors(dump, monitors);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003738 }
3739 for (auto& it : mGestureMonitorsByDisplay) {
Michael Wright3dd60e22019-03-27 22:06:44 +00003740 const std::vector<Monitor>& monitors = it.second;
3741 dump += StringPrintf(INDENT "Gesture monitors in display %" PRId32 ":\n", it.first);
3742 dumpMonitors(dump, monitors);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003743 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003744 } else {
Michael Wright3dd60e22019-03-27 22:06:44 +00003745 dump += INDENT "Monitors: <none>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003746 }
3747
3748 nsecs_t currentTime = now();
3749
3750 // Dump recently dispatched or dropped events from oldest to newest.
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07003751 if (!mRecentQueue.empty()) {
3752 dump += StringPrintf(INDENT "RecentQueue: length=%zu\n", mRecentQueue.size());
3753 for (EventEntry* entry : mRecentQueue) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003754 dump += INDENT2;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003755 entry->appendDescription(dump);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003756 dump += StringPrintf(", age=%0.1fms\n", (currentTime - entry->eventTime) * 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003757 }
3758 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003759 dump += INDENT "RecentQueue: <empty>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003760 }
3761
3762 // Dump event currently being dispatched.
3763 if (mPendingEvent) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003764 dump += INDENT "PendingEvent:\n";
3765 dump += INDENT2;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003766 mPendingEvent->appendDescription(dump);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003767 dump += StringPrintf(", age=%0.1fms\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003768 (currentTime - mPendingEvent->eventTime) * 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003769 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003770 dump += INDENT "PendingEvent: <none>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003771 }
3772
3773 // Dump inbound events from oldest to newest.
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07003774 if (!mInboundQueue.empty()) {
3775 dump += StringPrintf(INDENT "InboundQueue: length=%zu\n", mInboundQueue.size());
3776 for (EventEntry* entry : mInboundQueue) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003777 dump += INDENT2;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003778 entry->appendDescription(dump);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003779 dump += StringPrintf(", age=%0.1fms\n", (currentTime - entry->eventTime) * 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003780 }
3781 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003782 dump += INDENT "InboundQueue: <empty>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003783 }
3784
Michael Wright78f24442014-08-06 15:55:28 -07003785 if (!mReplacedKeys.isEmpty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003786 dump += INDENT "ReplacedKeys:\n";
Michael Wright78f24442014-08-06 15:55:28 -07003787 for (size_t i = 0; i < mReplacedKeys.size(); i++) {
3788 const KeyReplacement& replacement = mReplacedKeys.keyAt(i);
3789 int32_t newKeyCode = mReplacedKeys.valueAt(i);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003790 dump += StringPrintf(INDENT2 "%zu: originalKeyCode=%d, deviceId=%d, newKeyCode=%d\n", i,
3791 replacement.keyCode, replacement.deviceId, newKeyCode);
Michael Wright78f24442014-08-06 15:55:28 -07003792 }
3793 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003794 dump += INDENT "ReplacedKeys: <empty>\n";
Michael Wright78f24442014-08-06 15:55:28 -07003795 }
3796
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003797 if (!mConnectionsByFd.empty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003798 dump += INDENT "Connections:\n";
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003799 for (const auto& pair : mConnectionsByFd) {
3800 const sp<Connection>& connection = pair.second;
3801 dump += StringPrintf(INDENT2 "%i: channelName='%s', windowName='%s', "
3802 "status=%s, monitor=%s, inputPublisherBlocked=%s\n",
3803 pair.first, connection->getInputChannelName().c_str(),
3804 connection->getWindowName().c_str(), connection->getStatusLabel(),
3805 toString(connection->monitor),
3806 toString(connection->inputPublisherBlocked));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003807
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07003808 if (!connection->outboundQueue.empty()) {
3809 dump += StringPrintf(INDENT3 "OutboundQueue: length=%zu\n",
3810 connection->outboundQueue.size());
3811 for (DispatchEntry* entry : connection->outboundQueue) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003812 dump.append(INDENT4);
3813 entry->eventEntry->appendDescription(dump);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003814 dump += StringPrintf(", targetFlags=0x%08x, resolvedAction=%d, age=%0.1fms\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003815 entry->targetFlags, entry->resolvedAction,
3816 (currentTime - entry->eventEntry->eventTime) * 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003817 }
3818 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003819 dump += INDENT3 "OutboundQueue: <empty>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003820 }
3821
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07003822 if (!connection->waitQueue.empty()) {
3823 dump += StringPrintf(INDENT3 "WaitQueue: length=%zu\n",
3824 connection->waitQueue.size());
3825 for (DispatchEntry* entry : connection->waitQueue) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003826 dump += INDENT4;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003827 entry->eventEntry->appendDescription(dump);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003828 dump += StringPrintf(", targetFlags=0x%08x, resolvedAction=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003829 "age=%0.1fms, wait=%0.1fms\n",
3830 entry->targetFlags, entry->resolvedAction,
3831 (currentTime - entry->eventEntry->eventTime) * 0.000001f,
3832 (currentTime - entry->deliveryTime) * 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003833 }
3834 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003835 dump += INDENT3 "WaitQueue: <empty>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003836 }
3837 }
3838 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003839 dump += INDENT "Connections: <none>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003840 }
3841
3842 if (isAppSwitchPendingLocked()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003843 dump += StringPrintf(INDENT "AppSwitch: pending, due in %0.1fms\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003844 (mAppSwitchDueTime - now()) / 1000000.0);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003845 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003846 dump += INDENT "AppSwitch: not pending\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003847 }
3848
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003849 dump += INDENT "Configuration:\n";
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003850 dump += StringPrintf(INDENT2 "KeyRepeatDelay: %0.1fms\n", mConfig.keyRepeatDelay * 0.000001f);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003851 dump += StringPrintf(INDENT2 "KeyRepeatTimeout: %0.1fms\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003852 mConfig.keyRepeatTimeout * 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003853}
3854
Michael Wright3dd60e22019-03-27 22:06:44 +00003855void InputDispatcher::dumpMonitors(std::string& dump, const std::vector<Monitor>& monitors) {
3856 const size_t numMonitors = monitors.size();
3857 for (size_t i = 0; i < numMonitors; i++) {
3858 const Monitor& monitor = monitors[i];
3859 const sp<InputChannel>& channel = monitor.inputChannel;
3860 dump += StringPrintf(INDENT2 "%zu: '%s', ", i, channel->getName().c_str());
3861 dump += "\n";
3862 }
3863}
3864
3865status_t InputDispatcher::registerInputChannel(const sp<InputChannel>& inputChannel,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003866 int32_t displayId) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003867#if DEBUG_REGISTRATION
Arthur Hung2fbf37f2018-09-13 18:16:41 +08003868 ALOGD("channel '%s' ~ registerInputChannel - displayId=%" PRId32,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003869 inputChannel->getName().c_str(), displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003870#endif
3871
3872 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003873 std::scoped_lock _l(mLock);
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003874 sp<Connection> existingConnection = getConnectionLocked(inputChannel);
3875 if (existingConnection != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003876 ALOGW("Attempted to register already registered input channel '%s'",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003877 inputChannel->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08003878 return BAD_VALUE;
3879 }
3880
Michael Wright3dd60e22019-03-27 22:06:44 +00003881 sp<Connection> connection = new Connection(inputChannel, false /*monitor*/);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003882
3883 int fd = inputChannel->getFd();
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003884 mConnectionsByFd[fd] = connection;
Robert Carr5c8a0262018-10-03 16:30:44 -07003885 mInputChannelsByToken[inputChannel->getToken()] = inputChannel;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003886
Michael Wrightd02c5b62014-02-10 15:10:22 -08003887 mLooper->addFd(fd, 0, ALOOPER_EVENT_INPUT, handleReceiveCallback, this);
3888 } // release lock
3889
3890 // Wake the looper because some connections have changed.
3891 mLooper->wake();
3892 return OK;
3893}
3894
Michael Wright3dd60e22019-03-27 22:06:44 +00003895status_t InputDispatcher::registerInputMonitor(const sp<InputChannel>& inputChannel,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003896 int32_t displayId, bool isGestureMonitor) {
Michael Wright3dd60e22019-03-27 22:06:44 +00003897 { // acquire lock
3898 std::scoped_lock _l(mLock);
3899
3900 if (displayId < 0) {
3901 ALOGW("Attempted to register input monitor without a specified display.");
3902 return BAD_VALUE;
3903 }
3904
3905 if (inputChannel->getToken() == nullptr) {
3906 ALOGW("Attempted to register input monitor without an identifying token.");
3907 return BAD_VALUE;
3908 }
3909
3910 sp<Connection> connection = new Connection(inputChannel, true /*monitor*/);
3911
3912 const int fd = inputChannel->getFd();
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003913 mConnectionsByFd[fd] = connection;
Michael Wright3dd60e22019-03-27 22:06:44 +00003914 mInputChannelsByToken[inputChannel->getToken()] = inputChannel;
3915
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003916 auto& monitorsByDisplay =
3917 isGestureMonitor ? mGestureMonitorsByDisplay : mGlobalMonitorsByDisplay;
Michael Wright3dd60e22019-03-27 22:06:44 +00003918 monitorsByDisplay[displayId].emplace_back(inputChannel);
3919
3920 mLooper->addFd(fd, 0, ALOOPER_EVENT_INPUT, handleReceiveCallback, this);
Michael Wright3dd60e22019-03-27 22:06:44 +00003921 }
3922 // Wake the looper because some connections have changed.
3923 mLooper->wake();
3924 return OK;
3925}
3926
Michael Wrightd02c5b62014-02-10 15:10:22 -08003927status_t InputDispatcher::unregisterInputChannel(const sp<InputChannel>& inputChannel) {
3928#if DEBUG_REGISTRATION
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003929 ALOGD("channel '%s' ~ unregisterInputChannel", inputChannel->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08003930#endif
3931
3932 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003933 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003934
3935 status_t status = unregisterInputChannelLocked(inputChannel, false /*notify*/);
3936 if (status) {
3937 return status;
3938 }
3939 } // release lock
3940
3941 // Wake the poll loop because removing the connection may have changed the current
3942 // synchronization state.
3943 mLooper->wake();
3944 return OK;
3945}
3946
3947status_t InputDispatcher::unregisterInputChannelLocked(const sp<InputChannel>& inputChannel,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003948 bool notify) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003949 sp<Connection> connection = getConnectionLocked(inputChannel);
3950 if (connection == nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003951 ALOGW("Attempted to unregister already unregistered input channel '%s'",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003952 inputChannel->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08003953 return BAD_VALUE;
3954 }
3955
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003956 const bool removed = removeByValue(mConnectionsByFd, connection);
3957 ALOG_ASSERT(removed);
Robert Carr5c8a0262018-10-03 16:30:44 -07003958 mInputChannelsByToken.erase(inputChannel->getToken());
3959
Michael Wrightd02c5b62014-02-10 15:10:22 -08003960 if (connection->monitor) {
3961 removeMonitorChannelLocked(inputChannel);
3962 }
3963
3964 mLooper->removeFd(inputChannel->getFd());
3965
3966 nsecs_t currentTime = now();
3967 abortBrokenDispatchCycleLocked(currentTime, connection, notify);
3968
3969 connection->status = Connection::STATUS_ZOMBIE;
3970 return OK;
3971}
3972
3973void InputDispatcher::removeMonitorChannelLocked(const sp<InputChannel>& inputChannel) {
Michael Wright3dd60e22019-03-27 22:06:44 +00003974 removeMonitorChannelLocked(inputChannel, mGlobalMonitorsByDisplay);
3975 removeMonitorChannelLocked(inputChannel, mGestureMonitorsByDisplay);
3976}
3977
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003978void InputDispatcher::removeMonitorChannelLocked(
3979 const sp<InputChannel>& inputChannel,
Michael Wright3dd60e22019-03-27 22:06:44 +00003980 std::unordered_map<int32_t, std::vector<Monitor>>& monitorsByDisplay) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003981 for (auto it = monitorsByDisplay.begin(); it != monitorsByDisplay.end();) {
Michael Wright3dd60e22019-03-27 22:06:44 +00003982 std::vector<Monitor>& monitors = it->second;
3983 const size_t numMonitors = monitors.size();
3984 for (size_t i = 0; i < numMonitors; i++) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003985 if (monitors[i].inputChannel == inputChannel) {
3986 monitors.erase(monitors.begin() + i);
3987 break;
3988 }
Arthur Hung2fbf37f2018-09-13 18:16:41 +08003989 }
Michael Wright3dd60e22019-03-27 22:06:44 +00003990 if (monitors.empty()) {
3991 it = monitorsByDisplay.erase(it);
Arthur Hung2fbf37f2018-09-13 18:16:41 +08003992 } else {
3993 ++it;
3994 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003995 }
3996}
3997
Michael Wright3dd60e22019-03-27 22:06:44 +00003998status_t InputDispatcher::pilferPointers(const sp<IBinder>& token) {
3999 { // acquire lock
4000 std::scoped_lock _l(mLock);
4001 std::optional<int32_t> foundDisplayId = findGestureMonitorDisplayByTokenLocked(token);
4002
4003 if (!foundDisplayId) {
4004 ALOGW("Attempted to pilfer pointers from an un-registered monitor or invalid token");
4005 return BAD_VALUE;
4006 }
4007 int32_t displayId = foundDisplayId.value();
4008
4009 ssize_t stateIndex = mTouchStatesByDisplay.indexOfKey(displayId);
4010 if (stateIndex < 0) {
4011 ALOGW("Failed to pilfer pointers: no pointers on display %" PRId32 ".", displayId);
4012 return BAD_VALUE;
4013 }
4014
4015 TouchState& state = mTouchStatesByDisplay.editValueAt(stateIndex);
4016 std::optional<int32_t> foundDeviceId;
4017 for (const TouchedMonitor& touchedMonitor : state.gestureMonitors) {
4018 if (touchedMonitor.monitor.inputChannel->getToken() == token) {
4019 foundDeviceId = state.deviceId;
4020 }
4021 }
4022 if (!foundDeviceId || !state.down) {
4023 ALOGW("Attempted to pilfer points from a monitor without any on-going pointer streams."
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004024 " Ignoring.");
Michael Wright3dd60e22019-03-27 22:06:44 +00004025 return BAD_VALUE;
4026 }
4027 int32_t deviceId = foundDeviceId.value();
4028
4029 // Send cancel events to all the input channels we're stealing from.
4030 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004031 "gesture monitor stole pointer stream");
Michael Wright3dd60e22019-03-27 22:06:44 +00004032 options.deviceId = deviceId;
4033 options.displayId = displayId;
4034 for (const TouchedWindow& window : state.windows) {
4035 sp<InputChannel> channel = getInputChannelLocked(window.windowHandle->getToken());
4036 synthesizeCancelationEventsForInputChannelLocked(channel, options);
4037 }
4038 // Then clear the current touch state so we stop dispatching to them as well.
4039 state.filterNonMonitors();
4040 }
4041 return OK;
4042}
4043
Michael Wright3dd60e22019-03-27 22:06:44 +00004044std::optional<int32_t> InputDispatcher::findGestureMonitorDisplayByTokenLocked(
4045 const sp<IBinder>& token) {
4046 for (const auto& it : mGestureMonitorsByDisplay) {
4047 const std::vector<Monitor>& monitors = it.second;
4048 for (const Monitor& monitor : monitors) {
4049 if (monitor.inputChannel->getToken() == token) {
4050 return it.first;
4051 }
4052 }
4053 }
4054 return std::nullopt;
4055}
4056
Garfield Tane84e6f92019-08-29 17:28:41 -07004057sp<Connection> InputDispatcher::getConnectionLocked(const sp<InputChannel>& inputChannel) {
Robert Carr4e670e52018-08-15 13:26:12 -07004058 if (inputChannel == nullptr) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004059 return nullptr;
Arthur Hung3b413f22018-10-26 18:05:34 +08004060 }
4061
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004062 for (const auto& pair : mConnectionsByFd) {
4063 sp<Connection> connection = pair.second;
Robert Carr4e670e52018-08-15 13:26:12 -07004064 if (connection->inputChannel->getToken() == inputChannel->getToken()) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004065 return connection;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004066 }
4067 }
Robert Carr4e670e52018-08-15 13:26:12 -07004068
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004069 return nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004070}
4071
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004072void InputDispatcher::onDispatchCycleFinishedLocked(nsecs_t currentTime,
4073 const sp<Connection>& connection, uint32_t seq,
4074 bool handled) {
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004075 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
4076 &InputDispatcher::doDispatchCycleFinishedLockedInterruptible);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004077 commandEntry->connection = connection;
4078 commandEntry->eventTime = currentTime;
4079 commandEntry->seq = seq;
4080 commandEntry->handled = handled;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004081 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004082}
4083
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004084void InputDispatcher::onDispatchCycleBrokenLocked(nsecs_t currentTime,
4085 const sp<Connection>& connection) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004086 ALOGE("channel '%s' ~ Channel is unrecoverably broken and will be disposed!",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004087 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004088
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004089 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
4090 &InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004091 commandEntry->connection = connection;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004092 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004093}
4094
chaviw0c06c6e2019-01-09 13:27:07 -08004095void InputDispatcher::onFocusChangedLocked(const sp<InputWindowHandle>& oldFocus,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004096 const sp<InputWindowHandle>& newFocus) {
chaviw0c06c6e2019-01-09 13:27:07 -08004097 sp<IBinder> oldToken = oldFocus != nullptr ? oldFocus->getToken() : nullptr;
4098 sp<IBinder> newToken = newFocus != nullptr ? newFocus->getToken() : nullptr;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004099 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
4100 &InputDispatcher::doNotifyFocusChangedLockedInterruptible);
chaviw0c06c6e2019-01-09 13:27:07 -08004101 commandEntry->oldToken = oldToken;
4102 commandEntry->newToken = newToken;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004103 postCommandLocked(std::move(commandEntry));
Robert Carrf759f162018-11-13 12:57:11 -08004104}
4105
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004106void InputDispatcher::onANRLocked(nsecs_t currentTime,
4107 const sp<InputApplicationHandle>& applicationHandle,
4108 const sp<InputWindowHandle>& windowHandle, nsecs_t eventTime,
4109 nsecs_t waitStartTime, const char* reason) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004110 float dispatchLatency = (currentTime - eventTime) * 0.000001f;
4111 float waitDuration = (currentTime - waitStartTime) * 0.000001f;
4112 ALOGI("Application is not responding: %s. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004113 "It has been %0.1fms since event, %0.1fms since wait started. Reason: %s",
4114 getApplicationWindowLabel(applicationHandle, windowHandle).c_str(), dispatchLatency,
4115 waitDuration, reason);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004116
4117 // Capture a record of the InputDispatcher state at the time of the ANR.
Yi Kong9b14ac62018-07-17 13:48:38 -07004118 time_t t = time(nullptr);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004119 struct tm tm;
4120 localtime_r(&t, &tm);
4121 char timestr[64];
4122 strftime(timestr, sizeof(timestr), "%F %T", &tm);
4123 mLastANRState.clear();
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004124 mLastANRState += INDENT "ANR:\n";
4125 mLastANRState += StringPrintf(INDENT2 "Time: %s\n", timestr);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004126 mLastANRState +=
4127 StringPrintf(INDENT2 "Window: %s\n",
4128 getApplicationWindowLabel(applicationHandle, windowHandle).c_str());
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004129 mLastANRState += StringPrintf(INDENT2 "DispatchLatency: %0.1fms\n", dispatchLatency);
4130 mLastANRState += StringPrintf(INDENT2 "WaitDuration: %0.1fms\n", waitDuration);
4131 mLastANRState += StringPrintf(INDENT2 "Reason: %s\n", reason);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004132 dumpDispatchStateLocked(mLastANRState);
4133
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004134 std::unique_ptr<CommandEntry> commandEntry =
4135 std::make_unique<CommandEntry>(&InputDispatcher::doNotifyANRLockedInterruptible);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004136 commandEntry->inputApplicationHandle = applicationHandle;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004137 commandEntry->inputChannel =
4138 windowHandle != nullptr ? getInputChannelLocked(windowHandle->getToken()) : nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004139 commandEntry->reason = reason;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004140 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004141}
4142
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004143void InputDispatcher::doNotifyConfigurationChangedLockedInterruptible(CommandEntry* commandEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004144 mLock.unlock();
4145
4146 mPolicy->notifyConfigurationChanged(commandEntry->eventTime);
4147
4148 mLock.lock();
4149}
4150
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004151void InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible(CommandEntry* commandEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004152 sp<Connection> connection = commandEntry->connection;
4153
4154 if (connection->status != Connection::STATUS_ZOMBIE) {
4155 mLock.unlock();
4156
Robert Carr803535b2018-08-02 16:38:15 -07004157 mPolicy->notifyInputChannelBroken(connection->inputChannel->getToken());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004158
4159 mLock.lock();
4160 }
4161}
4162
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004163void InputDispatcher::doNotifyFocusChangedLockedInterruptible(CommandEntry* commandEntry) {
chaviw0c06c6e2019-01-09 13:27:07 -08004164 sp<IBinder> oldToken = commandEntry->oldToken;
4165 sp<IBinder> newToken = commandEntry->newToken;
Robert Carrf759f162018-11-13 12:57:11 -08004166 mLock.unlock();
chaviw0c06c6e2019-01-09 13:27:07 -08004167 mPolicy->notifyFocusChanged(oldToken, newToken);
Robert Carrf759f162018-11-13 12:57:11 -08004168 mLock.lock();
4169}
4170
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004171void InputDispatcher::doNotifyANRLockedInterruptible(CommandEntry* commandEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004172 mLock.unlock();
4173
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004174 nsecs_t newTimeout =
4175 mPolicy->notifyANR(commandEntry->inputApplicationHandle,
4176 commandEntry->inputChannel ? commandEntry->inputChannel->getToken()
4177 : nullptr,
4178 commandEntry->reason);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004179
4180 mLock.lock();
4181
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004182 resumeAfterTargetsNotReadyTimeoutLocked(newTimeout, commandEntry->inputChannel);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004183}
4184
4185void InputDispatcher::doInterceptKeyBeforeDispatchingLockedInterruptible(
4186 CommandEntry* commandEntry) {
4187 KeyEntry* entry = commandEntry->keyEntry;
4188
4189 KeyEvent event;
4190 initializeKeyEvent(&event, entry);
4191
4192 mLock.unlock();
4193
Michael Wright2b3c3302018-03-02 17:19:13 +00004194 android::base::Timer t;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004195 sp<IBinder> token = commandEntry->inputChannel != nullptr
4196 ? commandEntry->inputChannel->getToken()
4197 : nullptr;
4198 nsecs_t delay = mPolicy->interceptKeyBeforeDispatching(token, &event, entry->policyFlags);
Michael Wright2b3c3302018-03-02 17:19:13 +00004199 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
4200 ALOGW("Excessive delay in interceptKeyBeforeDispatching; took %s ms",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004201 std::to_string(t.duration().count()).c_str());
Michael Wright2b3c3302018-03-02 17:19:13 +00004202 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004203
4204 mLock.lock();
4205
4206 if (delay < 0) {
4207 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_SKIP;
4208 } else if (!delay) {
4209 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE;
4210 } else {
4211 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER;
4212 entry->interceptKeyWakeupTime = now() + delay;
4213 }
4214 entry->release();
4215}
4216
chaviwfd6d3512019-03-25 13:23:49 -07004217void InputDispatcher::doOnPointerDownOutsideFocusLockedInterruptible(CommandEntry* commandEntry) {
4218 mLock.unlock();
4219 mPolicy->onPointerDownOutsideFocus(commandEntry->newToken);
4220 mLock.lock();
4221}
4222
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004223void InputDispatcher::doDispatchCycleFinishedLockedInterruptible(CommandEntry* commandEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004224 sp<Connection> connection = commandEntry->connection;
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07004225 const nsecs_t finishTime = commandEntry->eventTime;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004226 uint32_t seq = commandEntry->seq;
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07004227 const bool handled = commandEntry->handled;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004228
4229 // Handle post-event policy actions.
Garfield Tane84e6f92019-08-29 17:28:41 -07004230 std::deque<DispatchEntry*>::iterator dispatchEntryIt = connection->findWaitQueueEntry(seq);
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004231 if (dispatchEntryIt == connection->waitQueue.end()) {
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07004232 return;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004233 }
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004234 DispatchEntry* dispatchEntry = *dispatchEntryIt;
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07004235
4236 nsecs_t eventDuration = finishTime - dispatchEntry->deliveryTime;
4237 if (eventDuration > SLOW_EVENT_PROCESSING_WARNING_TIMEOUT) {
4238 std::string msg =
4239 StringPrintf("Window '%s' spent %0.1fms processing the last input event: ",
4240 connection->getWindowName().c_str(), eventDuration * 0.000001f);
4241 dispatchEntry->eventEntry->appendDescription(msg);
4242 ALOGI("%s", msg.c_str());
4243 }
4244
4245 bool restartEvent;
4246 if (dispatchEntry->eventEntry->type == EventEntry::TYPE_KEY) {
4247 KeyEntry* keyEntry = static_cast<KeyEntry*>(dispatchEntry->eventEntry);
4248 restartEvent =
4249 afterKeyEventLockedInterruptible(connection, dispatchEntry, keyEntry, handled);
4250 } else if (dispatchEntry->eventEntry->type == EventEntry::TYPE_MOTION) {
4251 MotionEntry* motionEntry = static_cast<MotionEntry*>(dispatchEntry->eventEntry);
4252 restartEvent = afterMotionEventLockedInterruptible(connection, dispatchEntry, motionEntry,
4253 handled);
4254 } else {
4255 restartEvent = false;
4256 }
4257
4258 // Dequeue the event and start the next cycle.
4259 // Note that because the lock might have been released, it is possible that the
4260 // contents of the wait queue to have been drained, so we need to double-check
4261 // a few things.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004262 dispatchEntryIt = connection->findWaitQueueEntry(seq);
4263 if (dispatchEntryIt != connection->waitQueue.end()) {
4264 dispatchEntry = *dispatchEntryIt;
4265 connection->waitQueue.erase(dispatchEntryIt);
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07004266 traceWaitQueueLength(connection);
4267 if (restartEvent && connection->status == Connection::STATUS_NORMAL) {
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004268 connection->outboundQueue.push_front(dispatchEntry);
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07004269 traceOutboundQueueLength(connection);
4270 } else {
4271 releaseDispatchEntry(dispatchEntry);
4272 }
4273 }
4274
4275 // Start the next dispatch cycle for this connection.
4276 startDispatchCycleLocked(now(), connection);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004277}
4278
4279bool InputDispatcher::afterKeyEventLockedInterruptible(const sp<Connection>& connection,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004280 DispatchEntry* dispatchEntry,
4281 KeyEntry* keyEntry, bool handled) {
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004282 if (keyEntry->flags & AKEY_EVENT_FLAG_FALLBACK) {
Prabir Pradhanf93562f2018-11-29 12:13:37 -08004283 if (!handled) {
4284 // Report the key as unhandled, since the fallback was not handled.
4285 mReporter->reportUnhandledKey(keyEntry->sequenceNum);
4286 }
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004287 return false;
4288 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004289
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004290 // Get the fallback key state.
4291 // Clear it out after dispatching the UP.
4292 int32_t originalKeyCode = keyEntry->keyCode;
4293 int32_t fallbackKeyCode = connection->inputState.getFallbackKey(originalKeyCode);
4294 if (keyEntry->action == AKEY_EVENT_ACTION_UP) {
4295 connection->inputState.removeFallbackKey(originalKeyCode);
4296 }
4297
4298 if (handled || !dispatchEntry->hasForegroundTarget()) {
4299 // If the application handles the original key for which we previously
4300 // generated a fallback or if the window is not a foreground window,
4301 // then cancel the associated fallback key, if any.
4302 if (fallbackKeyCode != -1) {
4303 // Dispatch the unhandled key to the policy with the cancel flag.
Michael Wrightd02c5b62014-02-10 15:10:22 -08004304#if DEBUG_OUTBOUND_EVENT_DETAILS
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004305 ALOGD("Unhandled key event: Asking policy to cancel fallback action. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004306 "keyCode=%d, action=%d, repeatCount=%d, policyFlags=0x%08x",
4307 keyEntry->keyCode, keyEntry->action, keyEntry->repeatCount,
4308 keyEntry->policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004309#endif
4310 KeyEvent event;
4311 initializeKeyEvent(&event, keyEntry);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004312 event.setFlags(event.getFlags() | AKEY_EVENT_FLAG_CANCELED);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004313
4314 mLock.unlock();
4315
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004316 mPolicy->dispatchUnhandledKey(connection->inputChannel->getToken(), &event,
4317 keyEntry->policyFlags, &event);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004318
4319 mLock.lock();
4320
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004321 // Cancel the fallback key.
4322 if (fallbackKeyCode != AKEYCODE_UNKNOWN) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004323 CancelationOptions options(CancelationOptions::CANCEL_FALLBACK_EVENTS,
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004324 "application handled the original non-fallback key "
4325 "or is no longer a foreground target, "
4326 "canceling previously dispatched fallback key");
Michael Wrightd02c5b62014-02-10 15:10:22 -08004327 options.keyCode = fallbackKeyCode;
4328 synthesizeCancelationEventsForConnectionLocked(connection, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004329 }
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004330 connection->inputState.removeFallbackKey(originalKeyCode);
4331 }
4332 } else {
4333 // If the application did not handle a non-fallback key, first check
4334 // that we are in a good state to perform unhandled key event processing
4335 // Then ask the policy what to do with it.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004336 bool initialDown = keyEntry->action == AKEY_EVENT_ACTION_DOWN && keyEntry->repeatCount == 0;
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004337 if (fallbackKeyCode == -1 && !initialDown) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004338#if DEBUG_OUTBOUND_EVENT_DETAILS
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004339 ALOGD("Unhandled key event: Skipping unhandled key event processing "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004340 "since this is not an initial down. "
4341 "keyCode=%d, action=%d, repeatCount=%d, policyFlags=0x%08x",
4342 originalKeyCode, keyEntry->action, keyEntry->repeatCount, keyEntry->policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004343#endif
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004344 return false;
4345 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004346
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004347 // Dispatch the unhandled key to the policy.
4348#if DEBUG_OUTBOUND_EVENT_DETAILS
4349 ALOGD("Unhandled key event: Asking policy to perform fallback action. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004350 "keyCode=%d, action=%d, repeatCount=%d, policyFlags=0x%08x",
4351 keyEntry->keyCode, keyEntry->action, keyEntry->repeatCount, keyEntry->policyFlags);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004352#endif
4353 KeyEvent event;
4354 initializeKeyEvent(&event, keyEntry);
4355
4356 mLock.unlock();
4357
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004358 bool fallback = mPolicy->dispatchUnhandledKey(connection->inputChannel->getToken(), &event,
4359 keyEntry->policyFlags, &event);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004360
4361 mLock.lock();
4362
4363 if (connection->status != Connection::STATUS_NORMAL) {
4364 connection->inputState.removeFallbackKey(originalKeyCode);
4365 return false;
4366 }
4367
4368 // Latch the fallback keycode for this key on an initial down.
4369 // The fallback keycode cannot change at any other point in the lifecycle.
4370 if (initialDown) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004371 if (fallback) {
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004372 fallbackKeyCode = event.getKeyCode();
4373 } else {
4374 fallbackKeyCode = AKEYCODE_UNKNOWN;
4375 }
4376 connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode);
4377 }
4378
4379 ALOG_ASSERT(fallbackKeyCode != -1);
4380
4381 // Cancel the fallback key if the policy decides not to send it anymore.
4382 // We will continue to dispatch the key to the policy but we will no
4383 // longer dispatch a fallback key to the application.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004384 if (fallbackKeyCode != AKEYCODE_UNKNOWN &&
4385 (!fallback || fallbackKeyCode != event.getKeyCode())) {
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004386#if DEBUG_OUTBOUND_EVENT_DETAILS
4387 if (fallback) {
4388 ALOGD("Unhandled key event: Policy requested to send key %d"
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004389 "as a fallback for %d, but on the DOWN it had requested "
4390 "to send %d instead. Fallback canceled.",
4391 event.getKeyCode(), originalKeyCode, fallbackKeyCode);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004392 } else {
4393 ALOGD("Unhandled key event: Policy did not request fallback for %d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004394 "but on the DOWN it had requested to send %d. "
4395 "Fallback canceled.",
4396 originalKeyCode, fallbackKeyCode);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004397 }
4398#endif
4399
4400 CancelationOptions options(CancelationOptions::CANCEL_FALLBACK_EVENTS,
4401 "canceling fallback, policy no longer desires it");
4402 options.keyCode = fallbackKeyCode;
4403 synthesizeCancelationEventsForConnectionLocked(connection, options);
4404
4405 fallback = false;
4406 fallbackKeyCode = AKEYCODE_UNKNOWN;
4407 if (keyEntry->action != AKEY_EVENT_ACTION_UP) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004408 connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004409 }
4410 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004411
4412#if DEBUG_OUTBOUND_EVENT_DETAILS
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004413 {
4414 std::string msg;
4415 const KeyedVector<int32_t, int32_t>& fallbackKeys =
4416 connection->inputState.getFallbackKeys();
4417 for (size_t i = 0; i < fallbackKeys.size(); i++) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004418 msg += StringPrintf(", %d->%d", fallbackKeys.keyAt(i), fallbackKeys.valueAt(i));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004419 }
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004420 ALOGD("Unhandled key event: %zu currently tracked fallback keys%s.",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004421 fallbackKeys.size(), msg.c_str());
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004422 }
4423#endif
4424
4425 if (fallback) {
4426 // Restart the dispatch cycle using the fallback key.
4427 keyEntry->eventTime = event.getEventTime();
4428 keyEntry->deviceId = event.getDeviceId();
4429 keyEntry->source = event.getSource();
4430 keyEntry->displayId = event.getDisplayId();
4431 keyEntry->flags = event.getFlags() | AKEY_EVENT_FLAG_FALLBACK;
4432 keyEntry->keyCode = fallbackKeyCode;
4433 keyEntry->scanCode = event.getScanCode();
4434 keyEntry->metaState = event.getMetaState();
4435 keyEntry->repeatCount = event.getRepeatCount();
4436 keyEntry->downTime = event.getDownTime();
4437 keyEntry->syntheticRepeat = false;
4438
4439#if DEBUG_OUTBOUND_EVENT_DETAILS
4440 ALOGD("Unhandled key event: Dispatching fallback key. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004441 "originalKeyCode=%d, fallbackKeyCode=%d, fallbackMetaState=%08x",
4442 originalKeyCode, fallbackKeyCode, keyEntry->metaState);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004443#endif
4444 return true; // restart the event
4445 } else {
4446#if DEBUG_OUTBOUND_EVENT_DETAILS
4447 ALOGD("Unhandled key event: No fallback key.");
4448#endif
Prabir Pradhanf93562f2018-11-29 12:13:37 -08004449
4450 // Report the key as unhandled, since there is no fallback key.
4451 mReporter->reportUnhandledKey(keyEntry->sequenceNum);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004452 }
4453 }
4454 return false;
4455}
4456
4457bool InputDispatcher::afterMotionEventLockedInterruptible(const sp<Connection>& connection,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004458 DispatchEntry* dispatchEntry,
4459 MotionEntry* motionEntry, bool handled) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004460 return false;
4461}
4462
4463void InputDispatcher::doPokeUserActivityLockedInterruptible(CommandEntry* commandEntry) {
4464 mLock.unlock();
4465
4466 mPolicy->pokeUserActivity(commandEntry->eventTime, commandEntry->userActivityEventType);
4467
4468 mLock.lock();
4469}
4470
4471void InputDispatcher::initializeKeyEvent(KeyEvent* event, const KeyEntry* entry) {
Siarhei Vishniakoua62a8dd2018-06-08 21:17:33 +01004472 event->initialize(entry->deviceId, entry->source, entry->displayId, entry->action, entry->flags,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004473 entry->keyCode, entry->scanCode, entry->metaState, entry->repeatCount,
4474 entry->downTime, entry->eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004475}
4476
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08004477void InputDispatcher::updateDispatchStatistics(nsecs_t currentTime, const EventEntry* entry,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004478 int32_t injectionResult,
4479 nsecs_t timeSpentWaitingForApplication) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004480 // TODO Write some statistics about how long we spend waiting.
4481}
4482
Siarhei Vishniakoude4bf152019-08-16 11:12:52 -05004483/**
4484 * Report the touch event latency to the statsd server.
4485 * Input events are reported for statistics if:
4486 * - This is a touchscreen event
4487 * - InputFilter is not enabled
4488 * - Event is not injected or synthesized
4489 *
4490 * Statistics should be reported before calling addValue, to prevent a fresh new sample
4491 * from getting aggregated with the "old" data.
4492 */
4493void InputDispatcher::reportTouchEventForStatistics(const MotionEntry& motionEntry)
4494 REQUIRES(mLock) {
4495 const bool reportForStatistics = (motionEntry.source == AINPUT_SOURCE_TOUCHSCREEN) &&
4496 !(motionEntry.isSynthesized()) && !mInputFilterEnabled;
4497 if (!reportForStatistics) {
4498 return;
4499 }
4500
4501 if (mTouchStatistics.shouldReport()) {
4502 android::util::stats_write(android::util::TOUCH_EVENT_REPORTED, mTouchStatistics.getMin(),
4503 mTouchStatistics.getMax(), mTouchStatistics.getMean(),
4504 mTouchStatistics.getStDev(), mTouchStatistics.getCount());
4505 mTouchStatistics.reset();
4506 }
4507 const float latencyMicros = nanoseconds_to_microseconds(now() - motionEntry.eventTime);
4508 mTouchStatistics.addValue(latencyMicros);
4509}
4510
Michael Wrightd02c5b62014-02-10 15:10:22 -08004511void InputDispatcher::traceInboundQueueLengthLocked() {
4512 if (ATRACE_ENABLED()) {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07004513 ATRACE_INT("iq", mInboundQueue.size());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004514 }
4515}
4516
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08004517void InputDispatcher::traceOutboundQueueLength(const sp<Connection>& connection) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004518 if (ATRACE_ENABLED()) {
4519 char counterName[40];
Siarhei Vishniakou587c3f02018-01-04 11:46:44 -08004520 snprintf(counterName, sizeof(counterName), "oq:%s", connection->getWindowName().c_str());
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004521 ATRACE_INT(counterName, connection->outboundQueue.size());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004522 }
4523}
4524
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08004525void InputDispatcher::traceWaitQueueLength(const sp<Connection>& connection) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004526 if (ATRACE_ENABLED()) {
4527 char counterName[40];
Siarhei Vishniakou587c3f02018-01-04 11:46:44 -08004528 snprintf(counterName, sizeof(counterName), "wq:%s", connection->getWindowName().c_str());
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004529 ATRACE_INT(counterName, connection->waitQueue.size());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004530 }
4531}
4532
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004533void InputDispatcher::dump(std::string& dump) {
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004534 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004535
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004536 dump += "Input Dispatcher State:\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08004537 dumpDispatchStateLocked(dump);
4538
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004539 if (!mLastANRState.empty()) {
4540 dump += "\nInput Dispatcher State at time of last ANR:\n";
4541 dump += mLastANRState;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004542 }
4543}
4544
4545void InputDispatcher::monitor() {
4546 // Acquire and release the lock to ensure that the dispatcher has not deadlocked.
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004547 std::unique_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004548 mLooper->wake();
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004549 mDispatcherIsAlive.wait(_l);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004550}
4551
Garfield Tane84e6f92019-08-29 17:28:41 -07004552} // namespace android::inputdispatcher