blob: 58404a251050031b92dacdaa1e9b6d2368e2fd0c [file] [log] [blame]
Michael Wrightd02c5b62014-02-10 15:10:22 -08001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "InputDispatcher"
18#define ATRACE_TAG ATRACE_TAG_INPUT
19
John Recke0710582019-09-26 13:46:12 -070020#define LOG_NDEBUG 1
Michael Wrightd02c5b62014-02-10 15:10:22 -080021
22// Log detailed debug messages about each inbound event notification to the dispatcher.
23#define DEBUG_INBOUND_EVENT_DETAILS 0
24
25// Log detailed debug messages about each outbound event processed by the dispatcher.
26#define DEBUG_OUTBOUND_EVENT_DETAILS 0
27
28// Log debug messages about the dispatch cycle.
29#define DEBUG_DISPATCH_CYCLE 0
30
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.
Siarhei Vishniakou86587282019-09-09 18:20:15 +010038static constexpr bool DEBUG_FOCUS = false;
Michael Wrightd02c5b62014-02-10 15:10:22 -080039
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),
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700248 mLastDropReason(DropReason::NOT_DROPPED),
Garfield Tan00f511d2019-06-12 16:55:40 -0700249 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) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +0100317 if (DEBUG_FOCUS) {
318 ALOGD("Dispatch frozen. Waiting some more.");
319 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800320 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) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700366 pokeUserActivityLocked(*mPendingEvent);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800367 }
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;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700377 DropReason dropReason = DropReason::NOT_DROPPED;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800378 if (!(mPendingEvent->policyFlags & POLICY_FLAG_PASS_TO_USER)) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700379 dropReason = DropReason::POLICY;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800380 } else if (!mDispatchEnabled) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700381 dropReason = DropReason::DISABLED;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800382 }
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);
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700393 dropReason = DropReason::NOT_DROPPED; // configuration changes are never dropped
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700394 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);
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700400 dropReason = DropReason::NOT_DROPPED; // device resets are never dropped
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700401 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) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700407 if (isAppSwitchKeyEvent(*typedEntry)) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700408 resetPendingAppSwitchLocked(true);
409 isAppSwitchDue = false;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700410 } else if (dropReason == DropReason::NOT_DROPPED) {
411 dropReason = DropReason::APP_SWITCH;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700412 }
413 }
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700414 if (dropReason == DropReason::NOT_DROPPED && isStaleEvent(currentTime, *typedEntry)) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700415 dropReason = DropReason::STALE;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700416 }
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700417 if (dropReason == DropReason::NOT_DROPPED && mNextUnblockedEvent) {
418 dropReason = DropReason::BLOCKED;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700419 }
420 done = dispatchKeyLocked(currentTime, typedEntry, &dropReason, nextWakeupTime);
421 break;
422 }
423
424 case EventEntry::TYPE_MOTION: {
425 MotionEntry* typedEntry = static_cast<MotionEntry*>(mPendingEvent);
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700426 if (dropReason == DropReason::NOT_DROPPED && isAppSwitchDue) {
427 dropReason = DropReason::APP_SWITCH;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800428 }
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700429 if (dropReason == DropReason::NOT_DROPPED && isStaleEvent(currentTime, *typedEntry)) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700430 dropReason = DropReason::STALE;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700431 }
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700432 if (dropReason == DropReason::NOT_DROPPED && mNextUnblockedEvent) {
433 dropReason = DropReason::BLOCKED;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700434 }
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) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700445 if (dropReason != DropReason::NOT_DROPPED) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700446 dropInboundEventLocked(*mPendingEvent, dropReason);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800447 }
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.
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700465 const KeyEntry& keyEntry = static_cast<const KeyEntry&>(*entry);
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700466 if (isAppSwitchKeyEvent(keyEntry)) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700467 if (keyEntry.action == AKEY_EVENT_ACTION_DOWN) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700468 mAppSwitchSawKeyDown = true;
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700469 } else if (keyEntry.action == AKEY_EVENT_ACTION_UP) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700470 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
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700474 mAppSwitchDueTime = keyEntry.eventTime + APP_SWITCH_TIMEOUT;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700475 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
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700594void InputDispatcher::dropInboundEventLocked(const EventEntry& entry, DropReason dropReason) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800595 const char* reason;
596 switch (dropReason) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700597 case DropReason::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;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700603 case DropReason::DISABLED:
604 if (mLastDropReason != DropReason::DISABLED) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700605 ALOGI("Dropped event because input dispatch is disabled.");
606 }
607 reason = "inbound event was dropped because input dispatch is disabled";
608 break;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700609 case DropReason::APP_SWITCH:
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700610 ALOGI("Dropped event because of pending overdue app switch.");
611 reason = "inbound event was dropped because of pending overdue app switch";
612 break;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700613 case DropReason::BLOCKED:
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700614 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;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700619 case DropReason::STALE:
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700620 ALOGI("Dropped event because it is stale.");
621 reason = "inbound event was dropped because it is stale";
622 break;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700623 case DropReason::NOT_DROPPED: {
624 LOG_ALWAYS_FATAL("Should not be dropping a NOT_DROPPED event");
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700625 return;
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700626 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800627 }
628
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700629 switch (entry.type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700630 case EventEntry::TYPE_KEY: {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800631 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason);
632 synthesizeCancelationEventsForAllConnectionsLocked(options);
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700633 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800634 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700635 case EventEntry::TYPE_MOTION: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700636 const MotionEntry& motionEntry = static_cast<const MotionEntry&>(entry);
637 if (motionEntry.source & AINPUT_SOURCE_CLASS_POINTER) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700638 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS, reason);
639 synthesizeCancelationEventsForAllConnectionsLocked(options);
640 } else {
641 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason);
642 synthesizeCancelationEventsForAllConnectionsLocked(options);
643 }
644 break;
645 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800646 }
647}
648
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800649static bool isAppSwitchKeyCode(int32_t keyCode) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700650 return keyCode == AKEYCODE_HOME || keyCode == AKEYCODE_ENDCALL ||
651 keyCode == AKEYCODE_APP_SWITCH;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800652}
653
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700654bool InputDispatcher::isAppSwitchKeyEvent(const KeyEntry& keyEntry) {
655 return !(keyEntry.flags & AKEY_EVENT_FLAG_CANCELED) && isAppSwitchKeyCode(keyEntry.keyCode) &&
656 (keyEntry.policyFlags & POLICY_FLAG_TRUSTED) &&
657 (keyEntry.policyFlags & POLICY_FLAG_PASS_TO_USER);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800658}
659
660bool InputDispatcher::isAppSwitchPendingLocked() {
661 return mAppSwitchDueTime != LONG_LONG_MAX;
662}
663
664void InputDispatcher::resetPendingAppSwitchLocked(bool handled) {
665 mAppSwitchDueTime = LONG_LONG_MAX;
666
667#if DEBUG_APP_SWITCH
668 if (handled) {
669 ALOGD("App switch has arrived.");
670 } else {
671 ALOGD("App switch was abandoned.");
672 }
673#endif
674}
675
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700676bool InputDispatcher::isStaleEvent(nsecs_t currentTime, const EventEntry& entry) {
677 return currentTime - entry.eventTime >= STALE_EVENT_TIMEOUT;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800678}
679
680bool InputDispatcher::haveCommandsLocked() const {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700681 return !mCommandQueue.empty();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800682}
683
684bool InputDispatcher::runCommandsLockedInterruptible() {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700685 if (mCommandQueue.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800686 return false;
687 }
688
689 do {
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700690 std::unique_ptr<CommandEntry> commandEntry = std::move(mCommandQueue.front());
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700691 mCommandQueue.pop_front();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800692 Command command = commandEntry->command;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700693 command(*this, commandEntry.get()); // commands are implicitly 'LockedInterruptible'
Michael Wrightd02c5b62014-02-10 15:10:22 -0800694
695 commandEntry->connection.clear();
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700696 } while (!mCommandQueue.empty());
Michael Wrightd02c5b62014-02-10 15:10:22 -0800697 return true;
698}
699
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700700void InputDispatcher::postCommandLocked(std::unique_ptr<CommandEntry> commandEntry) {
701 mCommandQueue.push_back(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -0800702}
703
704void InputDispatcher::drainInboundQueueLocked() {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -0700705 while (!mInboundQueue.empty()) {
706 EventEntry* entry = mInboundQueue.front();
707 mInboundQueue.pop_front();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800708 releaseInboundEventLocked(entry);
709 }
710 traceInboundQueueLengthLocked();
711}
712
713void InputDispatcher::releasePendingEventLocked() {
714 if (mPendingEvent) {
715 resetANRTimeoutsLocked();
716 releaseInboundEventLocked(mPendingEvent);
Yi Kong9b14ac62018-07-17 13:48:38 -0700717 mPendingEvent = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800718 }
719}
720
721void InputDispatcher::releaseInboundEventLocked(EventEntry* entry) {
722 InjectionState* injectionState = entry->injectionState;
723 if (injectionState && injectionState->injectionResult == INPUT_EVENT_INJECTION_PENDING) {
724#if DEBUG_DISPATCH_CYCLE
725 ALOGD("Injected inbound event was dropped.");
726#endif
Siarhei Vishniakou62683e82019-03-06 17:59:56 -0800727 setInjectionResult(entry, INPUT_EVENT_INJECTION_FAILED);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800728 }
729 if (entry == mNextUnblockedEvent) {
Yi Kong9b14ac62018-07-17 13:48:38 -0700730 mNextUnblockedEvent = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800731 }
732 addRecentEventLocked(entry);
733 entry->release();
734}
735
736void InputDispatcher::resetKeyRepeatLocked() {
737 if (mKeyRepeatState.lastKeyEntry) {
738 mKeyRepeatState.lastKeyEntry->release();
Yi Kong9b14ac62018-07-17 13:48:38 -0700739 mKeyRepeatState.lastKeyEntry = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800740 }
741}
742
Garfield Tane84e6f92019-08-29 17:28:41 -0700743KeyEntry* InputDispatcher::synthesizeKeyRepeatLocked(nsecs_t currentTime) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800744 KeyEntry* entry = mKeyRepeatState.lastKeyEntry;
745
746 // Reuse the repeated key entry if it is otherwise unreferenced.
Michael Wright2e732952014-09-24 13:26:59 -0700747 uint32_t policyFlags = entry->policyFlags &
748 (POLICY_FLAG_RAW_MASK | POLICY_FLAG_PASS_TO_USER | POLICY_FLAG_TRUSTED);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800749 if (entry->refCount == 1) {
750 entry->recycle();
751 entry->eventTime = currentTime;
752 entry->policyFlags = policyFlags;
753 entry->repeatCount += 1;
754 } else {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700755 KeyEntry* newEntry =
756 new KeyEntry(SYNTHESIZED_EVENT_SEQUENCE_NUM, currentTime, entry->deviceId,
757 entry->source, entry->displayId, policyFlags, entry->action,
758 entry->flags, entry->keyCode, entry->scanCode, entry->metaState,
759 entry->repeatCount + 1, entry->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800760
761 mKeyRepeatState.lastKeyEntry = newEntry;
762 entry->release();
763
764 entry = newEntry;
765 }
766 entry->syntheticRepeat = true;
767
768 // Increment reference count since we keep a reference to the event in
769 // mKeyRepeatState.lastKeyEntry in addition to the one we return.
770 entry->refCount += 1;
771
772 mKeyRepeatState.nextRepeatTime = currentTime + mConfig.keyRepeatDelay;
773 return entry;
774}
775
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700776bool InputDispatcher::dispatchConfigurationChangedLocked(nsecs_t currentTime,
777 ConfigurationChangedEntry* entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800778#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakou5d83f602017-09-12 12:40:29 -0700779 ALOGD("dispatchConfigurationChanged - eventTime=%" PRId64, entry->eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800780#endif
781
782 // Reset key repeating in case a keyboard device was added or removed or something.
783 resetKeyRepeatLocked();
784
785 // Enqueue a command to run outside the lock to tell the policy that the configuration changed.
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700786 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
787 &InputDispatcher::doNotifyConfigurationChangedLockedInterruptible);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800788 commandEntry->eventTime = entry->eventTime;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700789 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -0800790 return true;
791}
792
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700793bool InputDispatcher::dispatchDeviceResetLocked(nsecs_t currentTime, DeviceResetEntry* entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800794#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakou5d83f602017-09-12 12:40:29 -0700795 ALOGD("dispatchDeviceReset - eventTime=%" PRId64 ", deviceId=%d", entry->eventTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700796 entry->deviceId);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800797#endif
798
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700799 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS, "device was reset");
Michael Wrightd02c5b62014-02-10 15:10:22 -0800800 options.deviceId = entry->deviceId;
801 synthesizeCancelationEventsForAllConnectionsLocked(options);
802 return true;
803}
804
805bool InputDispatcher::dispatchKeyLocked(nsecs_t currentTime, KeyEntry* entry,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700806 DropReason* dropReason, nsecs_t* nextWakeupTime) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800807 // Preprocessing.
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700808 if (!entry->dispatchInProgress) {
809 if (entry->repeatCount == 0 && entry->action == AKEY_EVENT_ACTION_DOWN &&
810 (entry->policyFlags & POLICY_FLAG_TRUSTED) &&
811 (!(entry->policyFlags & POLICY_FLAG_DISABLE_KEY_REPEAT))) {
812 if (mKeyRepeatState.lastKeyEntry &&
813 mKeyRepeatState.lastKeyEntry->keyCode == entry->keyCode) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800814 // We have seen two identical key downs in a row which indicates that the device
815 // driver is automatically generating key repeats itself. We take note of the
816 // repeat here, but we disable our own next key repeat timer since it is clear that
817 // we will not need to synthesize key repeats ourselves.
818 entry->repeatCount = mKeyRepeatState.lastKeyEntry->repeatCount + 1;
819 resetKeyRepeatLocked();
820 mKeyRepeatState.nextRepeatTime = LONG_LONG_MAX; // don't generate repeats ourselves
821 } else {
822 // Not a repeat. Save key down state in case we do see a repeat later.
823 resetKeyRepeatLocked();
824 mKeyRepeatState.nextRepeatTime = entry->eventTime + mConfig.keyRepeatTimeout;
825 }
826 mKeyRepeatState.lastKeyEntry = entry;
827 entry->refCount += 1;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700828 } else if (!entry->syntheticRepeat) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800829 resetKeyRepeatLocked();
830 }
831
832 if (entry->repeatCount == 1) {
833 entry->flags |= AKEY_EVENT_FLAG_LONG_PRESS;
834 } else {
835 entry->flags &= ~AKEY_EVENT_FLAG_LONG_PRESS;
836 }
837
838 entry->dispatchInProgress = true;
839
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700840 logOutboundKeyDetails("dispatchKey - ", *entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800841 }
842
843 // Handle case where the policy asked us to try again later last time.
844 if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER) {
845 if (currentTime < entry->interceptKeyWakeupTime) {
846 if (entry->interceptKeyWakeupTime < *nextWakeupTime) {
847 *nextWakeupTime = entry->interceptKeyWakeupTime;
848 }
849 return false; // wait until next wakeup
850 }
851 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN;
852 entry->interceptKeyWakeupTime = 0;
853 }
854
855 // Give the policy a chance to intercept the key.
856 if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN) {
857 if (entry->policyFlags & POLICY_FLAG_PASS_TO_USER) {
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700858 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
Siarhei Vishniakou49a350a2019-07-26 18:44:23 -0700859 &InputDispatcher::doInterceptKeyBeforeDispatchingLockedInterruptible);
Tiger Huang721e26f2018-07-24 22:26:19 +0800860 sp<InputWindowHandle> focusedWindowHandle =
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700861 getValueByKey(mFocusedWindowHandlesByDisplay, getTargetDisplayId(*entry));
Tiger Huang721e26f2018-07-24 22:26:19 +0800862 if (focusedWindowHandle != nullptr) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700863 commandEntry->inputChannel = getInputChannelLocked(focusedWindowHandle->getToken());
Michael Wrightd02c5b62014-02-10 15:10:22 -0800864 }
865 commandEntry->keyEntry = entry;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -0700866 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -0800867 entry->refCount += 1;
868 return false; // wait for the command to run
869 } else {
870 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE;
871 }
872 } else if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_SKIP) {
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700873 if (*dropReason == DropReason::NOT_DROPPED) {
874 *dropReason = DropReason::POLICY;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800875 }
876 }
877
878 // Clean up if dropping the event.
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700879 if (*dropReason != DropReason::NOT_DROPPED) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700880 setInjectionResult(entry,
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700881 *dropReason == DropReason::POLICY ? INPUT_EVENT_INJECTION_SUCCEEDED
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700882 : INPUT_EVENT_INJECTION_FAILED);
Prabir Pradhanf93562f2018-11-29 12:13:37 -0800883 mReporter->reportDroppedKey(entry->sequenceNum);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800884 return true;
885 }
886
887 // Identify targets.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800888 std::vector<InputTarget> inputTargets;
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700889 int32_t injectionResult =
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700890 findFocusedWindowTargetsLocked(currentTime, *entry, inputTargets, nextWakeupTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800891 if (injectionResult == INPUT_EVENT_INJECTION_PENDING) {
892 return false;
893 }
894
Siarhei Vishniakou62683e82019-03-06 17:59:56 -0800895 setInjectionResult(entry, injectionResult);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800896 if (injectionResult != INPUT_EVENT_INJECTION_SUCCEEDED) {
897 return true;
898 }
899
Arthur Hung2fbf37f2018-09-13 18:16:41 +0800900 // Add monitor channels from event's or focused display.
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700901 addGlobalMonitoringTargetsLocked(inputTargets, getTargetDisplayId(*entry));
Michael Wrightd02c5b62014-02-10 15:10:22 -0800902
903 // Dispatch the key.
904 dispatchEventLocked(currentTime, entry, inputTargets);
905 return true;
906}
907
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700908void InputDispatcher::logOutboundKeyDetails(const char* prefix, const KeyEntry& entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800909#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakoua62a8dd2018-06-08 21:17:33 +0100910 ALOGD("%seventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32 ", "
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700911 "policyFlags=0x%x, action=0x%x, flags=0x%x, keyCode=0x%x, scanCode=0x%x, "
912 "metaState=0x%x, repeatCount=%d, downTime=%" PRId64,
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700913 prefix, entry.eventTime, entry.deviceId, entry.source, entry.displayId, entry.policyFlags,
914 entry.action, entry.flags, entry.keyCode, entry.scanCode, entry.metaState,
915 entry.repeatCount, entry.downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800916#endif
917}
918
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700919bool InputDispatcher::dispatchMotionLocked(nsecs_t currentTime, MotionEntry* entry,
920 DropReason* dropReason, nsecs_t* nextWakeupTime) {
Michael Wright3dd60e22019-03-27 22:06:44 +0000921 ATRACE_CALL();
Michael Wrightd02c5b62014-02-10 15:10:22 -0800922 // Preprocessing.
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700923 if (!entry->dispatchInProgress) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800924 entry->dispatchInProgress = true;
925
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700926 logOutboundMotionDetails("dispatchMotion - ", *entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800927 }
928
929 // Clean up if dropping the event.
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700930 if (*dropReason != DropReason::NOT_DROPPED) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700931 setInjectionResult(entry,
Siarhei Vishniakou0fb1a0e2019-10-22 11:23:36 -0700932 *dropReason == DropReason::POLICY ? INPUT_EVENT_INJECTION_SUCCEEDED
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700933 : INPUT_EVENT_INJECTION_FAILED);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800934 return true;
935 }
936
937 bool isPointerEvent = entry->source & AINPUT_SOURCE_CLASS_POINTER;
938
939 // Identify targets.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800940 std::vector<InputTarget> inputTargets;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800941
942 bool conflictingPointerActions = false;
943 int32_t injectionResult;
944 if (isPointerEvent) {
945 // Pointer event. (eg. touchscreen)
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700946 injectionResult =
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700947 findTouchedWindowTargetsLocked(currentTime, *entry, inputTargets, nextWakeupTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700948 &conflictingPointerActions);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800949 } else {
950 // Non touch event. (eg. trackball)
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700951 injectionResult =
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700952 findFocusedWindowTargetsLocked(currentTime, *entry, inputTargets, nextWakeupTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800953 }
954 if (injectionResult == INPUT_EVENT_INJECTION_PENDING) {
955 return false;
956 }
957
Siarhei Vishniakou62683e82019-03-06 17:59:56 -0800958 setInjectionResult(entry, injectionResult);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800959 if (injectionResult != INPUT_EVENT_INJECTION_SUCCEEDED) {
Michael Wrightfa13dcf2015-06-12 13:25:11 +0100960 if (injectionResult != INPUT_EVENT_INJECTION_PERMISSION_DENIED) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700961 CancelationOptions::Mode mode(isPointerEvent
962 ? CancelationOptions::CANCEL_POINTER_EVENTS
963 : CancelationOptions::CANCEL_NON_POINTER_EVENTS);
Michael Wrightfa13dcf2015-06-12 13:25:11 +0100964 CancelationOptions options(mode, "input event injection failed");
965 synthesizeCancelationEventsForMonitorsLocked(options);
966 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800967 return true;
968 }
969
Arthur Hung2fbf37f2018-09-13 18:16:41 +0800970 // Add monitor channels from event's or focused display.
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700971 addGlobalMonitoringTargetsLocked(inputTargets, getTargetDisplayId(*entry));
Michael Wrightd02c5b62014-02-10 15:10:22 -0800972
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800973 if (isPointerEvent) {
974 ssize_t stateIndex = mTouchStatesByDisplay.indexOfKey(entry->displayId);
975 if (stateIndex >= 0) {
976 const TouchState& state = mTouchStatesByDisplay.valueAt(stateIndex);
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800977 if (!state.portalWindows.empty()) {
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800978 // The event has gone through these portal windows, so we add monitoring targets of
979 // the corresponding displays as well.
980 for (size_t i = 0; i < state.portalWindows.size(); i++) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800981 const InputWindowInfo* windowInfo = state.portalWindows[i]->getInfo();
Michael Wright3dd60e22019-03-27 22:06:44 +0000982 addGlobalMonitoringTargetsLocked(inputTargets, windowInfo->portalToDisplayId,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700983 -windowInfo->frameLeft, -windowInfo->frameTop);
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800984 }
985 }
986 }
987 }
988
Michael Wrightd02c5b62014-02-10 15:10:22 -0800989 // Dispatch the motion.
990 if (conflictingPointerActions) {
991 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
Garfield Tan0fc2fa72019-08-29 17:22:15 -0700992 "conflicting pointer actions");
Michael Wrightd02c5b62014-02-10 15:10:22 -0800993 synthesizeCancelationEventsForAllConnectionsLocked(options);
994 }
995 dispatchEventLocked(currentTime, entry, inputTargets);
996 return true;
997}
998
Siarhei Vishniakoud2770042019-10-29 11:08:14 -0700999void InputDispatcher::logOutboundMotionDetails(const char* prefix, const MotionEntry& entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001000#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakou777a10b2018-01-31 16:45:06 -08001001 ALOGD("%seventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001002 ", policyFlags=0x%x, "
1003 "action=0x%x, actionButton=0x%x, flags=0x%x, "
1004 "metaState=0x%x, buttonState=0x%x,"
1005 "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, downTime=%" PRId64,
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001006 prefix, entry.eventTime, entry.deviceId, entry.source, entry.displayId, entry.policyFlags,
1007 entry.action, entry.actionButton, entry.flags, entry.metaState, entry.buttonState,
1008 entry.edgeFlags, entry.xPrecision, entry.yPrecision, entry.downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001009
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001010 for (uint32_t i = 0; i < entry.pointerCount; i++) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001011 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",
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001015 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
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001038 pokeUserActivityLocked(*eventEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001039
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 {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001045 if (DEBUG_FOCUS) {
1046 ALOGD("Dropping event delivery to target with channel '%s' because it "
1047 "is no longer registered with the input dispatcher.",
1048 inputTarget.inputChannel->getName().c_str());
1049 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001050 }
1051 }
1052}
1053
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001054int32_t InputDispatcher::handleTargetsNotReadyLocked(
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001055 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) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001060 if (DEBUG_FOCUS) {
1061 ALOGD("Waiting for system to become ready for input. Reason: %s", reason);
1062 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001063 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) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001071 if (DEBUG_FOCUS) {
1072 ALOGD("Waiting for application to become ready for input: %s. Reason: %s",
1073 getApplicationWindowLabel(applicationHandle, windowHandle).c_str(), reason);
1074 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001075 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) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001105 onANRLocked(currentTime, applicationHandle, windowHandle, entry.eventTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001106 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() {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001163 if (DEBUG_FOCUS) {
1164 ALOGD("Resetting ANR timeouts.");
1165 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001166
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 */
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001177int32_t InputDispatcher::getTargetDisplayId(const EventEntry& entry) {
Tiger Huang721e26f2018-07-24 22:26:19 +08001178 int32_t displayId;
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001179 switch (entry.type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001180 case EventEntry::TYPE_KEY: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001181 const KeyEntry& keyEntry = static_cast<const KeyEntry&>(entry);
1182 displayId = keyEntry.displayId;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001183 break;
1184 }
1185 case EventEntry::TYPE_MOTION: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001186 const MotionEntry& motionEntry = static_cast<const MotionEntry&>(entry);
1187 displayId = motionEntry.displayId;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001188 break;
1189 }
1190 default: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001191 ALOGE("Unsupported event type '%" PRId32 "' for target display.", entry.type);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001192 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,
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001199 const EventEntry& entry,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001200 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.
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001232 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);
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001257 if (DEBUG_FOCUS) {
1258 ALOGD("findFocusedWindow finished: injectionResult=%d, "
1259 "timeSpentWaitingForApplication=%0.1fms",
1260 injectionResult, timeSpentWaitingForApplication / 1000000.0);
1261 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001262 return injectionResult;
1263}
1264
1265int32_t InputDispatcher::findTouchedWindowTargetsLocked(nsecs_t currentTime,
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001266 const MotionEntry& entry,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001267 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.
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001279 int32_t displayId = entry.displayId;
1280 int32_t action = entry.action;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001281 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 &&
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001300 (mTempTouchState.deviceId != entry.deviceId || mTempTouchState.source != entry.source ||
1301 mTempTouchState.displayId != displayId);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001302 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);
Siarhei Vishniakoud2770042019-10-29 11:08:14 -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) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001312 if (DEBUG_FOCUS) {
1313 ALOGD("Dropping event because a pointer for a different device is already down "
1314 "in display %" PRId32,
1315 displayId);
1316 }
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;
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001325 mTempTouchState.deviceId = entry.deviceId;
1326 mTempTouchState.source = entry.source;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001327 mTempTouchState.displayId = displayId;
1328 isSplit = false;
Kevin Schoedel1eb587b2017-05-03 13:58:56 -04001329 } else if (switchedDevice && maskedAction == AMOTION_EVENT_ACTION_MOVE) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001330 if (DEBUG_FOCUS) {
1331 ALOGI("Dropping move event because a pointer for a different device is already active "
1332 "in display %" PRId32,
1333 displayId);
1334 }
Kevin Schoedel1eb587b2017-05-03 13:58:56 -04001335 // 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) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001350 x = int32_t(entry.xCursorPosition);
1351 y = int32_t(entry.yCursorPosition);
Garfield Tan00f511d2019-06-12 16:55:40 -07001352 } else {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001353 x = int32_t(entry.pointerCoords[pointerIndex].getAxisValue(AMOTION_EVENT_AXIS_X));
1354 y = int32_t(entry.pointerCoords[pointerIndex].getAxisValue(AMOTION_EVENT_AXIS_Y));
Garfield Tan00f511d2019-06-12 16:55:40 -07001355 }
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) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001412 uint32_t pointerId = entry.pointerProperties[pointerIndex].id;
Michael Wright3dd60e22019-03-27 22:06:44 +00001413 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) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001424 if (DEBUG_FOCUS) {
1425 ALOGD("Dropping event because the pointer is not down or we previously "
1426 "dropped the pointer down event in display %" PRId32,
1427 displayId);
1428 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001429 injectionResult = INPUT_EVENT_INJECTION_FAILED;
1430 goto Failed;
1431 }
1432
1433 // Check whether touches should slip outside of the current foreground window.
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001434 if (maskedAction == AMOTION_EVENT_ACTION_MOVE && entry.pointerCount == 1 &&
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001435 mTempTouchState.isSlippery()) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001436 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));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001438
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) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001445 if (DEBUG_FOCUS) {
1446 ALOGD("Touch is slipping out of window %s into window %s in display %" PRId32,
1447 oldTouchedWindowHandle->getName().c_str(),
1448 newTouchedWindowHandle->getName().c_str(), displayId);
1449 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001450 // 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) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001471 pointerIds.markBit(entry.pointerProperties[0].id);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001472 }
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;
Siarhei Vishniakoud2770042019-10-29 11:08:14 -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) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001518 if (DEBUG_FOCUS) {
1519 ALOGD("Dropping event because there is no touched foreground window in display "
1520 "%" PRId32 " or gesture monitor to receive it.",
1521 displayId);
1522 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001523 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) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -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) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001626 if (DEBUG_FOCUS) {
1627 ALOGD("Conflicting pointer actions: Switched to a different device.");
1628 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001629 *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) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001635 if (DEBUG_FOCUS) {
1636 ALOGD("Conflicting pointer actions: Hover received while pointer was "
1637 "down.");
1638 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001639 *outConflictingPointerActions = true;
1640 }
Jeff Brownf086ddb2014-02-11 14:28:48 -08001641 mTempTouchState.reset();
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001642 if (maskedAction == AMOTION_EVENT_ACTION_HOVER_ENTER ||
1643 maskedAction == AMOTION_EVENT_ACTION_HOVER_MOVE) {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001644 mTempTouchState.deviceId = entry.deviceId;
1645 mTempTouchState.source = entry.source;
Jeff Brownf086ddb2014-02-11 14:28:48 -08001646 mTempTouchState.displayId = displayId;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001647 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001648 } else if (maskedAction == AMOTION_EVENT_ACTION_UP ||
1649 maskedAction == AMOTION_EVENT_ACTION_CANCEL) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001650 // All pointers up or canceled.
Jeff Brownf086ddb2014-02-11 14:28:48 -08001651 mTempTouchState.reset();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001652 } else if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
1653 // First pointer went down.
Jeff Brownf086ddb2014-02-11 14:28:48 -08001654 if (oldState && oldState->down) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001655 if (DEBUG_FOCUS) {
1656 ALOGD("Conflicting pointer actions: Down received while already down.");
1657 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001658 *outConflictingPointerActions = true;
1659 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001660 } else if (maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) {
1661 // One pointer went up.
1662 if (isSplit) {
1663 int32_t pointerIndex = getMotionEventActionPointerIndex(action);
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001664 uint32_t pointerId = entry.pointerProperties[pointerIndex].id;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001665
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001666 for (size_t i = 0; i < mTempTouchState.windows.size();) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001667 TouchedWindow& touchedWindow = mTempTouchState.windows[i];
Michael Wrightd02c5b62014-02-10 15:10:22 -08001668 if (touchedWindow.targetFlags & InputTarget::FLAG_SPLIT) {
1669 touchedWindow.pointerIds.clearBit(pointerId);
1670 if (touchedWindow.pointerIds.isEmpty()) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001671 mTempTouchState.windows.erase(mTempTouchState.windows.begin() + i);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001672 continue;
1673 }
1674 }
1675 i += 1;
1676 }
1677 }
Jeff Brownf086ddb2014-02-11 14:28:48 -08001678 }
1679
1680 // Save changes unless the action was scroll in which case the temporary touch
1681 // state was only valid for this one action.
1682 if (maskedAction != AMOTION_EVENT_ACTION_SCROLL) {
1683 if (mTempTouchState.displayId >= 0) {
1684 if (oldStateIndex >= 0) {
1685 mTouchStatesByDisplay.editValueAt(oldStateIndex).copyFrom(mTempTouchState);
1686 } else {
1687 mTouchStatesByDisplay.add(displayId, mTempTouchState);
1688 }
1689 } else if (oldStateIndex >= 0) {
1690 mTouchStatesByDisplay.removeItemsAt(oldStateIndex);
1691 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001692 }
1693
1694 // Update hover state.
1695 mLastHoverWindowHandle = newHoverWindowHandle;
1696 }
1697 } else {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001698 if (DEBUG_FOCUS) {
1699 ALOGD("Not updating touch focus because injection was denied.");
1700 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001701 }
1702
1703Unresponsive:
1704 // Reset temporary touch state to ensure we release unnecessary references to input channels.
1705 mTempTouchState.reset();
1706
1707 nsecs_t timeSpentWaitingForApplication = getTimeSpentWaitingForApplicationLocked(currentTime);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001708 updateDispatchStatistics(currentTime, entry, injectionResult, timeSpentWaitingForApplication);
Siarhei Vishniakou86587282019-09-09 18:20:15 +01001709 if (DEBUG_FOCUS) {
1710 ALOGD("findTouchedWindow finished: injectionResult=%d, injectionPermission=%d, "
1711 "timeSpentWaitingForApplication=%0.1fms",
1712 injectionResult, injectionPermission, timeSpentWaitingForApplication / 1000000.0);
1713 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001714 return injectionResult;
1715}
1716
1717void InputDispatcher::addWindowTargetLocked(const sp<InputWindowHandle>& windowHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001718 int32_t targetFlags, BitSet32 pointerIds,
1719 std::vector<InputTarget>& inputTargets) {
Arthur Hungceeb5d72018-12-05 16:14:18 +08001720 sp<InputChannel> inputChannel = getInputChannelLocked(windowHandle->getToken());
1721 if (inputChannel == nullptr) {
1722 ALOGW("Window %s already unregistered input channel", windowHandle->getName().c_str());
1723 return;
1724 }
1725
Michael Wrightd02c5b62014-02-10 15:10:22 -08001726 const InputWindowInfo* windowInfo = windowHandle->getInfo();
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001727 InputTarget target;
Arthur Hungceeb5d72018-12-05 16:14:18 +08001728 target.inputChannel = inputChannel;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001729 target.flags = targetFlags;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001730 target.xOffset = -windowInfo->frameLeft;
1731 target.yOffset = -windowInfo->frameTop;
Robert Carre07e1032018-11-26 12:55:53 -08001732 target.globalScaleFactor = windowInfo->globalScaleFactor;
1733 target.windowXScale = windowInfo->windowXScale;
1734 target.windowYScale = windowInfo->windowYScale;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001735 target.pointerIds = pointerIds;
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001736 inputTargets.push_back(target);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001737}
1738
Michael Wright3dd60e22019-03-27 22:06:44 +00001739void InputDispatcher::addGlobalMonitoringTargetsLocked(std::vector<InputTarget>& inputTargets,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001740 int32_t displayId, float xOffset,
1741 float yOffset) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001742 std::unordered_map<int32_t, std::vector<Monitor>>::const_iterator it =
1743 mGlobalMonitorsByDisplay.find(displayId);
1744
1745 if (it != mGlobalMonitorsByDisplay.end()) {
1746 const std::vector<Monitor>& monitors = it->second;
1747 for (const Monitor& monitor : monitors) {
1748 addMonitoringTargetLocked(monitor, xOffset, yOffset, inputTargets);
Arthur Hung2fbf37f2018-09-13 18:16:41 +08001749 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001750 }
1751}
1752
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001753void InputDispatcher::addMonitoringTargetLocked(const Monitor& monitor, float xOffset,
1754 float yOffset,
1755 std::vector<InputTarget>& inputTargets) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001756 InputTarget target;
1757 target.inputChannel = monitor.inputChannel;
1758 target.flags = InputTarget::FLAG_DISPATCH_AS_IS;
1759 target.xOffset = xOffset;
1760 target.yOffset = yOffset;
1761 target.pointerIds.clear();
1762 target.globalScaleFactor = 1.0f;
1763 inputTargets.push_back(target);
1764}
1765
Michael Wrightd02c5b62014-02-10 15:10:22 -08001766bool InputDispatcher::checkInjectionPermission(const sp<InputWindowHandle>& windowHandle,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001767 const InjectionState* injectionState) {
1768 if (injectionState &&
1769 (windowHandle == nullptr ||
1770 windowHandle->getInfo()->ownerUid != injectionState->injectorUid) &&
1771 !hasInjectionPermission(injectionState->injectorPid, injectionState->injectorUid)) {
Yi Kong9b14ac62018-07-17 13:48:38 -07001772 if (windowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001773 ALOGW("Permission denied: injecting event from pid %d uid %d to window %s "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001774 "owned by uid %d",
1775 injectionState->injectorPid, injectionState->injectorUid,
1776 windowHandle->getName().c_str(), windowHandle->getInfo()->ownerUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001777 } else {
1778 ALOGW("Permission denied: injecting event from pid %d uid %d",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001779 injectionState->injectorPid, injectionState->injectorUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001780 }
1781 return false;
1782 }
1783 return true;
1784}
1785
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001786bool InputDispatcher::isWindowObscuredAtPointLocked(const sp<InputWindowHandle>& windowHandle,
1787 int32_t x, int32_t y) const {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001788 int32_t displayId = windowHandle->getInfo()->displayId;
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001789 const std::vector<sp<InputWindowHandle>> windowHandles = getWindowHandlesLocked(displayId);
1790 for (const sp<InputWindowHandle>& otherHandle : windowHandles) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001791 if (otherHandle == windowHandle) {
1792 break;
1793 }
1794
1795 const InputWindowInfo* otherInfo = otherHandle->getInfo();
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001796 if (otherInfo->displayId == displayId && otherInfo->visible &&
1797 !otherInfo->isTrustedOverlay() && otherInfo->frameContainsPoint(x, y)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001798 return true;
1799 }
1800 }
1801 return false;
1802}
1803
Michael Wrightcdcd8f22016-03-22 16:52:13 -07001804bool InputDispatcher::isWindowObscuredLocked(const sp<InputWindowHandle>& windowHandle) const {
1805 int32_t displayId = windowHandle->getInfo()->displayId;
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001806 const std::vector<sp<InputWindowHandle>> windowHandles = getWindowHandlesLocked(displayId);
Michael Wrightcdcd8f22016-03-22 16:52:13 -07001807 const InputWindowInfo* windowInfo = windowHandle->getInfo();
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001808 for (const sp<InputWindowHandle>& otherHandle : windowHandles) {
Michael Wrightcdcd8f22016-03-22 16:52:13 -07001809 if (otherHandle == windowHandle) {
1810 break;
1811 }
1812
1813 const InputWindowInfo* otherInfo = otherHandle->getInfo();
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001814 if (otherInfo->displayId == displayId && otherInfo->visible &&
1815 !otherInfo->isTrustedOverlay() && otherInfo->overlaps(windowInfo)) {
Michael Wrightcdcd8f22016-03-22 16:52:13 -07001816 return true;
1817 }
1818 }
1819 return false;
1820}
1821
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001822std::string InputDispatcher::checkWindowReadyForMoreInputLocked(
1823 nsecs_t currentTime, const sp<InputWindowHandle>& windowHandle,
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001824 const EventEntry& eventEntry, const char* targetType) {
Jeff Brownffb49772014-10-10 19:01:34 -07001825 // If the window is paused then keep waiting.
1826 if (windowHandle->getInfo()->paused) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001827 return StringPrintf("Waiting because the %s window is paused.", targetType);
Jeff Brownffb49772014-10-10 19:01:34 -07001828 }
1829
1830 // If the window's connection is not registered then keep waiting.
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07001831 sp<Connection> connection =
1832 getConnectionLocked(getInputChannelLocked(windowHandle->getToken()));
1833 if (connection == nullptr) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001834 return StringPrintf("Waiting because the %s window's input channel is not "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001835 "registered with the input dispatcher. The window may be in the "
1836 "process of being removed.",
1837 targetType);
Jeff Brownffb49772014-10-10 19:01:34 -07001838 }
1839
1840 // If the connection is dead then keep waiting.
Jeff Brownffb49772014-10-10 19:01:34 -07001841 if (connection->status != Connection::STATUS_NORMAL) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001842 return StringPrintf("Waiting because the %s window's input connection is %s."
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001843 "The window may be in the process of being removed.",
1844 targetType, connection->getStatusLabel());
Jeff Brownffb49772014-10-10 19:01:34 -07001845 }
1846
1847 // If the connection is backed up then keep waiting.
1848 if (connection->inputPublisherBlocked) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001849 return StringPrintf("Waiting because the %s window's input channel is full. "
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07001850 "Outbound queue length: %zu. Wait queue length: %zu.",
1851 targetType, connection->outboundQueue.size(),
1852 connection->waitQueue.size());
Jeff Brownffb49772014-10-10 19:01:34 -07001853 }
1854
1855 // Ensure that the dispatch queues aren't too far backed up for this event.
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001856 if (eventEntry.type == EventEntry::TYPE_KEY) {
Jeff Brownffb49772014-10-10 19:01:34 -07001857 // If the event is a key event, then we must wait for all previous events to
1858 // complete before delivering it because previous events may have the
1859 // side-effect of transferring focus to a different window and we want to
1860 // ensure that the following keys are sent to the new window.
1861 //
1862 // Suppose the user touches a button in a window then immediately presses "A".
1863 // If the button causes a pop-up window to appear then we want to ensure that
1864 // the "A" key is delivered to the new pop-up window. This is because users
1865 // often anticipate pending UI changes when typing on a keyboard.
1866 // To obtain this behavior, we must serialize key events with respect to all
1867 // prior input events.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07001868 if (!connection->outboundQueue.empty() || !connection->waitQueue.empty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001869 return StringPrintf("Waiting to send key event because the %s window has not "
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07001870 "finished processing all of the input events that were previously "
1871 "delivered to it. Outbound queue length: %zu. Wait queue length: "
1872 "%zu.",
1873 targetType, connection->outboundQueue.size(),
1874 connection->waitQueue.size());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001875 }
Jeff Brownffb49772014-10-10 19:01:34 -07001876 } else {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001877 // Touch events can always be sent to a window immediately because the user intended
1878 // to touch whatever was visible at the time. Even if focus changes or a new
1879 // window appears moments later, the touch event was meant to be delivered to
1880 // whatever window happened to be on screen at the time.
1881 //
1882 // Generic motion events, such as trackball or joystick events are a little trickier.
1883 // Like key events, generic motion events are delivered to the focused window.
1884 // Unlike key events, generic motion events don't tend to transfer focus to other
1885 // windows and it is not important for them to be serialized. So we prefer to deliver
1886 // generic motion events as soon as possible to improve efficiency and reduce lag
1887 // through batching.
1888 //
1889 // The one case where we pause input event delivery is when the wait queue is piling
1890 // up with lots of events because the application is not responding.
1891 // This condition ensures that ANRs are detected reliably.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07001892 if (!connection->waitQueue.empty() &&
1893 currentTime >=
1894 connection->waitQueue.front()->deliveryTime + STREAM_AHEAD_EVENT_TIMEOUT) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001895 return StringPrintf("Waiting to send non-key event because the %s window has not "
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07001896 "finished processing certain input events that were delivered to "
1897 "it over "
1898 "%0.1fms ago. Wait queue length: %zu. Wait queue head age: "
1899 "%0.1fms.",
1900 targetType, STREAM_AHEAD_EVENT_TIMEOUT * 0.000001f,
1901 connection->waitQueue.size(),
1902 (currentTime - connection->waitQueue.front()->deliveryTime) *
1903 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001904 }
1905 }
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001906 return "";
Michael Wrightd02c5b62014-02-10 15:10:22 -08001907}
1908
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001909std::string InputDispatcher::getApplicationWindowLabel(
Michael Wrightd02c5b62014-02-10 15:10:22 -08001910 const sp<InputApplicationHandle>& applicationHandle,
1911 const sp<InputWindowHandle>& windowHandle) {
Yi Kong9b14ac62018-07-17 13:48:38 -07001912 if (applicationHandle != nullptr) {
1913 if (windowHandle != nullptr) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001914 std::string label(applicationHandle->getName());
1915 label += " - ";
1916 label += windowHandle->getName();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001917 return label;
1918 } else {
1919 return applicationHandle->getName();
1920 }
Yi Kong9b14ac62018-07-17 13:48:38 -07001921 } else if (windowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08001922 return windowHandle->getName();
1923 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001924 return "<unknown application or window>";
Michael Wrightd02c5b62014-02-10 15:10:22 -08001925 }
1926}
1927
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001928void InputDispatcher::pokeUserActivityLocked(const EventEntry& eventEntry) {
Tiger Huang721e26f2018-07-24 22:26:19 +08001929 int32_t displayId = getTargetDisplayId(eventEntry);
1930 sp<InputWindowHandle> focusedWindowHandle =
1931 getValueByKey(mFocusedWindowHandlesByDisplay, displayId);
1932 if (focusedWindowHandle != nullptr) {
1933 const InputWindowInfo* info = focusedWindowHandle->getInfo();
Michael Wrightd02c5b62014-02-10 15:10:22 -08001934 if (info->inputFeatures & InputWindowInfo::INPUT_FEATURE_DISABLE_USER_ACTIVITY) {
1935#if DEBUG_DISPATCH_CYCLE
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001936 ALOGD("Not poking user activity: disabled by window '%s'.", info->name.c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001937#endif
1938 return;
1939 }
1940 }
1941
1942 int32_t eventType = USER_ACTIVITY_EVENT_OTHER;
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001943 switch (eventEntry.type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001944 case EventEntry::TYPE_MOTION: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001945 const MotionEntry& motionEntry = static_cast<const MotionEntry&>(eventEntry);
1946 if (motionEntry.action == AMOTION_EVENT_ACTION_CANCEL) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001947 return;
1948 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001949
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001950 if (MotionEvent::isTouchEvent(motionEntry.source, motionEntry.action)) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001951 eventType = USER_ACTIVITY_EVENT_TOUCH;
1952 }
1953 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001954 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001955 case EventEntry::TYPE_KEY: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001956 const KeyEntry& keyEntry = static_cast<const KeyEntry&>(eventEntry);
1957 if (keyEntry.flags & AKEY_EVENT_FLAG_CANCELED) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001958 return;
1959 }
1960 eventType = USER_ACTIVITY_EVENT_BUTTON;
1961 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001962 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001963 }
1964
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07001965 std::unique_ptr<CommandEntry> commandEntry =
1966 std::make_unique<CommandEntry>(&InputDispatcher::doPokeUserActivityLockedInterruptible);
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07001967 commandEntry->eventTime = eventEntry.eventTime;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001968 commandEntry->userActivityEventType = eventType;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07001969 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08001970}
1971
1972void InputDispatcher::prepareDispatchCycleLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001973 const sp<Connection>& connection,
1974 EventEntry* eventEntry,
1975 const InputTarget* inputTarget) {
Michael Wright3dd60e22019-03-27 22:06:44 +00001976 if (ATRACE_ENABLED()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001977 std::string message =
1978 StringPrintf("prepareDispatchCycleLocked(inputChannel=%s, sequenceNum=%" PRIu32 ")",
1979 connection->getInputChannelName().c_str(), eventEntry->sequenceNum);
Michael Wright3dd60e22019-03-27 22:06:44 +00001980 ATRACE_NAME(message.c_str());
1981 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08001982#if DEBUG_DISPATCH_CYCLE
1983 ALOGD("channel '%s' ~ prepareDispatchCycle - flags=0x%08x, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001984 "xOffset=%f, yOffset=%f, globalScaleFactor=%f, "
1985 "windowScaleFactor=(%f, %f), pointerIds=0x%x",
1986 connection->getInputChannelName().c_str(), inputTarget->flags, inputTarget->xOffset,
1987 inputTarget->yOffset, inputTarget->globalScaleFactor, inputTarget->windowXScale,
1988 inputTarget->windowYScale, inputTarget->pointerIds.value);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001989#endif
1990
1991 // Skip this event if the connection status is not normal.
1992 // We don't want to enqueue additional outbound events if the connection is broken.
1993 if (connection->status != Connection::STATUS_NORMAL) {
1994#if DEBUG_DISPATCH_CYCLE
1995 ALOGD("channel '%s' ~ Dropping event because the channel status is %s",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07001996 connection->getInputChannelName().c_str(), connection->getStatusLabel());
Michael Wrightd02c5b62014-02-10 15:10:22 -08001997#endif
1998 return;
1999 }
2000
2001 // Split a motion event if needed.
2002 if (inputTarget->flags & InputTarget::FLAG_SPLIT) {
2003 ALOG_ASSERT(eventEntry->type == EventEntry::TYPE_MOTION);
2004
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002005 const MotionEntry& originalMotionEntry = static_cast<const MotionEntry&>(*eventEntry);
2006 if (inputTarget->pointerIds.count() != originalMotionEntry.pointerCount) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002007 MotionEntry* splitMotionEntry =
2008 splitMotionEvent(originalMotionEntry, inputTarget->pointerIds);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002009 if (!splitMotionEntry) {
2010 return; // split event was dropped
2011 }
Siarhei Vishniakou86587282019-09-09 18:20:15 +01002012 if (DEBUG_FOCUS) {
2013 ALOGD("channel '%s' ~ Split motion event.",
2014 connection->getInputChannelName().c_str());
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002015 logOutboundMotionDetails(" ", *splitMotionEntry);
Siarhei Vishniakou86587282019-09-09 18:20:15 +01002016 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002017 enqueueDispatchEntriesLocked(currentTime, connection, splitMotionEntry, inputTarget);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002018 splitMotionEntry->release();
2019 return;
2020 }
2021 }
2022
2023 // Not splitting. Enqueue dispatch entries for the event as is.
2024 enqueueDispatchEntriesLocked(currentTime, connection, eventEntry, inputTarget);
2025}
2026
2027void InputDispatcher::enqueueDispatchEntriesLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002028 const sp<Connection>& connection,
2029 EventEntry* eventEntry,
2030 const InputTarget* inputTarget) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002031 if (ATRACE_ENABLED()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002032 std::string message =
2033 StringPrintf("enqueueDispatchEntriesLocked(inputChannel=%s, sequenceNum=%" PRIu32
2034 ")",
2035 connection->getInputChannelName().c_str(), eventEntry->sequenceNum);
Michael Wright3dd60e22019-03-27 22:06:44 +00002036 ATRACE_NAME(message.c_str());
2037 }
2038
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002039 bool wasEmpty = connection->outboundQueue.empty();
Michael Wrightd02c5b62014-02-10 15:10:22 -08002040
2041 // Enqueue dispatch entries for the requested modes.
chaviw8c9cf542019-03-25 13:02:48 -07002042 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002043 InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT);
chaviw8c9cf542019-03-25 13:02:48 -07002044 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002045 InputTarget::FLAG_DISPATCH_AS_OUTSIDE);
chaviw8c9cf542019-03-25 13:02:48 -07002046 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002047 InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER);
chaviw8c9cf542019-03-25 13:02:48 -07002048 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002049 InputTarget::FLAG_DISPATCH_AS_IS);
chaviw8c9cf542019-03-25 13:02:48 -07002050 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002051 InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT);
chaviw8c9cf542019-03-25 13:02:48 -07002052 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002053 InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002054
2055 // If the outbound queue was previously empty, start the dispatch cycle going.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002056 if (wasEmpty && !connection->outboundQueue.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002057 startDispatchCycleLocked(currentTime, connection);
2058 }
2059}
2060
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002061void InputDispatcher::enqueueDispatchEntryLocked(const sp<Connection>& connection,
2062 EventEntry* eventEntry,
2063 const InputTarget* inputTarget,
2064 int32_t dispatchMode) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002065 if (ATRACE_ENABLED()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002066 std::string message = StringPrintf("enqueueDispatchEntry(inputChannel=%s, dispatchMode=%s)",
2067 connection->getInputChannelName().c_str(),
2068 dispatchModeToString(dispatchMode).c_str());
Michael Wright3dd60e22019-03-27 22:06:44 +00002069 ATRACE_NAME(message.c_str());
2070 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002071 int32_t inputTargetFlags = inputTarget->flags;
2072 if (!(inputTargetFlags & dispatchMode)) {
2073 return;
2074 }
2075 inputTargetFlags = (inputTargetFlags & ~InputTarget::FLAG_DISPATCH_MASK) | dispatchMode;
2076
2077 // This is a new event.
2078 // Enqueue a new dispatch entry onto the outbound queue for this connection.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002079 DispatchEntry* dispatchEntry =
2080 new DispatchEntry(eventEntry, // increments ref
2081 inputTargetFlags, inputTarget->xOffset, inputTarget->yOffset,
2082 inputTarget->globalScaleFactor, inputTarget->windowXScale,
2083 inputTarget->windowYScale);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002084
2085 // Apply target flags and update the connection's input state.
2086 switch (eventEntry->type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002087 case EventEntry::TYPE_KEY: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002088 const KeyEntry& keyEntry = static_cast<const KeyEntry&>(*eventEntry);
2089 dispatchEntry->resolvedAction = keyEntry.action;
2090 dispatchEntry->resolvedFlags = keyEntry.flags;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002091
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002092 if (!connection->inputState.trackKey(keyEntry, dispatchEntry->resolvedAction,
2093 dispatchEntry->resolvedFlags)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002094#if DEBUG_DISPATCH_CYCLE
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002095 ALOGD("channel '%s' ~ enqueueDispatchEntryLocked: skipping inconsistent key event",
2096 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002097#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002098 delete dispatchEntry;
2099 return; // skip the inconsistent event
2100 }
2101 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002102 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002103
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002104 case EventEntry::TYPE_MOTION: {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002105 const MotionEntry& motionEntry = static_cast<const MotionEntry&>(*eventEntry);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002106 if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) {
2107 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_OUTSIDE;
2108 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT) {
2109 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_EXIT;
2110 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER) {
2111 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_ENTER;
2112 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT) {
2113 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_CANCEL;
2114 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER) {
2115 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_DOWN;
2116 } else {
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002117 dispatchEntry->resolvedAction = motionEntry.action;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002118 }
2119 if (dispatchEntry->resolvedAction == AMOTION_EVENT_ACTION_HOVER_MOVE &&
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002120 !connection->inputState.isHovering(motionEntry.deviceId, motionEntry.source,
2121 motionEntry.displayId)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002122#if DEBUG_DISPATCH_CYCLE
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002123 ALOGD("channel '%s' ~ enqueueDispatchEntryLocked: filling in missing hover enter "
2124 "event",
2125 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002126#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002127 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_ENTER;
2128 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002129
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002130 dispatchEntry->resolvedFlags = motionEntry.flags;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002131 if (dispatchEntry->targetFlags & InputTarget::FLAG_WINDOW_IS_OBSCURED) {
2132 dispatchEntry->resolvedFlags |= AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED;
2133 }
2134 if (dispatchEntry->targetFlags & InputTarget::FLAG_WINDOW_IS_PARTIALLY_OBSCURED) {
2135 dispatchEntry->resolvedFlags |= AMOTION_EVENT_FLAG_WINDOW_IS_PARTIALLY_OBSCURED;
2136 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002137
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002138 if (!connection->inputState.trackMotion(motionEntry, dispatchEntry->resolvedAction,
2139 dispatchEntry->resolvedFlags)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002140#if DEBUG_DISPATCH_CYCLE
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002141 ALOGD("channel '%s' ~ enqueueDispatchEntryLocked: skipping inconsistent motion "
2142 "event",
2143 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002144#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002145 delete dispatchEntry;
2146 return; // skip the inconsistent event
2147 }
2148
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002149 dispatchPointerDownOutsideFocus(motionEntry.source, dispatchEntry->resolvedAction,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002150 inputTarget->inputChannel->getToken());
2151
2152 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002153 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002154 }
2155
2156 // Remember that we are waiting for this dispatch to complete.
2157 if (dispatchEntry->hasForegroundTarget()) {
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002158 incrementPendingForegroundDispatches(eventEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002159 }
2160
2161 // Enqueue the dispatch entry.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002162 connection->outboundQueue.push_back(dispatchEntry);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002163 traceOutboundQueueLength(connection);
chaviw8c9cf542019-03-25 13:02:48 -07002164}
2165
chaviwfd6d3512019-03-25 13:23:49 -07002166void InputDispatcher::dispatchPointerDownOutsideFocus(uint32_t source, int32_t action,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002167 const sp<IBinder>& newToken) {
chaviw8c9cf542019-03-25 13:02:48 -07002168 int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK;
chaviwfd6d3512019-03-25 13:23:49 -07002169 uint32_t maskedSource = source & AINPUT_SOURCE_CLASS_MASK;
2170 if (maskedSource != AINPUT_SOURCE_CLASS_POINTER || maskedAction != AMOTION_EVENT_ACTION_DOWN) {
chaviw8c9cf542019-03-25 13:02:48 -07002171 return;
2172 }
2173
2174 sp<InputWindowHandle> inputWindowHandle = getWindowHandleLocked(newToken);
2175 if (inputWindowHandle == nullptr) {
2176 return;
2177 }
2178
chaviw8c9cf542019-03-25 13:02:48 -07002179 sp<InputWindowHandle> focusedWindowHandle =
Tiger Huang0683fe72019-06-03 21:50:55 +08002180 getValueByKey(mFocusedWindowHandlesByDisplay, mFocusedDisplayId);
chaviw8c9cf542019-03-25 13:02:48 -07002181
2182 bool hasFocusChanged = !focusedWindowHandle || focusedWindowHandle->getToken() != newToken;
2183
2184 if (!hasFocusChanged) {
2185 return;
2186 }
2187
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07002188 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
2189 &InputDispatcher::doOnPointerDownOutsideFocusLockedInterruptible);
chaviwfd6d3512019-03-25 13:23:49 -07002190 commandEntry->newToken = newToken;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07002191 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002192}
2193
2194void InputDispatcher::startDispatchCycleLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002195 const sp<Connection>& connection) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002196 if (ATRACE_ENABLED()) {
2197 std::string message = StringPrintf("startDispatchCycleLocked(inputChannel=%s)",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002198 connection->getInputChannelName().c_str());
Michael Wright3dd60e22019-03-27 22:06:44 +00002199 ATRACE_NAME(message.c_str());
2200 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002201#if DEBUG_DISPATCH_CYCLE
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002202 ALOGD("channel '%s' ~ startDispatchCycle", connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002203#endif
2204
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002205 while (connection->status == Connection::STATUS_NORMAL && !connection->outboundQueue.empty()) {
2206 DispatchEntry* dispatchEntry = connection->outboundQueue.front();
Michael Wrightd02c5b62014-02-10 15:10:22 -08002207 dispatchEntry->deliveryTime = currentTime;
2208
2209 // Publish the event.
2210 status_t status;
2211 EventEntry* eventEntry = dispatchEntry->eventEntry;
2212 switch (eventEntry->type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002213 case EventEntry::TYPE_KEY: {
2214 KeyEntry* keyEntry = static_cast<KeyEntry*>(eventEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002215
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002216 // Publish the key event.
2217 status = connection->inputPublisher
2218 .publishKeyEvent(dispatchEntry->seq, keyEntry->deviceId,
2219 keyEntry->source, keyEntry->displayId,
2220 dispatchEntry->resolvedAction,
2221 dispatchEntry->resolvedFlags, keyEntry->keyCode,
2222 keyEntry->scanCode, keyEntry->metaState,
2223 keyEntry->repeatCount, keyEntry->downTime,
2224 keyEntry->eventTime);
2225 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002226 }
2227
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002228 case EventEntry::TYPE_MOTION: {
2229 MotionEntry* motionEntry = static_cast<MotionEntry*>(eventEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002230
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002231 PointerCoords scaledCoords[MAX_POINTERS];
2232 const PointerCoords* usingCoords = motionEntry->pointerCoords;
2233
2234 // Set the X and Y offset depending on the input source.
2235 float xOffset, yOffset;
2236 if ((motionEntry->source & AINPUT_SOURCE_CLASS_POINTER) &&
2237 !(dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS)) {
2238 float globalScaleFactor = dispatchEntry->globalScaleFactor;
2239 float wxs = dispatchEntry->windowXScale;
2240 float wys = dispatchEntry->windowYScale;
2241 xOffset = dispatchEntry->xOffset * wxs;
2242 yOffset = dispatchEntry->yOffset * wys;
2243 if (wxs != 1.0f || wys != 1.0f || globalScaleFactor != 1.0f) {
2244 for (uint32_t i = 0; i < motionEntry->pointerCount; i++) {
2245 scaledCoords[i] = motionEntry->pointerCoords[i];
2246 scaledCoords[i].scale(globalScaleFactor, wxs, wys);
2247 }
2248 usingCoords = scaledCoords;
2249 }
2250 } else {
2251 xOffset = 0.0f;
2252 yOffset = 0.0f;
2253
2254 // We don't want the dispatch target to know.
2255 if (dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS) {
2256 for (uint32_t i = 0; i < motionEntry->pointerCount; i++) {
2257 scaledCoords[i].clear();
2258 }
2259 usingCoords = scaledCoords;
2260 }
2261 }
2262
2263 // Publish the motion event.
2264 status = connection->inputPublisher
2265 .publishMotionEvent(dispatchEntry->seq, motionEntry->deviceId,
2266 motionEntry->source, motionEntry->displayId,
2267 dispatchEntry->resolvedAction,
2268 motionEntry->actionButton,
2269 dispatchEntry->resolvedFlags,
2270 motionEntry->edgeFlags, motionEntry->metaState,
2271 motionEntry->buttonState,
2272 motionEntry->classification, xOffset, yOffset,
2273 motionEntry->xPrecision,
2274 motionEntry->yPrecision,
2275 motionEntry->xCursorPosition,
2276 motionEntry->yCursorPosition,
2277 motionEntry->downTime, motionEntry->eventTime,
2278 motionEntry->pointerCount,
2279 motionEntry->pointerProperties, usingCoords);
Siarhei Vishniakoude4bf152019-08-16 11:12:52 -05002280 reportTouchEventForStatistics(*motionEntry);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002281 break;
2282 }
2283
2284 default:
2285 ALOG_ASSERT(false);
2286 return;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002287 }
2288
2289 // Check the result.
2290 if (status) {
2291 if (status == WOULD_BLOCK) {
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002292 if (connection->waitQueue.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002293 ALOGE("channel '%s' ~ Could not publish event because the pipe is full. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002294 "This is unexpected because the wait queue is empty, so the pipe "
2295 "should be empty and we shouldn't have any problems writing an "
2296 "event to it, status=%d",
2297 connection->getInputChannelName().c_str(), status);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002298 abortBrokenDispatchCycleLocked(currentTime, connection, true /*notify*/);
2299 } else {
2300 // Pipe is full and we are waiting for the app to finish process some events
2301 // before sending more events to it.
2302#if DEBUG_DISPATCH_CYCLE
2303 ALOGD("channel '%s' ~ Could not publish event because the pipe is full, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002304 "waiting for the application to catch up",
2305 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002306#endif
2307 connection->inputPublisherBlocked = true;
2308 }
2309 } else {
2310 ALOGE("channel '%s' ~ Could not publish event due to an unexpected error, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002311 "status=%d",
2312 connection->getInputChannelName().c_str(), status);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002313 abortBrokenDispatchCycleLocked(currentTime, connection, true /*notify*/);
2314 }
2315 return;
2316 }
2317
2318 // Re-enqueue the event on the wait queue.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002319 connection->outboundQueue.erase(std::remove(connection->outboundQueue.begin(),
2320 connection->outboundQueue.end(),
2321 dispatchEntry));
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002322 traceOutboundQueueLength(connection);
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002323 connection->waitQueue.push_back(dispatchEntry);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002324 traceWaitQueueLength(connection);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002325 }
2326}
2327
2328void InputDispatcher::finishDispatchCycleLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002329 const sp<Connection>& connection, uint32_t seq,
2330 bool handled) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002331#if DEBUG_DISPATCH_CYCLE
2332 ALOGD("channel '%s' ~ finishDispatchCycle - seq=%u, handled=%s",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002333 connection->getInputChannelName().c_str(), seq, toString(handled));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002334#endif
2335
2336 connection->inputPublisherBlocked = false;
2337
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002338 if (connection->status == Connection::STATUS_BROKEN ||
2339 connection->status == Connection::STATUS_ZOMBIE) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002340 return;
2341 }
2342
2343 // Notify other system components and prepare to start the next dispatch cycle.
2344 onDispatchCycleFinishedLocked(currentTime, connection, seq, handled);
2345}
2346
2347void InputDispatcher::abortBrokenDispatchCycleLocked(nsecs_t currentTime,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002348 const sp<Connection>& connection,
2349 bool notify) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002350#if DEBUG_DISPATCH_CYCLE
2351 ALOGD("channel '%s' ~ abortBrokenDispatchCycle - notify=%s",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002352 connection->getInputChannelName().c_str(), toString(notify));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002353#endif
2354
2355 // Clear the dispatch queues.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002356 drainDispatchQueue(connection->outboundQueue);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002357 traceOutboundQueueLength(connection);
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002358 drainDispatchQueue(connection->waitQueue);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08002359 traceWaitQueueLength(connection);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002360
2361 // The connection appears to be unrecoverably broken.
2362 // Ignore already broken or zombie connections.
2363 if (connection->status == Connection::STATUS_NORMAL) {
2364 connection->status = Connection::STATUS_BROKEN;
2365
2366 if (notify) {
2367 // Notify other system components.
2368 onDispatchCycleBrokenLocked(currentTime, connection);
2369 }
2370 }
2371}
2372
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07002373void InputDispatcher::drainDispatchQueue(std::deque<DispatchEntry*>& queue) {
2374 while (!queue.empty()) {
2375 DispatchEntry* dispatchEntry = queue.front();
2376 queue.pop_front();
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08002377 releaseDispatchEntry(dispatchEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002378 }
2379}
2380
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08002381void InputDispatcher::releaseDispatchEntry(DispatchEntry* dispatchEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002382 if (dispatchEntry->hasForegroundTarget()) {
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08002383 decrementPendingForegroundDispatches(dispatchEntry->eventEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002384 }
2385 delete dispatchEntry;
2386}
2387
2388int InputDispatcher::handleReceiveCallback(int fd, int events, void* data) {
2389 InputDispatcher* d = static_cast<InputDispatcher*>(data);
2390
2391 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08002392 std::scoped_lock _l(d->mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002393
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07002394 if (d->mConnectionsByFd.find(fd) == d->mConnectionsByFd.end()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002395 ALOGE("Received spurious receive callback for unknown input channel. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002396 "fd=%d, events=0x%x",
2397 fd, events);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002398 return 0; // remove the callback
2399 }
2400
2401 bool notify;
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07002402 sp<Connection> connection = d->mConnectionsByFd[fd];
Michael Wrightd02c5b62014-02-10 15:10:22 -08002403 if (!(events & (ALOOPER_EVENT_ERROR | ALOOPER_EVENT_HANGUP))) {
2404 if (!(events & ALOOPER_EVENT_INPUT)) {
2405 ALOGW("channel '%s' ~ Received spurious callback for unhandled poll event. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002406 "events=0x%x",
2407 connection->getInputChannelName().c_str(), events);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002408 return 1;
2409 }
2410
2411 nsecs_t currentTime = now();
2412 bool gotOne = false;
2413 status_t status;
2414 for (;;) {
2415 uint32_t seq;
2416 bool handled;
2417 status = connection->inputPublisher.receiveFinishedSignal(&seq, &handled);
2418 if (status) {
2419 break;
2420 }
2421 d->finishDispatchCycleLocked(currentTime, connection, seq, handled);
2422 gotOne = true;
2423 }
2424 if (gotOne) {
2425 d->runCommandsLockedInterruptible();
2426 if (status == WOULD_BLOCK) {
2427 return 1;
2428 }
2429 }
2430
2431 notify = status != DEAD_OBJECT || !connection->monitor;
2432 if (notify) {
2433 ALOGE("channel '%s' ~ Failed to receive finished signal. status=%d",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002434 connection->getInputChannelName().c_str(), status);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002435 }
2436 } else {
2437 // Monitor channels are never explicitly unregistered.
2438 // We do it automatically when the remote endpoint is closed so don't warn
2439 // about them.
2440 notify = !connection->monitor;
2441 if (notify) {
2442 ALOGW("channel '%s' ~ Consumer closed input channel or an error occurred. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002443 "events=0x%x",
2444 connection->getInputChannelName().c_str(), events);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002445 }
2446 }
2447
2448 // Unregister the channel.
2449 d->unregisterInputChannelLocked(connection->inputChannel, notify);
2450 return 0; // remove the callback
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002451 } // release lock
Michael Wrightd02c5b62014-02-10 15:10:22 -08002452}
2453
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002454void InputDispatcher::synthesizeCancelationEventsForAllConnectionsLocked(
Michael Wrightd02c5b62014-02-10 15:10:22 -08002455 const CancelationOptions& options) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07002456 for (const auto& pair : mConnectionsByFd) {
2457 synthesizeCancelationEventsForConnectionLocked(pair.second, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002458 }
2459}
2460
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002461void InputDispatcher::synthesizeCancelationEventsForMonitorsLocked(
Michael Wrightfa13dcf2015-06-12 13:25:11 +01002462 const CancelationOptions& options) {
Michael Wright3dd60e22019-03-27 22:06:44 +00002463 synthesizeCancelationEventsForMonitorsLocked(options, mGlobalMonitorsByDisplay);
2464 synthesizeCancelationEventsForMonitorsLocked(options, mGestureMonitorsByDisplay);
2465}
2466
2467void InputDispatcher::synthesizeCancelationEventsForMonitorsLocked(
2468 const CancelationOptions& options,
2469 std::unordered_map<int32_t, std::vector<Monitor>>& monitorsByDisplay) {
2470 for (const auto& it : monitorsByDisplay) {
2471 const std::vector<Monitor>& monitors = it.second;
2472 for (const Monitor& monitor : monitors) {
2473 synthesizeCancelationEventsForInputChannelLocked(monitor.inputChannel, options);
Arthur Hung2fbf37f2018-09-13 18:16:41 +08002474 }
Michael Wrightfa13dcf2015-06-12 13:25:11 +01002475 }
2476}
2477
Michael Wrightd02c5b62014-02-10 15:10:22 -08002478void InputDispatcher::synthesizeCancelationEventsForInputChannelLocked(
2479 const sp<InputChannel>& channel, const CancelationOptions& options) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07002480 sp<Connection> connection = getConnectionLocked(channel);
2481 if (connection == nullptr) {
2482 return;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002483 }
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07002484
2485 synthesizeCancelationEventsForConnectionLocked(connection, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002486}
2487
2488void InputDispatcher::synthesizeCancelationEventsForConnectionLocked(
2489 const sp<Connection>& connection, const CancelationOptions& options) {
2490 if (connection->status == Connection::STATUS_BROKEN) {
2491 return;
2492 }
2493
2494 nsecs_t currentTime = now();
2495
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002496 std::vector<EventEntry*> cancelationEvents;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002497 connection->inputState.synthesizeCancelationEvents(currentTime, cancelationEvents, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002498
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002499 if (!cancelationEvents.empty()) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002500#if DEBUG_OUTBOUND_EVENT_DETAILS
Siarhei Vishniakou5d83f602017-09-12 12:40:29 -07002501 ALOGD("channel '%s' ~ Synthesized %zu cancelation events to bring channel back in sync "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002502 "with reality: %s, mode=%d.",
2503 connection->getInputChannelName().c_str(), cancelationEvents.size(), options.reason,
2504 options.mode);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002505#endif
2506 for (size_t i = 0; i < cancelationEvents.size(); i++) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002507 EventEntry* cancelationEventEntry = cancelationEvents[i];
Michael Wrightd02c5b62014-02-10 15:10:22 -08002508 switch (cancelationEventEntry->type) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002509 case EventEntry::TYPE_KEY:
2510 logOutboundKeyDetails("cancel - ",
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002511 static_cast<const KeyEntry&>(*cancelationEventEntry));
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002512 break;
2513 case EventEntry::TYPE_MOTION:
2514 logOutboundMotionDetails("cancel - ",
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002515 static_cast<const MotionEntry&>(
2516 *cancelationEventEntry));
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002517 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002518 }
2519
2520 InputTarget target;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002521 sp<InputWindowHandle> windowHandle =
2522 getWindowHandleLocked(connection->inputChannel->getToken());
Yi Kong9b14ac62018-07-17 13:48:38 -07002523 if (windowHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002524 const InputWindowInfo* windowInfo = windowHandle->getInfo();
2525 target.xOffset = -windowInfo->frameLeft;
2526 target.yOffset = -windowInfo->frameTop;
Robert Carre07e1032018-11-26 12:55:53 -08002527 target.globalScaleFactor = windowInfo->globalScaleFactor;
2528 target.windowXScale = windowInfo->windowXScale;
2529 target.windowYScale = windowInfo->windowYScale;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002530 } else {
2531 target.xOffset = 0;
2532 target.yOffset = 0;
Robert Carre07e1032018-11-26 12:55:53 -08002533 target.globalScaleFactor = 1.0f;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002534 }
2535 target.inputChannel = connection->inputChannel;
2536 target.flags = InputTarget::FLAG_DISPATCH_AS_IS;
2537
chaviw8c9cf542019-03-25 13:02:48 -07002538 enqueueDispatchEntryLocked(connection, cancelationEventEntry, // increments ref
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002539 &target, InputTarget::FLAG_DISPATCH_AS_IS);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002540
2541 cancelationEventEntry->release();
2542 }
2543
2544 startDispatchCycleLocked(currentTime, connection);
2545 }
2546}
2547
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002548MotionEntry* InputDispatcher::splitMotionEvent(const MotionEntry& originalMotionEntry,
Garfield Tane84e6f92019-08-29 17:28:41 -07002549 BitSet32 pointerIds) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002550 ALOG_ASSERT(pointerIds.value != 0);
2551
2552 uint32_t splitPointerIndexMap[MAX_POINTERS];
2553 PointerProperties splitPointerProperties[MAX_POINTERS];
2554 PointerCoords splitPointerCoords[MAX_POINTERS];
2555
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002556 uint32_t originalPointerCount = originalMotionEntry.pointerCount;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002557 uint32_t splitPointerCount = 0;
2558
2559 for (uint32_t originalPointerIndex = 0; originalPointerIndex < originalPointerCount;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002560 originalPointerIndex++) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002561 const PointerProperties& pointerProperties =
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002562 originalMotionEntry.pointerProperties[originalPointerIndex];
Michael Wrightd02c5b62014-02-10 15:10:22 -08002563 uint32_t pointerId = uint32_t(pointerProperties.id);
2564 if (pointerIds.hasBit(pointerId)) {
2565 splitPointerIndexMap[splitPointerCount] = originalPointerIndex;
2566 splitPointerProperties[splitPointerCount].copyFrom(pointerProperties);
2567 splitPointerCoords[splitPointerCount].copyFrom(
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002568 originalMotionEntry.pointerCoords[originalPointerIndex]);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002569 splitPointerCount += 1;
2570 }
2571 }
2572
2573 if (splitPointerCount != pointerIds.count()) {
2574 // This is bad. We are missing some of the pointers that we expected to deliver.
2575 // Most likely this indicates that we received an ACTION_MOVE events that has
2576 // different pointer ids than we expected based on the previous ACTION_DOWN
2577 // or ACTION_POINTER_DOWN events that caused us to decide to split the pointers
2578 // in this way.
2579 ALOGW("Dropping split motion event because the pointer count is %d but "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002580 "we expected there to be %d pointers. This probably means we received "
2581 "a broken sequence of pointer ids from the input device.",
2582 splitPointerCount, pointerIds.count());
Yi Kong9b14ac62018-07-17 13:48:38 -07002583 return nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002584 }
2585
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002586 int32_t action = originalMotionEntry.action;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002587 int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002588 if (maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN ||
2589 maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002590 int32_t originalPointerIndex = getMotionEventActionPointerIndex(action);
2591 const PointerProperties& pointerProperties =
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002592 originalMotionEntry.pointerProperties[originalPointerIndex];
Michael Wrightd02c5b62014-02-10 15:10:22 -08002593 uint32_t pointerId = uint32_t(pointerProperties.id);
2594 if (pointerIds.hasBit(pointerId)) {
2595 if (pointerIds.count() == 1) {
2596 // The first/last pointer went down/up.
2597 action = maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002598 ? AMOTION_EVENT_ACTION_DOWN
2599 : AMOTION_EVENT_ACTION_UP;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002600 } else {
2601 // A secondary pointer went down/up.
2602 uint32_t splitPointerIndex = 0;
2603 while (pointerId != uint32_t(splitPointerProperties[splitPointerIndex].id)) {
2604 splitPointerIndex += 1;
2605 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002606 action = maskedAction |
2607 (splitPointerIndex << AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002608 }
2609 } else {
2610 // An unrelated pointer changed.
2611 action = AMOTION_EVENT_ACTION_MOVE;
2612 }
2613 }
2614
Garfield Tan00f511d2019-06-12 16:55:40 -07002615 MotionEntry* splitMotionEntry =
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002616 new MotionEntry(originalMotionEntry.sequenceNum, originalMotionEntry.eventTime,
2617 originalMotionEntry.deviceId, originalMotionEntry.source,
2618 originalMotionEntry.displayId, originalMotionEntry.policyFlags, action,
2619 originalMotionEntry.actionButton, originalMotionEntry.flags,
2620 originalMotionEntry.metaState, originalMotionEntry.buttonState,
2621 originalMotionEntry.classification, originalMotionEntry.edgeFlags,
2622 originalMotionEntry.xPrecision, originalMotionEntry.yPrecision,
2623 originalMotionEntry.xCursorPosition,
2624 originalMotionEntry.yCursorPosition, originalMotionEntry.downTime,
Garfield Tan00f511d2019-06-12 16:55:40 -07002625 splitPointerCount, splitPointerProperties, splitPointerCoords, 0, 0);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002626
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07002627 if (originalMotionEntry.injectionState) {
2628 splitMotionEntry->injectionState = originalMotionEntry.injectionState;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002629 splitMotionEntry->injectionState->refCount += 1;
2630 }
2631
2632 return splitMotionEntry;
2633}
2634
2635void InputDispatcher::notifyConfigurationChanged(const NotifyConfigurationChangedArgs* args) {
2636#if DEBUG_INBOUND_EVENT_DETAILS
Siarhei Vishniakou5d83f602017-09-12 12:40:29 -07002637 ALOGD("notifyConfigurationChanged - eventTime=%" PRId64, args->eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002638#endif
2639
2640 bool needWake;
2641 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08002642 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002643
Prabir Pradhan42611e02018-11-27 14:04:02 -08002644 ConfigurationChangedEntry* newEntry =
2645 new ConfigurationChangedEntry(args->sequenceNum, args->eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002646 needWake = enqueueInboundEventLocked(newEntry);
2647 } // release lock
2648
2649 if (needWake) {
2650 mLooper->wake();
2651 }
2652}
2653
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05002654/**
2655 * If one of the meta shortcuts is detected, process them here:
2656 * Meta + Backspace -> generate BACK
2657 * Meta + Enter -> generate HOME
2658 * This will potentially overwrite keyCode and metaState.
2659 */
2660void InputDispatcher::accelerateMetaShortcuts(const int32_t deviceId, const int32_t action,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002661 int32_t& keyCode, int32_t& metaState) {
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05002662 if (metaState & AMETA_META_ON && action == AKEY_EVENT_ACTION_DOWN) {
2663 int32_t newKeyCode = AKEYCODE_UNKNOWN;
2664 if (keyCode == AKEYCODE_DEL) {
2665 newKeyCode = AKEYCODE_BACK;
2666 } else if (keyCode == AKEYCODE_ENTER) {
2667 newKeyCode = AKEYCODE_HOME;
2668 }
2669 if (newKeyCode != AKEYCODE_UNKNOWN) {
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08002670 std::scoped_lock _l(mLock);
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05002671 struct KeyReplacement replacement = {keyCode, deviceId};
2672 mReplacedKeys.add(replacement, newKeyCode);
2673 keyCode = newKeyCode;
2674 metaState &= ~(AMETA_META_ON | AMETA_META_LEFT_ON | AMETA_META_RIGHT_ON);
2675 }
2676 } else if (action == AKEY_EVENT_ACTION_UP) {
2677 // In order to maintain a consistent stream of up and down events, check to see if the key
2678 // going up is one we've replaced in a down event and haven't yet replaced in an up event,
2679 // even if the modifier was released between the down and the up events.
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08002680 std::scoped_lock _l(mLock);
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05002681 struct KeyReplacement replacement = {keyCode, deviceId};
2682 ssize_t index = mReplacedKeys.indexOfKey(replacement);
2683 if (index >= 0) {
2684 keyCode = mReplacedKeys.valueAt(index);
2685 mReplacedKeys.removeItemsAt(index);
2686 metaState &= ~(AMETA_META_ON | AMETA_META_LEFT_ON | AMETA_META_RIGHT_ON);
2687 }
2688 }
2689}
2690
Michael Wrightd02c5b62014-02-10 15:10:22 -08002691void InputDispatcher::notifyKey(const NotifyKeyArgs* args) {
2692#if DEBUG_INBOUND_EVENT_DETAILS
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002693 ALOGD("notifyKey - eventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32
2694 "policyFlags=0x%x, action=0x%x, "
2695 "flags=0x%x, keyCode=0x%x, scanCode=0x%x, metaState=0x%x, downTime=%" PRId64,
2696 args->eventTime, args->deviceId, args->source, args->displayId, args->policyFlags,
2697 args->action, args->flags, args->keyCode, args->scanCode, args->metaState,
2698 args->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002699#endif
2700 if (!validateKeyEvent(args->action)) {
2701 return;
2702 }
2703
2704 uint32_t policyFlags = args->policyFlags;
2705 int32_t flags = args->flags;
2706 int32_t metaState = args->metaState;
Siarhei Vishniakou622bd322018-10-29 18:02:27 -07002707 // InputDispatcher tracks and generates key repeats on behalf of
2708 // whatever notifies it, so repeatCount should always be set to 0
2709 constexpr int32_t repeatCount = 0;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002710 if ((policyFlags & POLICY_FLAG_VIRTUAL) || (flags & AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY)) {
2711 policyFlags |= POLICY_FLAG_VIRTUAL;
2712 flags |= AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY;
2713 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002714 if (policyFlags & POLICY_FLAG_FUNCTION) {
2715 metaState |= AMETA_FUNCTION_ON;
2716 }
2717
2718 policyFlags |= POLICY_FLAG_TRUSTED;
2719
Michael Wright78f24442014-08-06 15:55:28 -07002720 int32_t keyCode = args->keyCode;
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -05002721 accelerateMetaShortcuts(args->deviceId, args->action, keyCode, metaState);
Michael Wright78f24442014-08-06 15:55:28 -07002722
Michael Wrightd02c5b62014-02-10 15:10:22 -08002723 KeyEvent event;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002724 event.initialize(args->deviceId, args->source, args->displayId, args->action, flags, keyCode,
2725 args->scanCode, metaState, repeatCount, args->downTime, args->eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002726
Michael Wright2b3c3302018-03-02 17:19:13 +00002727 android::base::Timer t;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002728 mPolicy->interceptKeyBeforeQueueing(&event, /*byref*/ policyFlags);
Michael Wright2b3c3302018-03-02 17:19:13 +00002729 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
2730 ALOGW("Excessive delay in interceptKeyBeforeQueueing; took %s ms",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002731 std::to_string(t.duration().count()).c_str());
Michael Wright2b3c3302018-03-02 17:19:13 +00002732 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002733
Michael Wrightd02c5b62014-02-10 15:10:22 -08002734 bool needWake;
2735 { // acquire lock
2736 mLock.lock();
2737
2738 if (shouldSendKeyToInputFilterLocked(args)) {
2739 mLock.unlock();
2740
2741 policyFlags |= POLICY_FLAG_FILTERED;
2742 if (!mPolicy->filterInputEvent(&event, policyFlags)) {
2743 return; // event was consumed by the filter
2744 }
2745
2746 mLock.lock();
2747 }
2748
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002749 KeyEntry* newEntry =
2750 new KeyEntry(args->sequenceNum, args->eventTime, args->deviceId, args->source,
2751 args->displayId, policyFlags, args->action, flags, keyCode,
2752 args->scanCode, metaState, repeatCount, args->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002753
2754 needWake = enqueueInboundEventLocked(newEntry);
2755 mLock.unlock();
2756 } // release lock
2757
2758 if (needWake) {
2759 mLooper->wake();
2760 }
2761}
2762
2763bool InputDispatcher::shouldSendKeyToInputFilterLocked(const NotifyKeyArgs* args) {
2764 return mInputFilterEnabled;
2765}
2766
2767void InputDispatcher::notifyMotion(const NotifyMotionArgs* args) {
2768#if DEBUG_INBOUND_EVENT_DETAILS
Siarhei Vishniakou777a10b2018-01-31 16:45:06 -08002769 ALOGD("notifyMotion - eventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32
Garfield Tan00f511d2019-06-12 16:55:40 -07002770 ", policyFlags=0x%x, "
2771 "action=0x%x, actionButton=0x%x, flags=0x%x, metaState=0x%x, buttonState=0x%x, "
2772 "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, xCursorPosition=%f, "
Garfield Tanab0ab9c2019-07-10 18:58:28 -07002773 "yCursorPosition=%f, downTime=%" PRId64,
Garfield Tan00f511d2019-06-12 16:55:40 -07002774 args->eventTime, args->deviceId, args->source, args->displayId, args->policyFlags,
2775 args->action, args->actionButton, args->flags, args->metaState, args->buttonState,
Jaewan Kim372fbe42019-10-02 10:58:46 +09002776 args->edgeFlags, args->xPrecision, args->yPrecision, args->xCursorPosition,
Garfield Tan00f511d2019-06-12 16:55:40 -07002777 args->yCursorPosition, args->downTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002778 for (uint32_t i = 0; i < args->pointerCount; i++) {
2779 ALOGD(" Pointer %d: id=%d, toolType=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002780 "x=%f, y=%f, pressure=%f, size=%f, "
2781 "touchMajor=%f, touchMinor=%f, toolMajor=%f, toolMinor=%f, "
2782 "orientation=%f",
2783 i, args->pointerProperties[i].id, args->pointerProperties[i].toolType,
2784 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_X),
2785 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_Y),
2786 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_PRESSURE),
2787 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_SIZE),
2788 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR),
2789 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR),
2790 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR),
2791 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR),
2792 args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION));
Michael Wrightd02c5b62014-02-10 15:10:22 -08002793 }
2794#endif
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002795 if (!validateMotionEvent(args->action, args->actionButton, args->pointerCount,
2796 args->pointerProperties)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002797 return;
2798 }
2799
2800 uint32_t policyFlags = args->policyFlags;
2801 policyFlags |= POLICY_FLAG_TRUSTED;
Michael Wright2b3c3302018-03-02 17:19:13 +00002802
2803 android::base::Timer t;
Charles Chen3611f1f2019-01-29 17:26:18 +08002804 mPolicy->interceptMotionBeforeQueueing(args->displayId, args->eventTime, /*byref*/ policyFlags);
Michael Wright2b3c3302018-03-02 17:19:13 +00002805 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
2806 ALOGW("Excessive delay in interceptMotionBeforeQueueing; took %s ms",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002807 std::to_string(t.duration().count()).c_str());
Michael Wright2b3c3302018-03-02 17:19:13 +00002808 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002809
2810 bool needWake;
2811 { // acquire lock
2812 mLock.lock();
2813
2814 if (shouldSendMotionToInputFilterLocked(args)) {
2815 mLock.unlock();
2816
2817 MotionEvent event;
Garfield Tan00f511d2019-06-12 16:55:40 -07002818 event.initialize(args->deviceId, args->source, args->displayId, args->action,
2819 args->actionButton, args->flags, args->edgeFlags, args->metaState,
2820 args->buttonState, args->classification, 0, 0, args->xPrecision,
2821 args->yPrecision, args->xCursorPosition, args->yCursorPosition,
2822 args->downTime, args->eventTime, args->pointerCount,
2823 args->pointerProperties, args->pointerCoords);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002824
2825 policyFlags |= POLICY_FLAG_FILTERED;
2826 if (!mPolicy->filterInputEvent(&event, policyFlags)) {
2827 return; // event was consumed by the filter
2828 }
2829
2830 mLock.lock();
2831 }
2832
2833 // Just enqueue a new motion event.
Garfield Tan00f511d2019-06-12 16:55:40 -07002834 MotionEntry* newEntry =
2835 new MotionEntry(args->sequenceNum, args->eventTime, args->deviceId, args->source,
2836 args->displayId, policyFlags, args->action, args->actionButton,
2837 args->flags, args->metaState, args->buttonState,
2838 args->classification, args->edgeFlags, args->xPrecision,
2839 args->yPrecision, args->xCursorPosition, args->yCursorPosition,
2840 args->downTime, args->pointerCount, args->pointerProperties,
2841 args->pointerCoords, 0, 0);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002842
2843 needWake = enqueueInboundEventLocked(newEntry);
2844 mLock.unlock();
2845 } // release lock
2846
2847 if (needWake) {
2848 mLooper->wake();
2849 }
2850}
2851
2852bool InputDispatcher::shouldSendMotionToInputFilterLocked(const NotifyMotionArgs* args) {
Jackal Guof9696682018-10-05 12:23:23 +08002853 return mInputFilterEnabled;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002854}
2855
2856void InputDispatcher::notifySwitch(const NotifySwitchArgs* args) {
2857#if DEBUG_INBOUND_EVENT_DETAILS
Siarhei Vishniakou5d83f602017-09-12 12:40:29 -07002858 ALOGD("notifySwitch - eventTime=%" PRId64 ", policyFlags=0x%x, switchValues=0x%08x, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002859 "switchMask=0x%08x",
2860 args->eventTime, args->policyFlags, args->switchValues, args->switchMask);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002861#endif
2862
2863 uint32_t policyFlags = args->policyFlags;
2864 policyFlags |= POLICY_FLAG_TRUSTED;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002865 mPolicy->notifySwitch(args->eventTime, args->switchValues, args->switchMask, policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002866}
2867
2868void InputDispatcher::notifyDeviceReset(const NotifyDeviceResetArgs* args) {
2869#if DEBUG_INBOUND_EVENT_DETAILS
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002870 ALOGD("notifyDeviceReset - eventTime=%" PRId64 ", deviceId=%d", args->eventTime,
2871 args->deviceId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002872#endif
2873
2874 bool needWake;
2875 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08002876 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002877
Prabir Pradhan42611e02018-11-27 14:04:02 -08002878 DeviceResetEntry* newEntry =
2879 new DeviceResetEntry(args->sequenceNum, args->eventTime, args->deviceId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002880 needWake = enqueueInboundEventLocked(newEntry);
2881 } // release lock
2882
2883 if (needWake) {
2884 mLooper->wake();
2885 }
2886}
2887
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002888int32_t InputDispatcher::injectInputEvent(const InputEvent* event, int32_t injectorPid,
2889 int32_t injectorUid, int32_t syncMode,
2890 int32_t timeoutMillis, uint32_t policyFlags) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08002891#if DEBUG_INBOUND_EVENT_DETAILS
2892 ALOGD("injectInputEvent - eventType=%d, injectorPid=%d, injectorUid=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002893 "syncMode=%d, timeoutMillis=%d, policyFlags=0x%08x",
2894 event->getType(), injectorPid, injectorUid, syncMode, timeoutMillis, policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08002895#endif
2896
2897 nsecs_t endTime = now() + milliseconds_to_nanoseconds(timeoutMillis);
2898
2899 policyFlags |= POLICY_FLAG_INJECTED;
2900 if (hasInjectionPermission(injectorPid, injectorUid)) {
2901 policyFlags |= POLICY_FLAG_TRUSTED;
2902 }
2903
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07002904 std::queue<EventEntry*> injectedEntries;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002905 switch (event->getType()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002906 case AINPUT_EVENT_TYPE_KEY: {
2907 KeyEvent keyEvent;
2908 keyEvent.initialize(*static_cast<const KeyEvent*>(event));
2909 int32_t action = keyEvent.getAction();
2910 if (!validateKeyEvent(action)) {
2911 return INPUT_EVENT_INJECTION_FAILED;
Michael Wright2b3c3302018-03-02 17:19:13 +00002912 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08002913
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002914 int32_t flags = keyEvent.getFlags();
2915 int32_t keyCode = keyEvent.getKeyCode();
2916 int32_t metaState = keyEvent.getMetaState();
2917 accelerateMetaShortcuts(keyEvent.getDeviceId(), action,
2918 /*byref*/ keyCode, /*byref*/ metaState);
2919 keyEvent.initialize(keyEvent.getDeviceId(), keyEvent.getSource(),
2920 keyEvent.getDisplayId(), action, flags, keyCode,
2921 keyEvent.getScanCode(), metaState, keyEvent.getRepeatCount(),
2922 keyEvent.getDownTime(), keyEvent.getEventTime());
Michael Wrightd02c5b62014-02-10 15:10:22 -08002923
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002924 if (flags & AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY) {
2925 policyFlags |= POLICY_FLAG_VIRTUAL;
Michael Wright2b3c3302018-03-02 17:19:13 +00002926 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002927
2928 if (!(policyFlags & POLICY_FLAG_FILTERED)) {
2929 android::base::Timer t;
2930 mPolicy->interceptKeyBeforeQueueing(&keyEvent, /*byref*/ policyFlags);
2931 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
2932 ALOGW("Excessive delay in interceptKeyBeforeQueueing; took %s ms",
2933 std::to_string(t.duration().count()).c_str());
2934 }
2935 }
2936
2937 mLock.lock();
2938 KeyEntry* injectedEntry =
2939 new KeyEntry(SYNTHESIZED_EVENT_SEQUENCE_NUM, keyEvent.getEventTime(),
2940 keyEvent.getDeviceId(), keyEvent.getSource(),
2941 keyEvent.getDisplayId(), policyFlags, action, flags,
2942 keyEvent.getKeyCode(), keyEvent.getScanCode(),
2943 keyEvent.getMetaState(), keyEvent.getRepeatCount(),
2944 keyEvent.getDownTime());
2945 injectedEntries.push(injectedEntry);
2946 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08002947 }
2948
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002949 case AINPUT_EVENT_TYPE_MOTION: {
2950 const MotionEvent* motionEvent = static_cast<const MotionEvent*>(event);
2951 int32_t action = motionEvent->getAction();
2952 size_t pointerCount = motionEvent->getPointerCount();
2953 const PointerProperties* pointerProperties = motionEvent->getPointerProperties();
2954 int32_t actionButton = motionEvent->getActionButton();
2955 int32_t displayId = motionEvent->getDisplayId();
2956 if (!validateMotionEvent(action, actionButton, pointerCount, pointerProperties)) {
2957 return INPUT_EVENT_INJECTION_FAILED;
2958 }
2959
2960 if (!(policyFlags & POLICY_FLAG_FILTERED)) {
2961 nsecs_t eventTime = motionEvent->getEventTime();
2962 android::base::Timer t;
2963 mPolicy->interceptMotionBeforeQueueing(displayId, eventTime, /*byref*/ policyFlags);
2964 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
2965 ALOGW("Excessive delay in interceptMotionBeforeQueueing; took %s ms",
2966 std::to_string(t.duration().count()).c_str());
2967 }
2968 }
2969
2970 mLock.lock();
2971 const nsecs_t* sampleEventTimes = motionEvent->getSampleEventTimes();
2972 const PointerCoords* samplePointerCoords = motionEvent->getSamplePointerCoords();
2973 MotionEntry* injectedEntry =
Garfield Tan00f511d2019-06-12 16:55:40 -07002974 new MotionEntry(SYNTHESIZED_EVENT_SEQUENCE_NUM, *sampleEventTimes,
2975 motionEvent->getDeviceId(), motionEvent->getSource(),
2976 motionEvent->getDisplayId(), policyFlags, action, actionButton,
2977 motionEvent->getFlags(), motionEvent->getMetaState(),
2978 motionEvent->getButtonState(), motionEvent->getClassification(),
2979 motionEvent->getEdgeFlags(), motionEvent->getXPrecision(),
2980 motionEvent->getYPrecision(),
2981 motionEvent->getRawXCursorPosition(),
2982 motionEvent->getRawYCursorPosition(),
2983 motionEvent->getDownTime(), uint32_t(pointerCount),
2984 pointerProperties, samplePointerCoords,
2985 motionEvent->getXOffset(), motionEvent->getYOffset());
Garfield Tan0fc2fa72019-08-29 17:22:15 -07002986 injectedEntries.push(injectedEntry);
2987 for (size_t i = motionEvent->getHistorySize(); i > 0; i--) {
2988 sampleEventTimes += 1;
2989 samplePointerCoords += pointerCount;
2990 MotionEntry* nextInjectedEntry =
2991 new MotionEntry(SYNTHESIZED_EVENT_SEQUENCE_NUM, *sampleEventTimes,
2992 motionEvent->getDeviceId(), motionEvent->getSource(),
2993 motionEvent->getDisplayId(), policyFlags, action,
2994 actionButton, motionEvent->getFlags(),
2995 motionEvent->getMetaState(), motionEvent->getButtonState(),
2996 motionEvent->getClassification(),
2997 motionEvent->getEdgeFlags(), motionEvent->getXPrecision(),
2998 motionEvent->getYPrecision(),
2999 motionEvent->getRawXCursorPosition(),
3000 motionEvent->getRawYCursorPosition(),
3001 motionEvent->getDownTime(), uint32_t(pointerCount),
3002 pointerProperties, samplePointerCoords,
3003 motionEvent->getXOffset(), motionEvent->getYOffset());
3004 injectedEntries.push(nextInjectedEntry);
3005 }
3006 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003007 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003008
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003009 default:
3010 ALOGW("Cannot inject event of type %d", event->getType());
3011 return INPUT_EVENT_INJECTION_FAILED;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003012 }
3013
3014 InjectionState* injectionState = new InjectionState(injectorPid, injectorUid);
3015 if (syncMode == INPUT_EVENT_INJECTION_SYNC_NONE) {
3016 injectionState->injectionIsAsync = true;
3017 }
3018
3019 injectionState->refCount += 1;
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07003020 injectedEntries.back()->injectionState = injectionState;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003021
3022 bool needWake = false;
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07003023 while (!injectedEntries.empty()) {
3024 needWake |= enqueueInboundEventLocked(injectedEntries.front());
3025 injectedEntries.pop();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003026 }
3027
3028 mLock.unlock();
3029
3030 if (needWake) {
3031 mLooper->wake();
3032 }
3033
3034 int32_t injectionResult;
3035 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003036 std::unique_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003037
3038 if (syncMode == INPUT_EVENT_INJECTION_SYNC_NONE) {
3039 injectionResult = INPUT_EVENT_INJECTION_SUCCEEDED;
3040 } else {
3041 for (;;) {
3042 injectionResult = injectionState->injectionResult;
3043 if (injectionResult != INPUT_EVENT_INJECTION_PENDING) {
3044 break;
3045 }
3046
3047 nsecs_t remainingTimeout = endTime - now();
3048 if (remainingTimeout <= 0) {
3049#if DEBUG_INJECTION
3050 ALOGD("injectInputEvent - Timed out waiting for injection result "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003051 "to become available.");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003052#endif
3053 injectionResult = INPUT_EVENT_INJECTION_TIMED_OUT;
3054 break;
3055 }
3056
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003057 mInjectionResultAvailable.wait_for(_l, std::chrono::nanoseconds(remainingTimeout));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003058 }
3059
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003060 if (injectionResult == INPUT_EVENT_INJECTION_SUCCEEDED &&
3061 syncMode == INPUT_EVENT_INJECTION_SYNC_WAIT_FOR_FINISHED) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003062 while (injectionState->pendingForegroundDispatches != 0) {
3063#if DEBUG_INJECTION
3064 ALOGD("injectInputEvent - Waiting for %d pending foreground dispatches.",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003065 injectionState->pendingForegroundDispatches);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003066#endif
3067 nsecs_t remainingTimeout = endTime - now();
3068 if (remainingTimeout <= 0) {
3069#if DEBUG_INJECTION
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003070 ALOGD("injectInputEvent - Timed out waiting for pending foreground "
3071 "dispatches to finish.");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003072#endif
3073 injectionResult = INPUT_EVENT_INJECTION_TIMED_OUT;
3074 break;
3075 }
3076
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003077 mInjectionSyncFinished.wait_for(_l, std::chrono::nanoseconds(remainingTimeout));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003078 }
3079 }
3080 }
3081
3082 injectionState->release();
3083 } // release lock
3084
3085#if DEBUG_INJECTION
3086 ALOGD("injectInputEvent - Finished with result %d. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003087 "injectorPid=%d, injectorUid=%d",
3088 injectionResult, injectorPid, injectorUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003089#endif
3090
3091 return injectionResult;
3092}
3093
3094bool InputDispatcher::hasInjectionPermission(int32_t injectorPid, int32_t injectorUid) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003095 return injectorUid == 0 ||
3096 mPolicy->checkInjectEventsPermissionNonReentrant(injectorPid, injectorUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003097}
3098
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08003099void InputDispatcher::setInjectionResult(EventEntry* entry, int32_t injectionResult) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003100 InjectionState* injectionState = entry->injectionState;
3101 if (injectionState) {
3102#if DEBUG_INJECTION
3103 ALOGD("Setting input event injection result to %d. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003104 "injectorPid=%d, injectorUid=%d",
3105 injectionResult, injectionState->injectorPid, injectionState->injectorUid);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003106#endif
3107
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003108 if (injectionState->injectionIsAsync && !(entry->policyFlags & POLICY_FLAG_FILTERED)) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003109 // Log the outcome since the injector did not wait for the injection result.
3110 switch (injectionResult) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003111 case INPUT_EVENT_INJECTION_SUCCEEDED:
3112 ALOGV("Asynchronous input event injection succeeded.");
3113 break;
3114 case INPUT_EVENT_INJECTION_FAILED:
3115 ALOGW("Asynchronous input event injection failed.");
3116 break;
3117 case INPUT_EVENT_INJECTION_PERMISSION_DENIED:
3118 ALOGW("Asynchronous input event injection permission denied.");
3119 break;
3120 case INPUT_EVENT_INJECTION_TIMED_OUT:
3121 ALOGW("Asynchronous input event injection timed out.");
3122 break;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003123 }
3124 }
3125
3126 injectionState->injectionResult = injectionResult;
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003127 mInjectionResultAvailable.notify_all();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003128 }
3129}
3130
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08003131void InputDispatcher::incrementPendingForegroundDispatches(EventEntry* entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003132 InjectionState* injectionState = entry->injectionState;
3133 if (injectionState) {
3134 injectionState->pendingForegroundDispatches += 1;
3135 }
3136}
3137
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08003138void InputDispatcher::decrementPendingForegroundDispatches(EventEntry* entry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003139 InjectionState* injectionState = entry->injectionState;
3140 if (injectionState) {
3141 injectionState->pendingForegroundDispatches -= 1;
3142
3143 if (injectionState->pendingForegroundDispatches == 0) {
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003144 mInjectionSyncFinished.notify_all();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003145 }
3146 }
3147}
3148
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003149std::vector<sp<InputWindowHandle>> InputDispatcher::getWindowHandlesLocked(
3150 int32_t displayId) const {
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003151 return getValueByKey(mWindowHandlesByDisplay, displayId);
Arthur Hungb92218b2018-08-14 12:00:21 +08003152}
3153
Michael Wrightd02c5b62014-02-10 15:10:22 -08003154sp<InputWindowHandle> InputDispatcher::getWindowHandleLocked(
chaviwfbe5d9c2018-12-26 12:23:37 -08003155 const sp<IBinder>& windowHandleToken) const {
Arthur Hungb92218b2018-08-14 12:00:21 +08003156 for (auto& it : mWindowHandlesByDisplay) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003157 const std::vector<sp<InputWindowHandle>> windowHandles = it.second;
3158 for (const sp<InputWindowHandle>& windowHandle : windowHandles) {
chaviwfbe5d9c2018-12-26 12:23:37 -08003159 if (windowHandle->getToken() == windowHandleToken) {
Arthur Hungb92218b2018-08-14 12:00:21 +08003160 return windowHandle;
3161 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003162 }
3163 }
Yi Kong9b14ac62018-07-17 13:48:38 -07003164 return nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003165}
3166
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08003167bool InputDispatcher::hasWindowHandleLocked(const sp<InputWindowHandle>& windowHandle) const {
Arthur Hungb92218b2018-08-14 12:00:21 +08003168 for (auto& it : mWindowHandlesByDisplay) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003169 const std::vector<sp<InputWindowHandle>> windowHandles = it.second;
3170 for (const sp<InputWindowHandle>& handle : windowHandles) {
3171 if (handle->getToken() == windowHandle->getToken()) {
Arthur Hungb92218b2018-08-14 12:00:21 +08003172 if (windowHandle->getInfo()->displayId != it.first) {
Arthur Hung3b413f22018-10-26 18:05:34 +08003173 ALOGE("Found window %s in display %" PRId32
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003174 ", but it should belong to display %" PRId32,
3175 windowHandle->getName().c_str(), it.first,
3176 windowHandle->getInfo()->displayId);
Arthur Hungb92218b2018-08-14 12:00:21 +08003177 }
3178 return true;
3179 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003180 }
3181 }
3182 return false;
3183}
3184
Robert Carr5c8a0262018-10-03 16:30:44 -07003185sp<InputChannel> InputDispatcher::getInputChannelLocked(const sp<IBinder>& token) const {
3186 size_t count = mInputChannelsByToken.count(token);
3187 if (count == 0) {
3188 return nullptr;
3189 }
3190 return mInputChannelsByToken.at(token);
3191}
3192
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003193void InputDispatcher::updateWindowHandlesForDisplayLocked(
3194 const std::vector<sp<InputWindowHandle>>& inputWindowHandles, int32_t displayId) {
3195 if (inputWindowHandles.empty()) {
3196 // Remove all handles on a display if there are no windows left.
3197 mWindowHandlesByDisplay.erase(displayId);
3198 return;
3199 }
3200
3201 // Since we compare the pointer of input window handles across window updates, we need
3202 // to make sure the handle object for the same window stays unchanged across updates.
3203 const std::vector<sp<InputWindowHandle>>& oldHandles = getWindowHandlesLocked(displayId);
3204 std::unordered_map<sp<IBinder>, sp<InputWindowHandle>, IBinderHash> oldHandlesByTokens;
3205 for (const sp<InputWindowHandle>& handle : oldHandles) {
3206 oldHandlesByTokens[handle->getToken()] = handle;
3207 }
3208
3209 std::vector<sp<InputWindowHandle>> newHandles;
3210 for (const sp<InputWindowHandle>& handle : inputWindowHandles) {
3211 if (!handle->updateInfo()) {
3212 // handle no longer valid
3213 continue;
3214 }
3215
3216 const InputWindowInfo* info = handle->getInfo();
3217 if ((getInputChannelLocked(handle->getToken()) == nullptr &&
3218 info->portalToDisplayId == ADISPLAY_ID_NONE)) {
3219 const bool noInputChannel =
3220 info->inputFeatures & InputWindowInfo::INPUT_FEATURE_NO_INPUT_CHANNEL;
3221 const bool canReceiveInput =
3222 !(info->layoutParamsFlags & InputWindowInfo::FLAG_NOT_TOUCHABLE) ||
3223 !(info->layoutParamsFlags & InputWindowInfo::FLAG_NOT_FOCUSABLE);
3224 if (canReceiveInput && !noInputChannel) {
John Recke0710582019-09-26 13:46:12 -07003225 ALOGV("Window handle %s has no registered input channel",
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003226 handle->getName().c_str());
3227 }
3228 continue;
3229 }
3230
3231 if (info->displayId != displayId) {
3232 ALOGE("Window %s updated by wrong display %d, should belong to display %d",
3233 handle->getName().c_str(), displayId, info->displayId);
3234 continue;
3235 }
3236
3237 if (oldHandlesByTokens.find(handle->getToken()) != oldHandlesByTokens.end()) {
3238 const sp<InputWindowHandle> oldHandle = oldHandlesByTokens.at(handle->getToken());
3239 oldHandle->updateFrom(handle);
3240 newHandles.push_back(oldHandle);
3241 } else {
3242 newHandles.push_back(handle);
3243 }
3244 }
3245
3246 // Insert or replace
3247 mWindowHandlesByDisplay[displayId] = newHandles;
3248}
3249
Arthur Hungb92218b2018-08-14 12:00:21 +08003250/**
3251 * Called from InputManagerService, update window handle list by displayId that can receive input.
3252 * A window handle contains information about InputChannel, Touch Region, Types, Focused,...
3253 * If set an empty list, remove all handles from the specific display.
3254 * For focused handle, check if need to change and send a cancel event to previous one.
3255 * For removed handle, check if need to send a cancel event if already in touch.
3256 */
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003257void InputDispatcher::setInputWindows(const std::vector<sp<InputWindowHandle>>& inputWindowHandles,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003258 int32_t displayId,
3259 const sp<ISetInputWindowsListener>& setInputWindowsListener) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003260 if (DEBUG_FOCUS) {
3261 std::string windowList;
3262 for (const sp<InputWindowHandle>& iwh : inputWindowHandles) {
3263 windowList += iwh->getName() + " ";
3264 }
3265 ALOGD("setInputWindows displayId=%" PRId32 " %s", displayId, windowList.c_str());
3266 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003267 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003268 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003269
Arthur Hungb92218b2018-08-14 12:00:21 +08003270 // Copy old handles for release if they are no longer present.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003271 const std::vector<sp<InputWindowHandle>> oldWindowHandles =
3272 getWindowHandlesLocked(displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003273
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003274 updateWindowHandlesForDisplayLocked(inputWindowHandles, displayId);
3275
Tiger Huang721e26f2018-07-24 22:26:19 +08003276 sp<InputWindowHandle> newFocusedWindowHandle = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003277 bool foundHoveredWindow = false;
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003278 for (const sp<InputWindowHandle>& windowHandle : getWindowHandlesLocked(displayId)) {
3279 // Set newFocusedWindowHandle to the top most focused window instead of the last one
3280 if (!newFocusedWindowHandle && windowHandle->getInfo()->hasFocus &&
3281 windowHandle->getInfo()->visible) {
3282 newFocusedWindowHandle = windowHandle;
Garfield Tanbd0fbcd2018-11-30 12:45:03 -08003283 }
Siarhei Vishniakoub3ad35c2019-04-05 10:50:52 -07003284 if (windowHandle == mLastHoverWindowHandle) {
3285 foundHoveredWindow = true;
Garfield Tanbd0fbcd2018-11-30 12:45:03 -08003286 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003287 }
3288
3289 if (!foundHoveredWindow) {
Yi Kong9b14ac62018-07-17 13:48:38 -07003290 mLastHoverWindowHandle = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003291 }
3292
Tiger Huang721e26f2018-07-24 22:26:19 +08003293 sp<InputWindowHandle> oldFocusedWindowHandle =
3294 getValueByKey(mFocusedWindowHandlesByDisplay, displayId);
3295
3296 if (oldFocusedWindowHandle != newFocusedWindowHandle) {
3297 if (oldFocusedWindowHandle != nullptr) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003298 if (DEBUG_FOCUS) {
3299 ALOGD("Focus left window: %s in display %" PRId32,
3300 oldFocusedWindowHandle->getName().c_str(), displayId);
3301 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003302 sp<InputChannel> focusedInputChannel =
3303 getInputChannelLocked(oldFocusedWindowHandle->getToken());
Yi Kong9b14ac62018-07-17 13:48:38 -07003304 if (focusedInputChannel != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003305 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003306 "focus left window");
3307 synthesizeCancelationEventsForInputChannelLocked(focusedInputChannel, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003308 }
Tiger Huang721e26f2018-07-24 22:26:19 +08003309 mFocusedWindowHandlesByDisplay.erase(displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003310 }
Yi Kong9b14ac62018-07-17 13:48:38 -07003311 if (newFocusedWindowHandle != nullptr) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003312 if (DEBUG_FOCUS) {
3313 ALOGD("Focus entered window: %s in display %" PRId32,
3314 newFocusedWindowHandle->getName().c_str(), displayId);
3315 }
Tiger Huang721e26f2018-07-24 22:26:19 +08003316 mFocusedWindowHandlesByDisplay[displayId] = newFocusedWindowHandle;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003317 }
Robert Carrf759f162018-11-13 12:57:11 -08003318
3319 if (mFocusedDisplayId == displayId) {
chaviw0c06c6e2019-01-09 13:27:07 -08003320 onFocusChangedLocked(oldFocusedWindowHandle, newFocusedWindowHandle);
Robert Carrf759f162018-11-13 12:57:11 -08003321 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003322 }
3323
Arthur Hungb92218b2018-08-14 12:00:21 +08003324 ssize_t stateIndex = mTouchStatesByDisplay.indexOfKey(displayId);
3325 if (stateIndex >= 0) {
3326 TouchState& state = mTouchStatesByDisplay.editValueAt(stateIndex);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003327 for (size_t i = 0; i < state.windows.size();) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003328 TouchedWindow& touchedWindow = state.windows[i];
Siarhei Vishniakou9224fba2018-08-13 18:55:08 +00003329 if (!hasWindowHandleLocked(touchedWindow.windowHandle)) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003330 if (DEBUG_FOCUS) {
3331 ALOGD("Touched window was removed: %s in display %" PRId32,
3332 touchedWindow.windowHandle->getName().c_str(), displayId);
3333 }
Jeff Brownf086ddb2014-02-11 14:28:48 -08003334 sp<InputChannel> touchedInputChannel =
Robert Carr5c8a0262018-10-03 16:30:44 -07003335 getInputChannelLocked(touchedWindow.windowHandle->getToken());
Yi Kong9b14ac62018-07-17 13:48:38 -07003336 if (touchedInputChannel != nullptr) {
Jeff Brownf086ddb2014-02-11 14:28:48 -08003337 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003338 "touched window was removed");
3339 synthesizeCancelationEventsForInputChannelLocked(touchedInputChannel,
3340 options);
Jeff Brownf086ddb2014-02-11 14:28:48 -08003341 }
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003342 state.windows.erase(state.windows.begin() + i);
Ivan Lozano96f12992017-11-09 14:45:38 -08003343 } else {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003344 ++i;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003345 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003346 }
3347 }
3348
3349 // Release information for windows that are no longer present.
3350 // This ensures that unused input channels are released promptly.
3351 // Otherwise, they might stick around until the window handle is destroyed
3352 // which might not happen until the next GC.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003353 for (const sp<InputWindowHandle>& oldWindowHandle : oldWindowHandles) {
Siarhei Vishniakou9224fba2018-08-13 18:55:08 +00003354 if (!hasWindowHandleLocked(oldWindowHandle)) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003355 if (DEBUG_FOCUS) {
3356 ALOGD("Window went away: %s", oldWindowHandle->getName().c_str());
3357 }
Arthur Hung3b413f22018-10-26 18:05:34 +08003358 oldWindowHandle->releaseChannel();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003359 }
3360 }
3361 } // release lock
3362
3363 // Wake up poll loop since it may need to make new input dispatching choices.
3364 mLooper->wake();
chaviw291d88a2019-02-14 10:33:58 -08003365
3366 if (setInputWindowsListener) {
3367 setInputWindowsListener->onSetInputWindowsFinished();
3368 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003369}
3370
3371void InputDispatcher::setFocusedApplication(
Tiger Huang721e26f2018-07-24 22:26:19 +08003372 int32_t displayId, const sp<InputApplicationHandle>& inputApplicationHandle) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003373 if (DEBUG_FOCUS) {
3374 ALOGD("setFocusedApplication displayId=%" PRId32 " %s", displayId,
3375 inputApplicationHandle ? inputApplicationHandle->getName().c_str() : "<nullptr>");
3376 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003377 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003378 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003379
Tiger Huang721e26f2018-07-24 22:26:19 +08003380 sp<InputApplicationHandle> oldFocusedApplicationHandle =
3381 getValueByKey(mFocusedApplicationHandlesByDisplay, displayId);
Yi Kong9b14ac62018-07-17 13:48:38 -07003382 if (inputApplicationHandle != nullptr && inputApplicationHandle->updateInfo()) {
Tiger Huang721e26f2018-07-24 22:26:19 +08003383 if (oldFocusedApplicationHandle != inputApplicationHandle) {
3384 if (oldFocusedApplicationHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003385 resetANRTimeoutsLocked();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003386 }
Tiger Huang721e26f2018-07-24 22:26:19 +08003387 mFocusedApplicationHandlesByDisplay[displayId] = inputApplicationHandle;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003388 }
Tiger Huang721e26f2018-07-24 22:26:19 +08003389 } else if (oldFocusedApplicationHandle != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003390 resetANRTimeoutsLocked();
Tiger Huang721e26f2018-07-24 22:26:19 +08003391 oldFocusedApplicationHandle.clear();
3392 mFocusedApplicationHandlesByDisplay.erase(displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003393 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003394 } // release lock
3395
3396 // Wake up poll loop since it may need to make new input dispatching choices.
3397 mLooper->wake();
3398}
3399
Tiger Huang721e26f2018-07-24 22:26:19 +08003400/**
3401 * Sets the focused display, which is responsible for receiving focus-dispatched input events where
3402 * the display not specified.
3403 *
3404 * We track any unreleased events for each window. If a window loses the ability to receive the
3405 * released event, we will send a cancel event to it. So when the focused display is changed, we
3406 * cancel all the unreleased display-unspecified events for the focused window on the old focused
3407 * display. The display-specified events won't be affected.
3408 */
3409void InputDispatcher::setFocusedDisplay(int32_t displayId) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003410 if (DEBUG_FOCUS) {
3411 ALOGD("setFocusedDisplay displayId=%" PRId32, displayId);
3412 }
Tiger Huang721e26f2018-07-24 22:26:19 +08003413 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003414 std::scoped_lock _l(mLock);
Tiger Huang721e26f2018-07-24 22:26:19 +08003415
3416 if (mFocusedDisplayId != displayId) {
3417 sp<InputWindowHandle> oldFocusedWindowHandle =
3418 getValueByKey(mFocusedWindowHandlesByDisplay, mFocusedDisplayId);
3419 if (oldFocusedWindowHandle != nullptr) {
Robert Carr5c8a0262018-10-03 16:30:44 -07003420 sp<InputChannel> inputChannel =
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003421 getInputChannelLocked(oldFocusedWindowHandle->getToken());
Tiger Huang721e26f2018-07-24 22:26:19 +08003422 if (inputChannel != nullptr) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003423 CancelationOptions
3424 options(CancelationOptions::CANCEL_NON_POINTER_EVENTS,
3425 "The display which contains this window no longer has focus.");
Michael Wright3dd60e22019-03-27 22:06:44 +00003426 options.displayId = ADISPLAY_ID_NONE;
Tiger Huang721e26f2018-07-24 22:26:19 +08003427 synthesizeCancelationEventsForInputChannelLocked(inputChannel, options);
3428 }
3429 }
3430 mFocusedDisplayId = displayId;
3431
3432 // Sanity check
3433 sp<InputWindowHandle> newFocusedWindowHandle =
3434 getValueByKey(mFocusedWindowHandlesByDisplay, displayId);
chaviw0c06c6e2019-01-09 13:27:07 -08003435 onFocusChangedLocked(oldFocusedWindowHandle, newFocusedWindowHandle);
Robert Carrf759f162018-11-13 12:57:11 -08003436
Tiger Huang721e26f2018-07-24 22:26:19 +08003437 if (newFocusedWindowHandle == nullptr) {
3438 ALOGW("Focused display #%" PRId32 " does not have a focused window.", displayId);
3439 if (!mFocusedWindowHandlesByDisplay.empty()) {
3440 ALOGE("But another display has a focused window:");
3441 for (auto& it : mFocusedWindowHandlesByDisplay) {
3442 const int32_t displayId = it.first;
3443 const sp<InputWindowHandle>& windowHandle = it.second;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003444 ALOGE("Display #%" PRId32 " has focused window: '%s'\n", displayId,
3445 windowHandle->getName().c_str());
Tiger Huang721e26f2018-07-24 22:26:19 +08003446 }
3447 }
3448 }
3449 }
3450
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003451 if (DEBUG_FOCUS) {
3452 logDispatchStateLocked();
3453 }
Tiger Huang721e26f2018-07-24 22:26:19 +08003454 } // release lock
3455
3456 // Wake up poll loop since it may need to make new input dispatching choices.
3457 mLooper->wake();
3458}
3459
Michael Wrightd02c5b62014-02-10 15:10:22 -08003460void InputDispatcher::setInputDispatchMode(bool enabled, bool frozen) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003461 if (DEBUG_FOCUS) {
3462 ALOGD("setInputDispatchMode: enabled=%d, frozen=%d", enabled, frozen);
3463 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003464
3465 bool changed;
3466 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003467 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003468
3469 if (mDispatchEnabled != enabled || mDispatchFrozen != frozen) {
3470 if (mDispatchFrozen && !frozen) {
3471 resetANRTimeoutsLocked();
3472 }
3473
3474 if (mDispatchEnabled && !enabled) {
3475 resetAndDropEverythingLocked("dispatcher is being disabled");
3476 }
3477
3478 mDispatchEnabled = enabled;
3479 mDispatchFrozen = frozen;
3480 changed = true;
3481 } else {
3482 changed = false;
3483 }
3484
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003485 if (DEBUG_FOCUS) {
3486 logDispatchStateLocked();
3487 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003488 } // release lock
3489
3490 if (changed) {
3491 // Wake up poll loop since it may need to make new input dispatching choices.
3492 mLooper->wake();
3493 }
3494}
3495
3496void InputDispatcher::setInputFilterEnabled(bool enabled) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003497 if (DEBUG_FOCUS) {
3498 ALOGD("setInputFilterEnabled: enabled=%d", enabled);
3499 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003500
3501 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003502 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003503
3504 if (mInputFilterEnabled == enabled) {
3505 return;
3506 }
3507
3508 mInputFilterEnabled = enabled;
3509 resetAndDropEverythingLocked("input filter is being enabled or disabled");
3510 } // release lock
3511
3512 // Wake up poll loop since there might be work to do to drop everything.
3513 mLooper->wake();
3514}
3515
chaviwfbe5d9c2018-12-26 12:23:37 -08003516bool InputDispatcher::transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) {
3517 if (fromToken == toToken) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003518 if (DEBUG_FOCUS) {
3519 ALOGD("Trivial transfer to same window.");
3520 }
chaviwfbe5d9c2018-12-26 12:23:37 -08003521 return true;
3522 }
3523
Michael Wrightd02c5b62014-02-10 15:10:22 -08003524 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003525 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003526
chaviwfbe5d9c2018-12-26 12:23:37 -08003527 sp<InputWindowHandle> fromWindowHandle = getWindowHandleLocked(fromToken);
3528 sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(toToken);
Yi Kong9b14ac62018-07-17 13:48:38 -07003529 if (fromWindowHandle == nullptr || toWindowHandle == nullptr) {
chaviwfbe5d9c2018-12-26 12:23:37 -08003530 ALOGW("Cannot transfer focus because from or to window not found.");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003531 return false;
3532 }
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003533 if (DEBUG_FOCUS) {
3534 ALOGD("transferTouchFocus: fromWindowHandle=%s, toWindowHandle=%s",
3535 fromWindowHandle->getName().c_str(), toWindowHandle->getName().c_str());
3536 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003537 if (fromWindowHandle->getInfo()->displayId != toWindowHandle->getInfo()->displayId) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003538 if (DEBUG_FOCUS) {
3539 ALOGD("Cannot transfer focus because windows are on different displays.");
3540 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003541 return false;
3542 }
3543
3544 bool found = false;
Jeff Brownf086ddb2014-02-11 14:28:48 -08003545 for (size_t d = 0; d < mTouchStatesByDisplay.size(); d++) {
3546 TouchState& state = mTouchStatesByDisplay.editValueAt(d);
3547 for (size_t i = 0; i < state.windows.size(); i++) {
3548 const TouchedWindow& touchedWindow = state.windows[i];
3549 if (touchedWindow.windowHandle == fromWindowHandle) {
3550 int32_t oldTargetFlags = touchedWindow.targetFlags;
3551 BitSet32 pointerIds = touchedWindow.pointerIds;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003552
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003553 state.windows.erase(state.windows.begin() + i);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003554
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003555 int32_t newTargetFlags = oldTargetFlags &
3556 (InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_SPLIT |
3557 InputTarget::FLAG_DISPATCH_AS_IS);
Jeff Brownf086ddb2014-02-11 14:28:48 -08003558 state.addOrUpdateWindow(toWindowHandle, newTargetFlags, pointerIds);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003559
Jeff Brownf086ddb2014-02-11 14:28:48 -08003560 found = true;
3561 goto Found;
3562 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003563 }
3564 }
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003565 Found:
Michael Wrightd02c5b62014-02-10 15:10:22 -08003566
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003567 if (!found) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003568 if (DEBUG_FOCUS) {
3569 ALOGD("Focus transfer failed because from window did not have focus.");
3570 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003571 return false;
3572 }
3573
chaviwfbe5d9c2018-12-26 12:23:37 -08003574 sp<InputChannel> fromChannel = getInputChannelLocked(fromToken);
3575 sp<InputChannel> toChannel = getInputChannelLocked(toToken);
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003576 sp<Connection> fromConnection = getConnectionLocked(fromChannel);
3577 sp<Connection> toConnection = getConnectionLocked(toChannel);
3578 if (fromConnection != nullptr && toConnection != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003579 fromConnection->inputState.copyPointerStateTo(toConnection->inputState);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003580 CancelationOptions
3581 options(CancelationOptions::CANCEL_POINTER_EVENTS,
3582 "transferring touch focus from this window to another window");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003583 synthesizeCancelationEventsForConnectionLocked(fromConnection, options);
3584 }
3585
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003586 if (DEBUG_FOCUS) {
3587 logDispatchStateLocked();
3588 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003589 } // release lock
3590
3591 // Wake up poll loop since it may need to make new input dispatching choices.
3592 mLooper->wake();
3593 return true;
3594}
3595
3596void InputDispatcher::resetAndDropEverythingLocked(const char* reason) {
Siarhei Vishniakou86587282019-09-09 18:20:15 +01003597 if (DEBUG_FOCUS) {
3598 ALOGD("Resetting and dropping all events (%s).", reason);
3599 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003600
3601 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS, reason);
3602 synthesizeCancelationEventsForAllConnectionsLocked(options);
3603
3604 resetKeyRepeatLocked();
3605 releasePendingEventLocked();
3606 drainInboundQueueLocked();
3607 resetANRTimeoutsLocked();
3608
Jeff Brownf086ddb2014-02-11 14:28:48 -08003609 mTouchStatesByDisplay.clear();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003610 mLastHoverWindowHandle.clear();
Michael Wright78f24442014-08-06 15:55:28 -07003611 mReplacedKeys.clear();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003612}
3613
3614void InputDispatcher::logDispatchStateLocked() {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003615 std::string dump;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003616 dumpDispatchStateLocked(dump);
3617
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003618 std::istringstream stream(dump);
3619 std::string line;
3620
3621 while (std::getline(stream, line, '\n')) {
3622 ALOGD("%s", line.c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08003623 }
3624}
3625
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003626void InputDispatcher::dumpDispatchStateLocked(std::string& dump) {
Siarhei Vishniakou043a3ec2019-05-01 11:30:46 -07003627 dump += StringPrintf(INDENT "DispatchEnabled: %s\n", toString(mDispatchEnabled));
3628 dump += StringPrintf(INDENT "DispatchFrozen: %s\n", toString(mDispatchFrozen));
3629 dump += StringPrintf(INDENT "InputFilterEnabled: %s\n", toString(mInputFilterEnabled));
Tiger Huang721e26f2018-07-24 22:26:19 +08003630 dump += StringPrintf(INDENT "FocusedDisplayId: %" PRId32 "\n", mFocusedDisplayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003631
Tiger Huang721e26f2018-07-24 22:26:19 +08003632 if (!mFocusedApplicationHandlesByDisplay.empty()) {
3633 dump += StringPrintf(INDENT "FocusedApplications:\n");
3634 for (auto& it : mFocusedApplicationHandlesByDisplay) {
3635 const int32_t displayId = it.first;
3636 const sp<InputApplicationHandle>& applicationHandle = it.second;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003637 dump += StringPrintf(INDENT2 "displayId=%" PRId32
3638 ", name='%s', dispatchingTimeout=%0.3fms\n",
3639 displayId, applicationHandle->getName().c_str(),
3640 applicationHandle->getDispatchingTimeout(
3641 DEFAULT_INPUT_DISPATCHING_TIMEOUT) /
3642 1000000.0);
Tiger Huang721e26f2018-07-24 22:26:19 +08003643 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003644 } else {
Tiger Huang721e26f2018-07-24 22:26:19 +08003645 dump += StringPrintf(INDENT "FocusedApplications: <none>\n");
Michael Wrightd02c5b62014-02-10 15:10:22 -08003646 }
Tiger Huang721e26f2018-07-24 22:26:19 +08003647
3648 if (!mFocusedWindowHandlesByDisplay.empty()) {
3649 dump += StringPrintf(INDENT "FocusedWindows:\n");
3650 for (auto& it : mFocusedWindowHandlesByDisplay) {
3651 const int32_t displayId = it.first;
3652 const sp<InputWindowHandle>& windowHandle = it.second;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003653 dump += StringPrintf(INDENT2 "displayId=%" PRId32 ", name='%s'\n", displayId,
3654 windowHandle->getName().c_str());
Tiger Huang721e26f2018-07-24 22:26:19 +08003655 }
3656 } else {
3657 dump += StringPrintf(INDENT "FocusedWindows: <none>\n");
3658 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003659
Jeff Brownf086ddb2014-02-11 14:28:48 -08003660 if (!mTouchStatesByDisplay.isEmpty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003661 dump += StringPrintf(INDENT "TouchStatesByDisplay:\n");
Jeff Brownf086ddb2014-02-11 14:28:48 -08003662 for (size_t i = 0; i < mTouchStatesByDisplay.size(); i++) {
3663 const TouchState& state = mTouchStatesByDisplay.valueAt(i);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003664 dump += StringPrintf(INDENT2 "%d: down=%s, split=%s, deviceId=%d, source=0x%08x\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003665 state.displayId, toString(state.down), toString(state.split),
3666 state.deviceId, state.source);
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003667 if (!state.windows.empty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003668 dump += INDENT3 "Windows:\n";
Jeff Brownf086ddb2014-02-11 14:28:48 -08003669 for (size_t i = 0; i < state.windows.size(); i++) {
3670 const TouchedWindow& touchedWindow = state.windows[i];
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003671 dump += StringPrintf(INDENT4
3672 "%zu: name='%s', pointerIds=0x%0x, targetFlags=0x%x\n",
3673 i, touchedWindow.windowHandle->getName().c_str(),
3674 touchedWindow.pointerIds.value, touchedWindow.targetFlags);
Jeff Brownf086ddb2014-02-11 14:28:48 -08003675 }
3676 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003677 dump += INDENT3 "Windows: <none>\n";
Jeff Brownf086ddb2014-02-11 14:28:48 -08003678 }
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003679 if (!state.portalWindows.empty()) {
Tiger Huang85b8c5e2019-01-17 18:34:54 +08003680 dump += INDENT3 "Portal windows:\n";
3681 for (size_t i = 0; i < state.portalWindows.size(); i++) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003682 const sp<InputWindowHandle> portalWindowHandle = state.portalWindows[i];
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003683 dump += StringPrintf(INDENT4 "%zu: name='%s'\n", i,
3684 portalWindowHandle->getName().c_str());
Tiger Huang85b8c5e2019-01-17 18:34:54 +08003685 }
3686 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003687 }
3688 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003689 dump += INDENT "TouchStates: <no displays touched>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003690 }
3691
Arthur Hungb92218b2018-08-14 12:00:21 +08003692 if (!mWindowHandlesByDisplay.empty()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003693 for (auto& it : mWindowHandlesByDisplay) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003694 const std::vector<sp<InputWindowHandle>> windowHandles = it.second;
Arthur Hung3b413f22018-10-26 18:05:34 +08003695 dump += StringPrintf(INDENT "Display: %" PRId32 "\n", it.first);
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003696 if (!windowHandles.empty()) {
Arthur Hungb92218b2018-08-14 12:00:21 +08003697 dump += INDENT2 "Windows:\n";
3698 for (size_t i = 0; i < windowHandles.size(); i++) {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08003699 const sp<InputWindowHandle>& windowHandle = windowHandles[i];
Arthur Hungb92218b2018-08-14 12:00:21 +08003700 const InputWindowInfo* windowInfo = windowHandle->getInfo();
Michael Wrightd02c5b62014-02-10 15:10:22 -08003701
Arthur Hungb92218b2018-08-14 12:00:21 +08003702 dump += StringPrintf(INDENT3 "%zu: name='%s', displayId=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003703 "portalToDisplayId=%d, paused=%s, hasFocus=%s, "
3704 "hasWallpaper=%s, "
3705 "visible=%s, canReceiveKeys=%s, flags=0x%08x, "
3706 "type=0x%08x, layer=%d, "
3707 "frame=[%d,%d][%d,%d], globalScale=%f, "
3708 "windowScale=(%f,%f), "
3709 "touchableRegion=",
3710 i, windowInfo->name.c_str(), windowInfo->displayId,
3711 windowInfo->portalToDisplayId,
3712 toString(windowInfo->paused),
3713 toString(windowInfo->hasFocus),
3714 toString(windowInfo->hasWallpaper),
3715 toString(windowInfo->visible),
3716 toString(windowInfo->canReceiveKeys),
3717 windowInfo->layoutParamsFlags,
3718 windowInfo->layoutParamsType, windowInfo->layer,
3719 windowInfo->frameLeft, windowInfo->frameTop,
3720 windowInfo->frameRight, windowInfo->frameBottom,
3721 windowInfo->globalScaleFactor, windowInfo->windowXScale,
3722 windowInfo->windowYScale);
Arthur Hungb92218b2018-08-14 12:00:21 +08003723 dumpRegion(dump, windowInfo->touchableRegion);
3724 dump += StringPrintf(", inputFeatures=0x%08x", windowInfo->inputFeatures);
3725 dump += StringPrintf(", ownerPid=%d, ownerUid=%d, dispatchingTimeout=%0.3fms\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003726 windowInfo->ownerPid, windowInfo->ownerUid,
3727 windowInfo->dispatchingTimeout / 1000000.0);
Arthur Hungb92218b2018-08-14 12:00:21 +08003728 }
3729 } else {
3730 dump += INDENT2 "Windows: <none>\n";
3731 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003732 }
3733 } else {
Arthur Hungb92218b2018-08-14 12:00:21 +08003734 dump += INDENT "Displays: <none>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003735 }
3736
Michael Wright3dd60e22019-03-27 22:06:44 +00003737 if (!mGlobalMonitorsByDisplay.empty() || !mGestureMonitorsByDisplay.empty()) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003738 for (auto& it : mGlobalMonitorsByDisplay) {
Michael Wright3dd60e22019-03-27 22:06:44 +00003739 const std::vector<Monitor>& monitors = it.second;
3740 dump += StringPrintf(INDENT "Global monitors in display %" PRId32 ":\n", it.first);
3741 dumpMonitors(dump, monitors);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003742 }
3743 for (auto& it : mGestureMonitorsByDisplay) {
Michael Wright3dd60e22019-03-27 22:06:44 +00003744 const std::vector<Monitor>& monitors = it.second;
3745 dump += StringPrintf(INDENT "Gesture monitors in display %" PRId32 ":\n", it.first);
3746 dumpMonitors(dump, monitors);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003747 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003748 } else {
Michael Wright3dd60e22019-03-27 22:06:44 +00003749 dump += INDENT "Monitors: <none>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003750 }
3751
3752 nsecs_t currentTime = now();
3753
3754 // Dump recently dispatched or dropped events from oldest to newest.
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07003755 if (!mRecentQueue.empty()) {
3756 dump += StringPrintf(INDENT "RecentQueue: length=%zu\n", mRecentQueue.size());
3757 for (EventEntry* entry : mRecentQueue) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003758 dump += INDENT2;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003759 entry->appendDescription(dump);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003760 dump += StringPrintf(", age=%0.1fms\n", (currentTime - entry->eventTime) * 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003761 }
3762 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003763 dump += INDENT "RecentQueue: <empty>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003764 }
3765
3766 // Dump event currently being dispatched.
3767 if (mPendingEvent) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003768 dump += INDENT "PendingEvent:\n";
3769 dump += INDENT2;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003770 mPendingEvent->appendDescription(dump);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003771 dump += StringPrintf(", age=%0.1fms\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003772 (currentTime - mPendingEvent->eventTime) * 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003773 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003774 dump += INDENT "PendingEvent: <none>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003775 }
3776
3777 // Dump inbound events from oldest to newest.
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07003778 if (!mInboundQueue.empty()) {
3779 dump += StringPrintf(INDENT "InboundQueue: length=%zu\n", mInboundQueue.size());
3780 for (EventEntry* entry : mInboundQueue) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003781 dump += INDENT2;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003782 entry->appendDescription(dump);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003783 dump += StringPrintf(", age=%0.1fms\n", (currentTime - entry->eventTime) * 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003784 }
3785 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003786 dump += INDENT "InboundQueue: <empty>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003787 }
3788
Michael Wright78f24442014-08-06 15:55:28 -07003789 if (!mReplacedKeys.isEmpty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003790 dump += INDENT "ReplacedKeys:\n";
Michael Wright78f24442014-08-06 15:55:28 -07003791 for (size_t i = 0; i < mReplacedKeys.size(); i++) {
3792 const KeyReplacement& replacement = mReplacedKeys.keyAt(i);
3793 int32_t newKeyCode = mReplacedKeys.valueAt(i);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003794 dump += StringPrintf(INDENT2 "%zu: originalKeyCode=%d, deviceId=%d, newKeyCode=%d\n", i,
3795 replacement.keyCode, replacement.deviceId, newKeyCode);
Michael Wright78f24442014-08-06 15:55:28 -07003796 }
3797 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003798 dump += INDENT "ReplacedKeys: <empty>\n";
Michael Wright78f24442014-08-06 15:55:28 -07003799 }
3800
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003801 if (!mConnectionsByFd.empty()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003802 dump += INDENT "Connections:\n";
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003803 for (const auto& pair : mConnectionsByFd) {
3804 const sp<Connection>& connection = pair.second;
3805 dump += StringPrintf(INDENT2 "%i: channelName='%s', windowName='%s', "
3806 "status=%s, monitor=%s, inputPublisherBlocked=%s\n",
3807 pair.first, connection->getInputChannelName().c_str(),
3808 connection->getWindowName().c_str(), connection->getStatusLabel(),
3809 toString(connection->monitor),
3810 toString(connection->inputPublisherBlocked));
Michael Wrightd02c5b62014-02-10 15:10:22 -08003811
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07003812 if (!connection->outboundQueue.empty()) {
3813 dump += StringPrintf(INDENT3 "OutboundQueue: length=%zu\n",
3814 connection->outboundQueue.size());
3815 for (DispatchEntry* entry : connection->outboundQueue) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003816 dump.append(INDENT4);
3817 entry->eventEntry->appendDescription(dump);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003818 dump += StringPrintf(", targetFlags=0x%08x, resolvedAction=%d, age=%0.1fms\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003819 entry->targetFlags, entry->resolvedAction,
3820 (currentTime - entry->eventEntry->eventTime) * 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003821 }
3822 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003823 dump += INDENT3 "OutboundQueue: <empty>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003824 }
3825
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07003826 if (!connection->waitQueue.empty()) {
3827 dump += StringPrintf(INDENT3 "WaitQueue: length=%zu\n",
3828 connection->waitQueue.size());
3829 for (DispatchEntry* entry : connection->waitQueue) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003830 dump += INDENT4;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003831 entry->eventEntry->appendDescription(dump);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003832 dump += StringPrintf(", targetFlags=0x%08x, resolvedAction=%d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003833 "age=%0.1fms, wait=%0.1fms\n",
3834 entry->targetFlags, entry->resolvedAction,
3835 (currentTime - entry->eventEntry->eventTime) * 0.000001f,
3836 (currentTime - entry->deliveryTime) * 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003837 }
3838 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003839 dump += INDENT3 "WaitQueue: <empty>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003840 }
3841 }
3842 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003843 dump += INDENT "Connections: <none>\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003844 }
3845
3846 if (isAppSwitchPendingLocked()) {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003847 dump += StringPrintf(INDENT "AppSwitch: pending, due in %0.1fms\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003848 (mAppSwitchDueTime - now()) / 1000000.0);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003849 } else {
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003850 dump += INDENT "AppSwitch: not pending\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08003851 }
3852
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003853 dump += INDENT "Configuration:\n";
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003854 dump += StringPrintf(INDENT2 "KeyRepeatDelay: %0.1fms\n", mConfig.keyRepeatDelay * 0.000001f);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003855 dump += StringPrintf(INDENT2 "KeyRepeatTimeout: %0.1fms\n",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003856 mConfig.keyRepeatTimeout * 0.000001f);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003857}
3858
Michael Wright3dd60e22019-03-27 22:06:44 +00003859void InputDispatcher::dumpMonitors(std::string& dump, const std::vector<Monitor>& monitors) {
3860 const size_t numMonitors = monitors.size();
3861 for (size_t i = 0; i < numMonitors; i++) {
3862 const Monitor& monitor = monitors[i];
3863 const sp<InputChannel>& channel = monitor.inputChannel;
3864 dump += StringPrintf(INDENT2 "%zu: '%s', ", i, channel->getName().c_str());
3865 dump += "\n";
3866 }
3867}
3868
Siarhei Vishniakou7c34b232019-10-11 19:08:48 -07003869status_t InputDispatcher::registerInputChannel(const sp<InputChannel>& inputChannel) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003870#if DEBUG_REGISTRATION
Siarhei Vishniakou7c34b232019-10-11 19:08:48 -07003871 ALOGD("channel '%s' ~ registerInputChannel", inputChannel->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08003872#endif
3873
3874 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003875 std::scoped_lock _l(mLock);
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003876 sp<Connection> existingConnection = getConnectionLocked(inputChannel);
3877 if (existingConnection != nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003878 ALOGW("Attempted to register already registered input channel '%s'",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003879 inputChannel->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08003880 return BAD_VALUE;
3881 }
3882
Michael Wright3dd60e22019-03-27 22:06:44 +00003883 sp<Connection> connection = new Connection(inputChannel, false /*monitor*/);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003884
3885 int fd = inputChannel->getFd();
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003886 mConnectionsByFd[fd] = connection;
Robert Carr5c8a0262018-10-03 16:30:44 -07003887 mInputChannelsByToken[inputChannel->getToken()] = inputChannel;
Michael Wrightd02c5b62014-02-10 15:10:22 -08003888
Michael Wrightd02c5b62014-02-10 15:10:22 -08003889 mLooper->addFd(fd, 0, ALOOPER_EVENT_INPUT, handleReceiveCallback, this);
3890 } // release lock
3891
3892 // Wake the looper because some connections have changed.
3893 mLooper->wake();
3894 return OK;
3895}
3896
Michael Wright3dd60e22019-03-27 22:06:44 +00003897status_t InputDispatcher::registerInputMonitor(const sp<InputChannel>& inputChannel,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003898 int32_t displayId, bool isGestureMonitor) {
Michael Wright3dd60e22019-03-27 22:06:44 +00003899 { // acquire lock
3900 std::scoped_lock _l(mLock);
3901
3902 if (displayId < 0) {
3903 ALOGW("Attempted to register input monitor without a specified display.");
3904 return BAD_VALUE;
3905 }
3906
3907 if (inputChannel->getToken() == nullptr) {
3908 ALOGW("Attempted to register input monitor without an identifying token.");
3909 return BAD_VALUE;
3910 }
3911
3912 sp<Connection> connection = new Connection(inputChannel, true /*monitor*/);
3913
3914 const int fd = inputChannel->getFd();
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003915 mConnectionsByFd[fd] = connection;
Michael Wright3dd60e22019-03-27 22:06:44 +00003916 mInputChannelsByToken[inputChannel->getToken()] = inputChannel;
3917
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003918 auto& monitorsByDisplay =
3919 isGestureMonitor ? mGestureMonitorsByDisplay : mGlobalMonitorsByDisplay;
Michael Wright3dd60e22019-03-27 22:06:44 +00003920 monitorsByDisplay[displayId].emplace_back(inputChannel);
3921
3922 mLooper->addFd(fd, 0, ALOOPER_EVENT_INPUT, handleReceiveCallback, this);
Michael Wright3dd60e22019-03-27 22:06:44 +00003923 }
3924 // Wake the looper because some connections have changed.
3925 mLooper->wake();
3926 return OK;
3927}
3928
Michael Wrightd02c5b62014-02-10 15:10:22 -08003929status_t InputDispatcher::unregisterInputChannel(const sp<InputChannel>& inputChannel) {
3930#if DEBUG_REGISTRATION
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08003931 ALOGD("channel '%s' ~ unregisterInputChannel", inputChannel->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08003932#endif
3933
3934 { // acquire lock
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08003935 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08003936
3937 status_t status = unregisterInputChannelLocked(inputChannel, false /*notify*/);
3938 if (status) {
3939 return status;
3940 }
3941 } // release lock
3942
3943 // Wake the poll loop because removing the connection may have changed the current
3944 // synchronization state.
3945 mLooper->wake();
3946 return OK;
3947}
3948
3949status_t InputDispatcher::unregisterInputChannelLocked(const sp<InputChannel>& inputChannel,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003950 bool notify) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003951 sp<Connection> connection = getConnectionLocked(inputChannel);
3952 if (connection == nullptr) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08003953 ALOGW("Attempted to unregister already unregistered input channel '%s'",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003954 inputChannel->getName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08003955 return BAD_VALUE;
3956 }
3957
John Recke0710582019-09-26 13:46:12 -07003958 [[maybe_unused]] const bool removed = removeByValue(mConnectionsByFd, connection);
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07003959 ALOG_ASSERT(removed);
Robert Carr5c8a0262018-10-03 16:30:44 -07003960 mInputChannelsByToken.erase(inputChannel->getToken());
3961
Michael Wrightd02c5b62014-02-10 15:10:22 -08003962 if (connection->monitor) {
3963 removeMonitorChannelLocked(inputChannel);
3964 }
3965
3966 mLooper->removeFd(inputChannel->getFd());
3967
3968 nsecs_t currentTime = now();
3969 abortBrokenDispatchCycleLocked(currentTime, connection, notify);
3970
3971 connection->status = Connection::STATUS_ZOMBIE;
3972 return OK;
3973}
3974
3975void InputDispatcher::removeMonitorChannelLocked(const sp<InputChannel>& inputChannel) {
Michael Wright3dd60e22019-03-27 22:06:44 +00003976 removeMonitorChannelLocked(inputChannel, mGlobalMonitorsByDisplay);
3977 removeMonitorChannelLocked(inputChannel, mGestureMonitorsByDisplay);
3978}
3979
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003980void InputDispatcher::removeMonitorChannelLocked(
3981 const sp<InputChannel>& inputChannel,
Michael Wright3dd60e22019-03-27 22:06:44 +00003982 std::unordered_map<int32_t, std::vector<Monitor>>& monitorsByDisplay) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003983 for (auto it = monitorsByDisplay.begin(); it != monitorsByDisplay.end();) {
Michael Wright3dd60e22019-03-27 22:06:44 +00003984 std::vector<Monitor>& monitors = it->second;
3985 const size_t numMonitors = monitors.size();
3986 for (size_t i = 0; i < numMonitors; i++) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07003987 if (monitors[i].inputChannel == inputChannel) {
3988 monitors.erase(monitors.begin() + i);
3989 break;
3990 }
Arthur Hung2fbf37f2018-09-13 18:16:41 +08003991 }
Michael Wright3dd60e22019-03-27 22:06:44 +00003992 if (monitors.empty()) {
3993 it = monitorsByDisplay.erase(it);
Arthur Hung2fbf37f2018-09-13 18:16:41 +08003994 } else {
3995 ++it;
3996 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08003997 }
3998}
3999
Michael Wright3dd60e22019-03-27 22:06:44 +00004000status_t InputDispatcher::pilferPointers(const sp<IBinder>& token) {
4001 { // acquire lock
4002 std::scoped_lock _l(mLock);
4003 std::optional<int32_t> foundDisplayId = findGestureMonitorDisplayByTokenLocked(token);
4004
4005 if (!foundDisplayId) {
4006 ALOGW("Attempted to pilfer pointers from an un-registered monitor or invalid token");
4007 return BAD_VALUE;
4008 }
4009 int32_t displayId = foundDisplayId.value();
4010
4011 ssize_t stateIndex = mTouchStatesByDisplay.indexOfKey(displayId);
4012 if (stateIndex < 0) {
4013 ALOGW("Failed to pilfer pointers: no pointers on display %" PRId32 ".", displayId);
4014 return BAD_VALUE;
4015 }
4016
4017 TouchState& state = mTouchStatesByDisplay.editValueAt(stateIndex);
4018 std::optional<int32_t> foundDeviceId;
4019 for (const TouchedMonitor& touchedMonitor : state.gestureMonitors) {
4020 if (touchedMonitor.monitor.inputChannel->getToken() == token) {
4021 foundDeviceId = state.deviceId;
4022 }
4023 }
4024 if (!foundDeviceId || !state.down) {
4025 ALOGW("Attempted to pilfer points from a monitor without any on-going pointer streams."
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004026 " Ignoring.");
Michael Wright3dd60e22019-03-27 22:06:44 +00004027 return BAD_VALUE;
4028 }
4029 int32_t deviceId = foundDeviceId.value();
4030
4031 // Send cancel events to all the input channels we're stealing from.
4032 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004033 "gesture monitor stole pointer stream");
Michael Wright3dd60e22019-03-27 22:06:44 +00004034 options.deviceId = deviceId;
4035 options.displayId = displayId;
4036 for (const TouchedWindow& window : state.windows) {
4037 sp<InputChannel> channel = getInputChannelLocked(window.windowHandle->getToken());
4038 synthesizeCancelationEventsForInputChannelLocked(channel, options);
4039 }
4040 // Then clear the current touch state so we stop dispatching to them as well.
4041 state.filterNonMonitors();
4042 }
4043 return OK;
4044}
4045
Michael Wright3dd60e22019-03-27 22:06:44 +00004046std::optional<int32_t> InputDispatcher::findGestureMonitorDisplayByTokenLocked(
4047 const sp<IBinder>& token) {
4048 for (const auto& it : mGestureMonitorsByDisplay) {
4049 const std::vector<Monitor>& monitors = it.second;
4050 for (const Monitor& monitor : monitors) {
4051 if (monitor.inputChannel->getToken() == token) {
4052 return it.first;
4053 }
4054 }
4055 }
4056 return std::nullopt;
4057}
4058
Garfield Tane84e6f92019-08-29 17:28:41 -07004059sp<Connection> InputDispatcher::getConnectionLocked(const sp<InputChannel>& inputChannel) {
Robert Carr4e670e52018-08-15 13:26:12 -07004060 if (inputChannel == nullptr) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004061 return nullptr;
Arthur Hung3b413f22018-10-26 18:05:34 +08004062 }
4063
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004064 for (const auto& pair : mConnectionsByFd) {
4065 sp<Connection> connection = pair.second;
Robert Carr4e670e52018-08-15 13:26:12 -07004066 if (connection->inputChannel->getToken() == inputChannel->getToken()) {
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004067 return connection;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004068 }
4069 }
Robert Carr4e670e52018-08-15 13:26:12 -07004070
Siarhei Vishniakou146ecfd2019-07-29 16:04:31 -07004071 return nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004072}
4073
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004074void InputDispatcher::onDispatchCycleFinishedLocked(nsecs_t currentTime,
4075 const sp<Connection>& connection, uint32_t seq,
4076 bool handled) {
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004077 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
4078 &InputDispatcher::doDispatchCycleFinishedLockedInterruptible);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004079 commandEntry->connection = connection;
4080 commandEntry->eventTime = currentTime;
4081 commandEntry->seq = seq;
4082 commandEntry->handled = handled;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004083 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004084}
4085
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004086void InputDispatcher::onDispatchCycleBrokenLocked(nsecs_t currentTime,
4087 const sp<Connection>& connection) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004088 ALOGE("channel '%s' ~ Channel is unrecoverably broken and will be disposed!",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004089 connection->getInputChannelName().c_str());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004090
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004091 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
4092 &InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004093 commandEntry->connection = connection;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004094 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004095}
4096
chaviw0c06c6e2019-01-09 13:27:07 -08004097void InputDispatcher::onFocusChangedLocked(const sp<InputWindowHandle>& oldFocus,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004098 const sp<InputWindowHandle>& newFocus) {
chaviw0c06c6e2019-01-09 13:27:07 -08004099 sp<IBinder> oldToken = oldFocus != nullptr ? oldFocus->getToken() : nullptr;
4100 sp<IBinder> newToken = newFocus != nullptr ? newFocus->getToken() : nullptr;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004101 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>(
4102 &InputDispatcher::doNotifyFocusChangedLockedInterruptible);
chaviw0c06c6e2019-01-09 13:27:07 -08004103 commandEntry->oldToken = oldToken;
4104 commandEntry->newToken = newToken;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004105 postCommandLocked(std::move(commandEntry));
Robert Carrf759f162018-11-13 12:57:11 -08004106}
4107
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004108void InputDispatcher::onANRLocked(nsecs_t currentTime,
4109 const sp<InputApplicationHandle>& applicationHandle,
4110 const sp<InputWindowHandle>& windowHandle, nsecs_t eventTime,
4111 nsecs_t waitStartTime, const char* reason) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004112 float dispatchLatency = (currentTime - eventTime) * 0.000001f;
4113 float waitDuration = (currentTime - waitStartTime) * 0.000001f;
4114 ALOGI("Application is not responding: %s. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004115 "It has been %0.1fms since event, %0.1fms since wait started. Reason: %s",
4116 getApplicationWindowLabel(applicationHandle, windowHandle).c_str(), dispatchLatency,
4117 waitDuration, reason);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004118
4119 // Capture a record of the InputDispatcher state at the time of the ANR.
Yi Kong9b14ac62018-07-17 13:48:38 -07004120 time_t t = time(nullptr);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004121 struct tm tm;
4122 localtime_r(&t, &tm);
4123 char timestr[64];
4124 strftime(timestr, sizeof(timestr), "%F %T", &tm);
4125 mLastANRState.clear();
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004126 mLastANRState += INDENT "ANR:\n";
4127 mLastANRState += StringPrintf(INDENT2 "Time: %s\n", timestr);
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004128 mLastANRState +=
4129 StringPrintf(INDENT2 "Window: %s\n",
4130 getApplicationWindowLabel(applicationHandle, windowHandle).c_str());
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004131 mLastANRState += StringPrintf(INDENT2 "DispatchLatency: %0.1fms\n", dispatchLatency);
4132 mLastANRState += StringPrintf(INDENT2 "WaitDuration: %0.1fms\n", waitDuration);
4133 mLastANRState += StringPrintf(INDENT2 "Reason: %s\n", reason);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004134 dumpDispatchStateLocked(mLastANRState);
4135
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004136 std::unique_ptr<CommandEntry> commandEntry =
4137 std::make_unique<CommandEntry>(&InputDispatcher::doNotifyANRLockedInterruptible);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004138 commandEntry->inputApplicationHandle = applicationHandle;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004139 commandEntry->inputChannel =
4140 windowHandle != nullptr ? getInputChannelLocked(windowHandle->getToken()) : nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004141 commandEntry->reason = reason;
Siarhei Vishniakoue7c94b92019-07-29 09:17:54 -07004142 postCommandLocked(std::move(commandEntry));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004143}
4144
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004145void InputDispatcher::doNotifyConfigurationChangedLockedInterruptible(CommandEntry* commandEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004146 mLock.unlock();
4147
4148 mPolicy->notifyConfigurationChanged(commandEntry->eventTime);
4149
4150 mLock.lock();
4151}
4152
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004153void InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible(CommandEntry* commandEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004154 sp<Connection> connection = commandEntry->connection;
4155
4156 if (connection->status != Connection::STATUS_ZOMBIE) {
4157 mLock.unlock();
4158
Robert Carr803535b2018-08-02 16:38:15 -07004159 mPolicy->notifyInputChannelBroken(connection->inputChannel->getToken());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004160
4161 mLock.lock();
4162 }
4163}
4164
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004165void InputDispatcher::doNotifyFocusChangedLockedInterruptible(CommandEntry* commandEntry) {
chaviw0c06c6e2019-01-09 13:27:07 -08004166 sp<IBinder> oldToken = commandEntry->oldToken;
4167 sp<IBinder> newToken = commandEntry->newToken;
Robert Carrf759f162018-11-13 12:57:11 -08004168 mLock.unlock();
chaviw0c06c6e2019-01-09 13:27:07 -08004169 mPolicy->notifyFocusChanged(oldToken, newToken);
Robert Carrf759f162018-11-13 12:57:11 -08004170 mLock.lock();
4171}
4172
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004173void InputDispatcher::doNotifyANRLockedInterruptible(CommandEntry* commandEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004174 mLock.unlock();
4175
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004176 nsecs_t newTimeout =
4177 mPolicy->notifyANR(commandEntry->inputApplicationHandle,
4178 commandEntry->inputChannel ? commandEntry->inputChannel->getToken()
4179 : nullptr,
4180 commandEntry->reason);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004181
4182 mLock.lock();
4183
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004184 resumeAfterTargetsNotReadyTimeoutLocked(newTimeout, commandEntry->inputChannel);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004185}
4186
4187void InputDispatcher::doInterceptKeyBeforeDispatchingLockedInterruptible(
4188 CommandEntry* commandEntry) {
4189 KeyEntry* entry = commandEntry->keyEntry;
4190
4191 KeyEvent event;
4192 initializeKeyEvent(&event, entry);
4193
4194 mLock.unlock();
4195
Michael Wright2b3c3302018-03-02 17:19:13 +00004196 android::base::Timer t;
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004197 sp<IBinder> token = commandEntry->inputChannel != nullptr
4198 ? commandEntry->inputChannel->getToken()
4199 : nullptr;
4200 nsecs_t delay = mPolicy->interceptKeyBeforeDispatching(token, &event, entry->policyFlags);
Michael Wright2b3c3302018-03-02 17:19:13 +00004201 if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) {
4202 ALOGW("Excessive delay in interceptKeyBeforeDispatching; took %s ms",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004203 std::to_string(t.duration().count()).c_str());
Michael Wright2b3c3302018-03-02 17:19:13 +00004204 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004205
4206 mLock.lock();
4207
4208 if (delay < 0) {
4209 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_SKIP;
4210 } else if (!delay) {
4211 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE;
4212 } else {
4213 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER;
4214 entry->interceptKeyWakeupTime = now() + delay;
4215 }
4216 entry->release();
4217}
4218
chaviwfd6d3512019-03-25 13:23:49 -07004219void InputDispatcher::doOnPointerDownOutsideFocusLockedInterruptible(CommandEntry* commandEntry) {
4220 mLock.unlock();
4221 mPolicy->onPointerDownOutsideFocus(commandEntry->newToken);
4222 mLock.lock();
4223}
4224
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004225void InputDispatcher::doDispatchCycleFinishedLockedInterruptible(CommandEntry* commandEntry) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004226 sp<Connection> connection = commandEntry->connection;
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07004227 const nsecs_t finishTime = commandEntry->eventTime;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004228 uint32_t seq = commandEntry->seq;
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07004229 const bool handled = commandEntry->handled;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004230
4231 // Handle post-event policy actions.
Garfield Tane84e6f92019-08-29 17:28:41 -07004232 std::deque<DispatchEntry*>::iterator dispatchEntryIt = connection->findWaitQueueEntry(seq);
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004233 if (dispatchEntryIt == connection->waitQueue.end()) {
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07004234 return;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004235 }
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004236 DispatchEntry* dispatchEntry = *dispatchEntryIt;
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07004237
4238 nsecs_t eventDuration = finishTime - dispatchEntry->deliveryTime;
4239 if (eventDuration > SLOW_EVENT_PROCESSING_WARNING_TIMEOUT) {
4240 std::string msg =
4241 StringPrintf("Window '%s' spent %0.1fms processing the last input event: ",
4242 connection->getWindowName().c_str(), eventDuration * 0.000001f);
4243 dispatchEntry->eventEntry->appendDescription(msg);
4244 ALOGI("%s", msg.c_str());
4245 }
4246
4247 bool restartEvent;
4248 if (dispatchEntry->eventEntry->type == EventEntry::TYPE_KEY) {
4249 KeyEntry* keyEntry = static_cast<KeyEntry*>(dispatchEntry->eventEntry);
4250 restartEvent =
4251 afterKeyEventLockedInterruptible(connection, dispatchEntry, keyEntry, handled);
4252 } else if (dispatchEntry->eventEntry->type == EventEntry::TYPE_MOTION) {
4253 MotionEntry* motionEntry = static_cast<MotionEntry*>(dispatchEntry->eventEntry);
4254 restartEvent = afterMotionEventLockedInterruptible(connection, dispatchEntry, motionEntry,
4255 handled);
4256 } else {
4257 restartEvent = false;
4258 }
4259
4260 // Dequeue the event and start the next cycle.
4261 // Note that because the lock might have been released, it is possible that the
4262 // contents of the wait queue to have been drained, so we need to double-check
4263 // a few things.
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004264 dispatchEntryIt = connection->findWaitQueueEntry(seq);
4265 if (dispatchEntryIt != connection->waitQueue.end()) {
4266 dispatchEntry = *dispatchEntryIt;
4267 connection->waitQueue.erase(dispatchEntryIt);
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07004268 traceWaitQueueLength(connection);
4269 if (restartEvent && connection->status == Connection::STATUS_NORMAL) {
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004270 connection->outboundQueue.push_front(dispatchEntry);
Siarhei Vishniakou4e68fbf2019-07-31 14:00:52 -07004271 traceOutboundQueueLength(connection);
4272 } else {
4273 releaseDispatchEntry(dispatchEntry);
4274 }
4275 }
4276
4277 // Start the next dispatch cycle for this connection.
4278 startDispatchCycleLocked(now(), connection);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004279}
4280
4281bool InputDispatcher::afterKeyEventLockedInterruptible(const sp<Connection>& connection,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004282 DispatchEntry* dispatchEntry,
4283 KeyEntry* keyEntry, bool handled) {
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004284 if (keyEntry->flags & AKEY_EVENT_FLAG_FALLBACK) {
Prabir Pradhanf93562f2018-11-29 12:13:37 -08004285 if (!handled) {
4286 // Report the key as unhandled, since the fallback was not handled.
4287 mReporter->reportUnhandledKey(keyEntry->sequenceNum);
4288 }
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004289 return false;
4290 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004291
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004292 // Get the fallback key state.
4293 // Clear it out after dispatching the UP.
4294 int32_t originalKeyCode = keyEntry->keyCode;
4295 int32_t fallbackKeyCode = connection->inputState.getFallbackKey(originalKeyCode);
4296 if (keyEntry->action == AKEY_EVENT_ACTION_UP) {
4297 connection->inputState.removeFallbackKey(originalKeyCode);
4298 }
4299
4300 if (handled || !dispatchEntry->hasForegroundTarget()) {
4301 // If the application handles the original key for which we previously
4302 // generated a fallback or if the window is not a foreground window,
4303 // then cancel the associated fallback key, if any.
4304 if (fallbackKeyCode != -1) {
4305 // Dispatch the unhandled key to the policy with the cancel flag.
Michael Wrightd02c5b62014-02-10 15:10:22 -08004306#if DEBUG_OUTBOUND_EVENT_DETAILS
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004307 ALOGD("Unhandled key event: Asking policy to cancel fallback action. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004308 "keyCode=%d, action=%d, repeatCount=%d, policyFlags=0x%08x",
4309 keyEntry->keyCode, keyEntry->action, keyEntry->repeatCount,
4310 keyEntry->policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004311#endif
4312 KeyEvent event;
4313 initializeKeyEvent(&event, keyEntry);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004314 event.setFlags(event.getFlags() | AKEY_EVENT_FLAG_CANCELED);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004315
4316 mLock.unlock();
4317
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004318 mPolicy->dispatchUnhandledKey(connection->inputChannel->getToken(), &event,
4319 keyEntry->policyFlags, &event);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004320
4321 mLock.lock();
4322
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004323 // Cancel the fallback key.
4324 if (fallbackKeyCode != AKEYCODE_UNKNOWN) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004325 CancelationOptions options(CancelationOptions::CANCEL_FALLBACK_EVENTS,
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004326 "application handled the original non-fallback key "
4327 "or is no longer a foreground target, "
4328 "canceling previously dispatched fallback key");
Michael Wrightd02c5b62014-02-10 15:10:22 -08004329 options.keyCode = fallbackKeyCode;
4330 synthesizeCancelationEventsForConnectionLocked(connection, options);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004331 }
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004332 connection->inputState.removeFallbackKey(originalKeyCode);
4333 }
4334 } else {
4335 // If the application did not handle a non-fallback key, first check
4336 // that we are in a good state to perform unhandled key event processing
4337 // Then ask the policy what to do with it.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004338 bool initialDown = keyEntry->action == AKEY_EVENT_ACTION_DOWN && keyEntry->repeatCount == 0;
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004339 if (fallbackKeyCode == -1 && !initialDown) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004340#if DEBUG_OUTBOUND_EVENT_DETAILS
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004341 ALOGD("Unhandled key event: Skipping unhandled key event processing "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004342 "since this is not an initial down. "
4343 "keyCode=%d, action=%d, repeatCount=%d, policyFlags=0x%08x",
4344 originalKeyCode, keyEntry->action, keyEntry->repeatCount, keyEntry->policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004345#endif
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004346 return false;
4347 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004348
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004349 // Dispatch the unhandled key to the policy.
4350#if DEBUG_OUTBOUND_EVENT_DETAILS
4351 ALOGD("Unhandled key event: Asking policy to perform fallback action. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004352 "keyCode=%d, action=%d, repeatCount=%d, policyFlags=0x%08x",
4353 keyEntry->keyCode, keyEntry->action, keyEntry->repeatCount, keyEntry->policyFlags);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004354#endif
4355 KeyEvent event;
4356 initializeKeyEvent(&event, keyEntry);
4357
4358 mLock.unlock();
4359
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004360 bool fallback = mPolicy->dispatchUnhandledKey(connection->inputChannel->getToken(), &event,
4361 keyEntry->policyFlags, &event);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004362
4363 mLock.lock();
4364
4365 if (connection->status != Connection::STATUS_NORMAL) {
4366 connection->inputState.removeFallbackKey(originalKeyCode);
4367 return false;
4368 }
4369
4370 // Latch the fallback keycode for this key on an initial down.
4371 // The fallback keycode cannot change at any other point in the lifecycle.
4372 if (initialDown) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004373 if (fallback) {
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004374 fallbackKeyCode = event.getKeyCode();
4375 } else {
4376 fallbackKeyCode = AKEYCODE_UNKNOWN;
4377 }
4378 connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode);
4379 }
4380
4381 ALOG_ASSERT(fallbackKeyCode != -1);
4382
4383 // Cancel the fallback key if the policy decides not to send it anymore.
4384 // We will continue to dispatch the key to the policy but we will no
4385 // longer dispatch a fallback key to the application.
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004386 if (fallbackKeyCode != AKEYCODE_UNKNOWN &&
4387 (!fallback || fallbackKeyCode != event.getKeyCode())) {
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004388#if DEBUG_OUTBOUND_EVENT_DETAILS
4389 if (fallback) {
4390 ALOGD("Unhandled key event: Policy requested to send key %d"
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004391 "as a fallback for %d, but on the DOWN it had requested "
4392 "to send %d instead. Fallback canceled.",
4393 event.getKeyCode(), originalKeyCode, fallbackKeyCode);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004394 } else {
4395 ALOGD("Unhandled key event: Policy did not request fallback for %d, "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004396 "but on the DOWN it had requested to send %d. "
4397 "Fallback canceled.",
4398 originalKeyCode, fallbackKeyCode);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004399 }
4400#endif
4401
4402 CancelationOptions options(CancelationOptions::CANCEL_FALLBACK_EVENTS,
4403 "canceling fallback, policy no longer desires it");
4404 options.keyCode = fallbackKeyCode;
4405 synthesizeCancelationEventsForConnectionLocked(connection, options);
4406
4407 fallback = false;
4408 fallbackKeyCode = AKEYCODE_UNKNOWN;
4409 if (keyEntry->action != AKEY_EVENT_ACTION_UP) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004410 connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004411 }
4412 }
Michael Wrightd02c5b62014-02-10 15:10:22 -08004413
4414#if DEBUG_OUTBOUND_EVENT_DETAILS
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004415 {
4416 std::string msg;
4417 const KeyedVector<int32_t, int32_t>& fallbackKeys =
4418 connection->inputState.getFallbackKeys();
4419 for (size_t i = 0; i < fallbackKeys.size(); i++) {
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004420 msg += StringPrintf(", %d->%d", fallbackKeys.keyAt(i), fallbackKeys.valueAt(i));
Michael Wrightd02c5b62014-02-10 15:10:22 -08004421 }
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004422 ALOGD("Unhandled key event: %zu currently tracked fallback keys%s.",
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004423 fallbackKeys.size(), msg.c_str());
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004424 }
4425#endif
4426
4427 if (fallback) {
4428 // Restart the dispatch cycle using the fallback key.
4429 keyEntry->eventTime = event.getEventTime();
4430 keyEntry->deviceId = event.getDeviceId();
4431 keyEntry->source = event.getSource();
4432 keyEntry->displayId = event.getDisplayId();
4433 keyEntry->flags = event.getFlags() | AKEY_EVENT_FLAG_FALLBACK;
4434 keyEntry->keyCode = fallbackKeyCode;
4435 keyEntry->scanCode = event.getScanCode();
4436 keyEntry->metaState = event.getMetaState();
4437 keyEntry->repeatCount = event.getRepeatCount();
4438 keyEntry->downTime = event.getDownTime();
4439 keyEntry->syntheticRepeat = false;
4440
4441#if DEBUG_OUTBOUND_EVENT_DETAILS
4442 ALOGD("Unhandled key event: Dispatching fallback key. "
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004443 "originalKeyCode=%d, fallbackKeyCode=%d, fallbackMetaState=%08x",
4444 originalKeyCode, fallbackKeyCode, keyEntry->metaState);
Prabir Pradhanf557dcf2018-12-18 16:38:14 -08004445#endif
4446 return true; // restart the event
4447 } else {
4448#if DEBUG_OUTBOUND_EVENT_DETAILS
4449 ALOGD("Unhandled key event: No fallback key.");
4450#endif
Prabir Pradhanf93562f2018-11-29 12:13:37 -08004451
4452 // Report the key as unhandled, since there is no fallback key.
4453 mReporter->reportUnhandledKey(keyEntry->sequenceNum);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004454 }
4455 }
4456 return false;
4457}
4458
4459bool InputDispatcher::afterMotionEventLockedInterruptible(const sp<Connection>& connection,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004460 DispatchEntry* dispatchEntry,
4461 MotionEntry* motionEntry, bool handled) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004462 return false;
4463}
4464
4465void InputDispatcher::doPokeUserActivityLockedInterruptible(CommandEntry* commandEntry) {
4466 mLock.unlock();
4467
4468 mPolicy->pokeUserActivity(commandEntry->eventTime, commandEntry->userActivityEventType);
4469
4470 mLock.lock();
4471}
4472
4473void InputDispatcher::initializeKeyEvent(KeyEvent* event, const KeyEntry* entry) {
Siarhei Vishniakoua62a8dd2018-06-08 21:17:33 +01004474 event->initialize(entry->deviceId, entry->source, entry->displayId, entry->action, entry->flags,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004475 entry->keyCode, entry->scanCode, entry->metaState, entry->repeatCount,
4476 entry->downTime, entry->eventTime);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004477}
4478
Siarhei Vishniakoud2770042019-10-29 11:08:14 -07004479void InputDispatcher::updateDispatchStatistics(nsecs_t currentTime, const EventEntry& entry,
Garfield Tan0fc2fa72019-08-29 17:22:15 -07004480 int32_t injectionResult,
4481 nsecs_t timeSpentWaitingForApplication) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004482 // TODO Write some statistics about how long we spend waiting.
4483}
4484
Siarhei Vishniakoude4bf152019-08-16 11:12:52 -05004485/**
4486 * Report the touch event latency to the statsd server.
4487 * Input events are reported for statistics if:
4488 * - This is a touchscreen event
4489 * - InputFilter is not enabled
4490 * - Event is not injected or synthesized
4491 *
4492 * Statistics should be reported before calling addValue, to prevent a fresh new sample
4493 * from getting aggregated with the "old" data.
4494 */
4495void InputDispatcher::reportTouchEventForStatistics(const MotionEntry& motionEntry)
4496 REQUIRES(mLock) {
4497 const bool reportForStatistics = (motionEntry.source == AINPUT_SOURCE_TOUCHSCREEN) &&
4498 !(motionEntry.isSynthesized()) && !mInputFilterEnabled;
4499 if (!reportForStatistics) {
4500 return;
4501 }
4502
4503 if (mTouchStatistics.shouldReport()) {
4504 android::util::stats_write(android::util::TOUCH_EVENT_REPORTED, mTouchStatistics.getMin(),
4505 mTouchStatistics.getMax(), mTouchStatistics.getMean(),
4506 mTouchStatistics.getStDev(), mTouchStatistics.getCount());
4507 mTouchStatistics.reset();
4508 }
4509 const float latencyMicros = nanoseconds_to_microseconds(now() - motionEntry.eventTime);
4510 mTouchStatistics.addValue(latencyMicros);
4511}
4512
Michael Wrightd02c5b62014-02-10 15:10:22 -08004513void InputDispatcher::traceInboundQueueLengthLocked() {
4514 if (ATRACE_ENABLED()) {
Siarhei Vishniakou44a2aed2019-07-29 08:59:52 -07004515 ATRACE_INT("iq", mInboundQueue.size());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004516 }
4517}
4518
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08004519void InputDispatcher::traceOutboundQueueLength(const sp<Connection>& connection) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004520 if (ATRACE_ENABLED()) {
4521 char counterName[40];
Siarhei Vishniakou587c3f02018-01-04 11:46:44 -08004522 snprintf(counterName, sizeof(counterName), "oq:%s", connection->getWindowName().c_str());
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004523 ATRACE_INT(counterName, connection->outboundQueue.size());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004524 }
4525}
4526
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08004527void InputDispatcher::traceWaitQueueLength(const sp<Connection>& connection) {
Michael Wrightd02c5b62014-02-10 15:10:22 -08004528 if (ATRACE_ENABLED()) {
4529 char counterName[40];
Siarhei Vishniakou587c3f02018-01-04 11:46:44 -08004530 snprintf(counterName, sizeof(counterName), "wq:%s", connection->getWindowName().c_str());
Siarhei Vishniakou13bda6c2019-07-29 08:34:33 -07004531 ATRACE_INT(counterName, connection->waitQueue.size());
Michael Wrightd02c5b62014-02-10 15:10:22 -08004532 }
4533}
4534
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004535void InputDispatcher::dump(std::string& dump) {
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004536 std::scoped_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004537
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004538 dump += "Input Dispatcher State:\n";
Michael Wrightd02c5b62014-02-10 15:10:22 -08004539 dumpDispatchStateLocked(dump);
4540
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08004541 if (!mLastANRState.empty()) {
4542 dump += "\nInput Dispatcher State at time of last ANR:\n";
4543 dump += mLastANRState;
Michael Wrightd02c5b62014-02-10 15:10:22 -08004544 }
4545}
4546
4547void InputDispatcher::monitor() {
4548 // Acquire and release the lock to ensure that the dispatcher has not deadlocked.
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004549 std::unique_lock _l(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004550 mLooper->wake();
Siarhei Vishniakou443ad902019-03-06 17:25:41 -08004551 mDispatcherIsAlive.wait(_l);
Michael Wrightd02c5b62014-02-10 15:10:22 -08004552}
4553
Garfield Tane84e6f92019-08-29 17:28:41 -07004554} // namespace android::inputdispatcher