| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1 | /* | 
|  | 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 Reck | e071058 | 2019-09-26 13:46:12 -0700 | [diff] [blame] | 20 | #define LOG_NDEBUG 1 | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 21 |  | 
|  | 22 | // Log detailed debug messages about each inbound event notification to the dispatcher. | 
|  | 23 | #define DEBUG_INBOUND_EVENT_DETAILS 0 | 
|  | 24 |  | 
|  | 25 | // Log detailed debug messages about each outbound event processed by the dispatcher. | 
|  | 26 | #define DEBUG_OUTBOUND_EVENT_DETAILS 0 | 
|  | 27 |  | 
|  | 28 | // Log debug messages about the dispatch cycle. | 
|  | 29 | #define DEBUG_DISPATCH_CYCLE 0 | 
|  | 30 |  | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 31 | // Log debug messages about channel creation | 
|  | 32 | #define DEBUG_CHANNEL_CREATION 0 | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 33 |  | 
|  | 34 | // Log debug messages about input event injection. | 
|  | 35 | #define DEBUG_INJECTION 0 | 
|  | 36 |  | 
|  | 37 | // Log debug messages about input focus tracking. | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 38 | static constexpr bool DEBUG_FOCUS = false; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 39 |  | 
| Bernardo Rufino | 4bae0ac | 2020-10-14 18:33:46 +0000 | [diff] [blame] | 40 | // Log debug messages about touch occlusion | 
|  | 41 | // STOPSHIP(b/169067926): Set to false | 
|  | 42 | static constexpr bool DEBUG_TOUCH_OCCLUSION = true; | 
|  | 43 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 44 | // Log debug messages about the app switch latency optimization. | 
|  | 45 | #define DEBUG_APP_SWITCH 0 | 
|  | 46 |  | 
|  | 47 | // Log debug messages about hover events. | 
|  | 48 | #define DEBUG_HOVER 0 | 
|  | 49 |  | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 50 | #include <android-base/chrono_utils.h> | 
| Peter Collingbourne | b04b9b8 | 2021-02-08 12:09:47 -0800 | [diff] [blame] | 51 | #include <android-base/properties.h> | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 52 | #include <android-base/stringprintf.h> | 
| Siarhei Vishniakou | 7062295 | 2020-07-30 11:17:23 -0500 | [diff] [blame] | 53 | #include <android/os/IInputConstants.h> | 
| Robert Carr | 4e670e5 | 2018-08-15 13:26:12 -0700 | [diff] [blame] | 54 | #include <binder/Binder.h> | 
| Siarhei Vishniakou | 2508b87 | 2020-12-03 16:33:53 -1000 | [diff] [blame] | 55 | #include <binder/IServiceManager.h> | 
|  | 56 | #include <com/android/internal/compat/IPlatformCompatNative.h> | 
| Siarhei Vishniakou | 0d8ed6e | 2020-01-17 15:48:59 -0800 | [diff] [blame] | 57 | #include <input/InputDevice.h> | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 58 | #include <input/InputWindow.h> | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 59 | #include <log/log.h> | 
| Siarhei Vishniakou | 887b7d9 | 2020-06-18 00:43:02 +0000 | [diff] [blame] | 60 | #include <log/log_event_list.h> | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 61 | #include <powermanager/PowerManager.h> | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 62 | #include <unistd.h> | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 63 | #include <utils/Trace.h> | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 64 |  | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 65 | #include <cerrno> | 
|  | 66 | #include <cinttypes> | 
|  | 67 | #include <climits> | 
|  | 68 | #include <cstddef> | 
|  | 69 | #include <ctime> | 
|  | 70 | #include <queue> | 
|  | 71 | #include <sstream> | 
|  | 72 |  | 
|  | 73 | #include "Connection.h" | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 74 | #include "InputDispatcher.h" | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 75 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 76 | #define INDENT "  " | 
|  | 77 | #define INDENT2 "    " | 
|  | 78 | #define INDENT3 "      " | 
|  | 79 | #define INDENT4 "        " | 
|  | 80 |  | 
| Peter Collingbourne | b04b9b8 | 2021-02-08 12:09:47 -0800 | [diff] [blame] | 81 | using android::base::HwTimeoutMultiplier; | 
| Siarhei Vishniakou | eedd0fc | 2021-03-12 09:50:36 +0000 | [diff] [blame] | 82 | using android::base::Result; | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 83 | using android::base::StringPrintf; | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 84 | using android::os::BlockUntrustedTouchesMode; | 
| Siarhei Vishniakou | 2508b87 | 2020-12-03 16:33:53 -1000 | [diff] [blame] | 85 | using android::os::IInputConstants; | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 86 | using android::os::InputEventInjectionResult; | 
|  | 87 | using android::os::InputEventInjectionSync; | 
| Siarhei Vishniakou | 2508b87 | 2020-12-03 16:33:53 -1000 | [diff] [blame] | 88 | using com::android::internal::compat::IPlatformCompatNative; | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 89 |  | 
| Garfield Tan | e84e6f9 | 2019-08-29 17:28:41 -0700 | [diff] [blame] | 90 | namespace android::inputdispatcher { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 91 |  | 
| Prabir Pradhan | 93a0f91 | 2021-04-21 13:47:42 -0700 | [diff] [blame] | 92 | // When per-window-input-rotation is enabled, InputFlinger works in the un-rotated display | 
|  | 93 | // coordinates and SurfaceFlinger includes the display rotation in the input window transforms. | 
|  | 94 | static bool isPerWindowInputRotationEnabled() { | 
|  | 95 | static const bool PER_WINDOW_INPUT_ROTATION = | 
|  | 96 | base::GetBoolProperty("persist.debug.per_window_input_rotation", false); | 
|  | 97 | return PER_WINDOW_INPUT_ROTATION; | 
|  | 98 | } | 
|  | 99 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 100 | // Default input dispatching timeout if there is no focused application or paused window | 
|  | 101 | // from which to determine an appropriate dispatching timeout. | 
| Peter Collingbourne | b04b9b8 | 2021-02-08 12:09:47 -0800 | [diff] [blame] | 102 | const std::chrono::duration DEFAULT_INPUT_DISPATCHING_TIMEOUT = std::chrono::milliseconds( | 
|  | 103 | android::os::IInputConstants::UNMULTIPLIED_DEFAULT_DISPATCHING_TIMEOUT_MILLIS * | 
|  | 104 | HwTimeoutMultiplier()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 105 |  | 
|  | 106 | // Amount of time to allow for all pending events to be processed when an app switch | 
|  | 107 | // key is on the way.  This is used to preempt input dispatch and drop input events | 
|  | 108 | // when an application takes too long to respond and the user has pressed an app switch key. | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 109 | constexpr nsecs_t APP_SWITCH_TIMEOUT = 500 * 1000000LL; // 0.5sec | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 110 |  | 
|  | 111 | // Amount of time to allow for an event to be dispatched (measured since its eventTime) | 
|  | 112 | // before considering it stale and dropping it. | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 113 | constexpr nsecs_t STALE_EVENT_TIMEOUT = 10000 * 1000000LL; // 10sec | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 114 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 115 | // Log a warning when an event takes longer than this to process, even if an ANR does not occur. | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 116 | constexpr nsecs_t SLOW_EVENT_PROCESSING_WARNING_TIMEOUT = 2000 * 1000000LL; // 2sec | 
|  | 117 |  | 
|  | 118 | // Log a warning when an interception call takes longer than this to process. | 
|  | 119 | constexpr std::chrono::milliseconds SLOW_INTERCEPTION_THRESHOLD = 50ms; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 120 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 121 | // Additional key latency in case a connection is still processing some motion events. | 
|  | 122 | // This will help with the case when a user touched a button that opens a new window, | 
|  | 123 | // and gives us the chance to dispatch the key to this new window. | 
|  | 124 | constexpr std::chrono::nanoseconds KEY_WAITING_FOR_EVENTS_TIMEOUT = 500ms; | 
|  | 125 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 126 | // Number of recent events to keep for debugging purposes. | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 127 | constexpr size_t RECENT_QUEUE_MAX_SIZE = 10; | 
|  | 128 |  | 
| Siarhei Vishniakou | 887b7d9 | 2020-06-18 00:43:02 +0000 | [diff] [blame] | 129 | // Event log tags. See EventLogTags.logtags for reference | 
|  | 130 | constexpr int LOGTAG_INPUT_INTERACTION = 62000; | 
|  | 131 | constexpr int LOGTAG_INPUT_FOCUS = 62001; | 
|  | 132 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 133 | static inline nsecs_t now() { | 
|  | 134 | return systemTime(SYSTEM_TIME_MONOTONIC); | 
|  | 135 | } | 
|  | 136 |  | 
|  | 137 | static inline const char* toString(bool value) { | 
|  | 138 | return value ? "true" : "false"; | 
|  | 139 | } | 
|  | 140 |  | 
| Bernardo Rufino | 49d99e4 | 2021-01-18 15:16:59 +0000 | [diff] [blame] | 141 | static inline const std::string toString(sp<IBinder> binder) { | 
|  | 142 | if (binder == nullptr) { | 
|  | 143 | return "<null>"; | 
|  | 144 | } | 
|  | 145 | return StringPrintf("%p", binder.get()); | 
|  | 146 | } | 
|  | 147 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 148 | static inline int32_t getMotionEventActionPointerIndex(int32_t action) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 149 | return (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) >> | 
|  | 150 | AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 151 | } | 
|  | 152 |  | 
|  | 153 | static bool isValidKeyAction(int32_t action) { | 
|  | 154 | switch (action) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 155 | case AKEY_EVENT_ACTION_DOWN: | 
|  | 156 | case AKEY_EVENT_ACTION_UP: | 
|  | 157 | return true; | 
|  | 158 | default: | 
|  | 159 | return false; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 160 | } | 
|  | 161 | } | 
|  | 162 |  | 
|  | 163 | static bool validateKeyEvent(int32_t action) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 164 | if (!isValidKeyAction(action)) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 165 | ALOGE("Key event has invalid action code 0x%x", action); | 
|  | 166 | return false; | 
|  | 167 | } | 
|  | 168 | return true; | 
|  | 169 | } | 
|  | 170 |  | 
| Michael Wright | 7b159c9 | 2015-05-14 14:48:03 +0100 | [diff] [blame] | 171 | static bool isValidMotionAction(int32_t action, int32_t actionButton, int32_t pointerCount) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 172 | switch (action & AMOTION_EVENT_ACTION_MASK) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 173 | case AMOTION_EVENT_ACTION_DOWN: | 
|  | 174 | case AMOTION_EVENT_ACTION_UP: | 
|  | 175 | case AMOTION_EVENT_ACTION_CANCEL: | 
|  | 176 | case AMOTION_EVENT_ACTION_MOVE: | 
|  | 177 | case AMOTION_EVENT_ACTION_OUTSIDE: | 
|  | 178 | case AMOTION_EVENT_ACTION_HOVER_ENTER: | 
|  | 179 | case AMOTION_EVENT_ACTION_HOVER_MOVE: | 
|  | 180 | case AMOTION_EVENT_ACTION_HOVER_EXIT: | 
|  | 181 | case AMOTION_EVENT_ACTION_SCROLL: | 
|  | 182 | return true; | 
|  | 183 | case AMOTION_EVENT_ACTION_POINTER_DOWN: | 
|  | 184 | case AMOTION_EVENT_ACTION_POINTER_UP: { | 
|  | 185 | int32_t index = getMotionEventActionPointerIndex(action); | 
|  | 186 | return index >= 0 && index < pointerCount; | 
|  | 187 | } | 
|  | 188 | case AMOTION_EVENT_ACTION_BUTTON_PRESS: | 
|  | 189 | case AMOTION_EVENT_ACTION_BUTTON_RELEASE: | 
|  | 190 | return actionButton != 0; | 
|  | 191 | default: | 
|  | 192 | return false; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 193 | } | 
|  | 194 | } | 
|  | 195 |  | 
| Siarhei Vishniakou | c1ae556 | 2020-06-30 14:22:57 -0500 | [diff] [blame] | 196 | static int64_t millis(std::chrono::nanoseconds t) { | 
|  | 197 | return std::chrono::duration_cast<std::chrono::milliseconds>(t).count(); | 
|  | 198 | } | 
|  | 199 |  | 
| Michael Wright | 7b159c9 | 2015-05-14 14:48:03 +0100 | [diff] [blame] | 200 | static bool validateMotionEvent(int32_t action, int32_t actionButton, size_t pointerCount, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 201 | const PointerProperties* pointerProperties) { | 
|  | 202 | if (!isValidMotionAction(action, actionButton, pointerCount)) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 203 | ALOGE("Motion event has invalid action code 0x%x", action); | 
|  | 204 | return false; | 
|  | 205 | } | 
|  | 206 | if (pointerCount < 1 || pointerCount > MAX_POINTERS) { | 
| Narayan Kamath | 37764c7 | 2014-03-27 14:21:09 +0000 | [diff] [blame] | 207 | ALOGE("Motion event has invalid pointer count %zu; value must be between 1 and %d.", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 208 | pointerCount, MAX_POINTERS); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 209 | return false; | 
|  | 210 | } | 
|  | 211 | BitSet32 pointerIdBits; | 
|  | 212 | for (size_t i = 0; i < pointerCount; i++) { | 
|  | 213 | int32_t id = pointerProperties[i].id; | 
|  | 214 | if (id < 0 || id > MAX_POINTER_ID) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 215 | ALOGE("Motion event has invalid pointer id %d; value must be between 0 and %d", id, | 
|  | 216 | MAX_POINTER_ID); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 217 | return false; | 
|  | 218 | } | 
|  | 219 | if (pointerIdBits.hasBit(id)) { | 
|  | 220 | ALOGE("Motion event has duplicate pointer id %d", id); | 
|  | 221 | return false; | 
|  | 222 | } | 
|  | 223 | pointerIdBits.markBit(id); | 
|  | 224 | } | 
|  | 225 | return true; | 
|  | 226 | } | 
|  | 227 |  | 
| Bernardo Rufino | 53fc31e | 2020-11-03 11:01:07 +0000 | [diff] [blame] | 228 | static std::string dumpRegion(const Region& region) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 229 | if (region.isEmpty()) { | 
| Bernardo Rufino | 53fc31e | 2020-11-03 11:01:07 +0000 | [diff] [blame] | 230 | return "<empty>"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 231 | } | 
|  | 232 |  | 
| Bernardo Rufino | 53fc31e | 2020-11-03 11:01:07 +0000 | [diff] [blame] | 233 | std::string dump; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 234 | bool first = true; | 
|  | 235 | Region::const_iterator cur = region.begin(); | 
|  | 236 | Region::const_iterator const tail = region.end(); | 
|  | 237 | while (cur != tail) { | 
|  | 238 | if (first) { | 
|  | 239 | first = false; | 
|  | 240 | } else { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 241 | dump += "|"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 242 | } | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 243 | dump += StringPrintf("[%d,%d][%d,%d]", cur->left, cur->top, cur->right, cur->bottom); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 244 | cur++; | 
|  | 245 | } | 
| Bernardo Rufino | 53fc31e | 2020-11-03 11:01:07 +0000 | [diff] [blame] | 246 | return dump; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 247 | } | 
|  | 248 |  | 
| Siarhei Vishniakou | 14411c9 | 2020-09-18 21:15:05 -0500 | [diff] [blame] | 249 | static std::string dumpQueue(const std::deque<DispatchEntry*>& queue, nsecs_t currentTime) { | 
|  | 250 | constexpr size_t maxEntries = 50; // max events to print | 
|  | 251 | constexpr size_t skipBegin = maxEntries / 2; | 
|  | 252 | const size_t skipEnd = queue.size() - maxEntries / 2; | 
|  | 253 | // skip from maxEntries / 2 ... size() - maxEntries/2 | 
|  | 254 | // only print from 0 .. skipBegin and then from skipEnd .. size() | 
|  | 255 |  | 
|  | 256 | std::string dump; | 
|  | 257 | for (size_t i = 0; i < queue.size(); i++) { | 
|  | 258 | const DispatchEntry& entry = *queue[i]; | 
|  | 259 | if (i >= skipBegin && i < skipEnd) { | 
|  | 260 | dump += StringPrintf(INDENT4 "<skipped %zu entries>\n", skipEnd - skipBegin); | 
|  | 261 | i = skipEnd - 1; // it will be incremented to "skipEnd" by 'continue' | 
|  | 262 | continue; | 
|  | 263 | } | 
|  | 264 | dump.append(INDENT4); | 
|  | 265 | dump += entry.eventEntry->getDescription(); | 
|  | 266 | dump += StringPrintf(", seq=%" PRIu32 | 
|  | 267 | ", targetFlags=0x%08x, resolvedAction=%d, age=%" PRId64 "ms", | 
|  | 268 | entry.seq, entry.targetFlags, entry.resolvedAction, | 
|  | 269 | ns2ms(currentTime - entry.eventEntry->eventTime)); | 
|  | 270 | if (entry.deliveryTime != 0) { | 
|  | 271 | // This entry was delivered, so add information on how long we've been waiting | 
|  | 272 | dump += StringPrintf(", wait=%" PRId64 "ms", ns2ms(currentTime - entry.deliveryTime)); | 
|  | 273 | } | 
|  | 274 | dump.append("\n"); | 
|  | 275 | } | 
|  | 276 | return dump; | 
|  | 277 | } | 
|  | 278 |  | 
| Siarhei Vishniakou | b3ad35c | 2019-04-05 10:50:52 -0700 | [diff] [blame] | 279 | /** | 
|  | 280 | * Find the entry in std::unordered_map by key, and return it. | 
|  | 281 | * If the entry is not found, return a default constructed entry. | 
|  | 282 | * | 
|  | 283 | * Useful when the entries are vectors, since an empty vector will be returned | 
|  | 284 | * if the entry is not found. | 
|  | 285 | * Also useful when the entries are sp<>. If an entry is not found, nullptr is returned. | 
|  | 286 | */ | 
| Siarhei Vishniakou | 146ecfd | 2019-07-29 16:04:31 -0700 | [diff] [blame] | 287 | template <typename K, typename V> | 
|  | 288 | static V getValueByKey(const std::unordered_map<K, V>& map, K key) { | 
| Siarhei Vishniakou | b3ad35c | 2019-04-05 10:50:52 -0700 | [diff] [blame] | 289 | auto it = map.find(key); | 
| Siarhei Vishniakou | 146ecfd | 2019-07-29 16:04:31 -0700 | [diff] [blame] | 290 | return it != map.end() ? it->second : V{}; | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 291 | } | 
|  | 292 |  | 
| chaviw | af87b3e | 2019-10-01 16:59:28 -0700 | [diff] [blame] | 293 | static bool haveSameToken(const sp<InputWindowHandle>& first, const sp<InputWindowHandle>& second) { | 
|  | 294 | if (first == second) { | 
|  | 295 | return true; | 
|  | 296 | } | 
|  | 297 |  | 
|  | 298 | if (first == nullptr || second == nullptr) { | 
|  | 299 | return false; | 
|  | 300 | } | 
|  | 301 |  | 
|  | 302 | return first->getToken() == second->getToken(); | 
|  | 303 | } | 
|  | 304 |  | 
| Bernardo Rufino | 1ff9d59 | 2021-01-18 16:58:57 +0000 | [diff] [blame] | 305 | static bool haveSameApplicationToken(const InputWindowInfo* first, const InputWindowInfo* second) { | 
|  | 306 | if (first == nullptr || second == nullptr) { | 
|  | 307 | return false; | 
|  | 308 | } | 
|  | 309 | return first->applicationInfo.token != nullptr && | 
|  | 310 | first->applicationInfo.token == second->applicationInfo.token; | 
|  | 311 | } | 
|  | 312 |  | 
| Siarhei Vishniakou | adfd4fa | 2019-12-20 11:02:58 -0800 | [diff] [blame] | 313 | static bool isStaleEvent(nsecs_t currentTime, const EventEntry& entry) { | 
|  | 314 | return currentTime - entry.eventTime >= STALE_EVENT_TIMEOUT; | 
|  | 315 | } | 
|  | 316 |  | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 317 | static std::unique_ptr<DispatchEntry> createDispatchEntry(const InputTarget& inputTarget, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 318 | std::shared_ptr<EventEntry> eventEntry, | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 319 | int32_t inputTargetFlags) { | 
| yunho.shin | f4a80b8 | 2020-11-16 21:13:57 +0900 | [diff] [blame] | 320 | if (eventEntry->type == EventEntry::Type::MOTION) { | 
|  | 321 | const MotionEntry& motionEntry = static_cast<const MotionEntry&>(*eventEntry); | 
| Prabir Pradhan | bd52771 | 2021-03-09 19:17:09 -0800 | [diff] [blame] | 322 | if ((motionEntry.source & AINPUT_SOURCE_CLASS_POINTER) == 0) { | 
| yunho.shin | f4a80b8 | 2020-11-16 21:13:57 +0900 | [diff] [blame] | 323 | const ui::Transform identityTransform; | 
| Prabir Pradhan | bd52771 | 2021-03-09 19:17:09 -0800 | [diff] [blame] | 324 | // Use identity transform for events that are not pointer events because their axes | 
|  | 325 | // values do not represent on-screen coordinates, so they should not have any window | 
|  | 326 | // transformations applied to them. | 
| yunho.shin | f4a80b8 | 2020-11-16 21:13:57 +0900 | [diff] [blame] | 327 | return std::make_unique<DispatchEntry>(eventEntry, inputTargetFlags, identityTransform, | 
| Evan Rosky | 84f07f0 | 2021-04-16 10:42:42 -0700 | [diff] [blame] | 328 | 1.0f /*globalScaleFactor*/, | 
|  | 329 | inputTarget.displaySize); | 
| yunho.shin | f4a80b8 | 2020-11-16 21:13:57 +0900 | [diff] [blame] | 330 | } | 
|  | 331 | } | 
|  | 332 |  | 
| chaviw | 1ff3d1e | 2020-07-01 15:53:47 -0700 | [diff] [blame] | 333 | if (inputTarget.useDefaultPointerTransform()) { | 
|  | 334 | const ui::Transform& transform = inputTarget.getDefaultPointerTransform(); | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 335 | return std::make_unique<DispatchEntry>(eventEntry, inputTargetFlags, transform, | 
| Evan Rosky | 84f07f0 | 2021-04-16 10:42:42 -0700 | [diff] [blame] | 336 | inputTarget.globalScaleFactor, | 
|  | 337 | inputTarget.displaySize); | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 338 | } | 
|  | 339 |  | 
|  | 340 | ALOG_ASSERT(eventEntry->type == EventEntry::Type::MOTION); | 
|  | 341 | const MotionEntry& motionEntry = static_cast<const MotionEntry&>(*eventEntry); | 
|  | 342 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 343 | std::vector<PointerCoords> pointerCoords; | 
|  | 344 | pointerCoords.resize(motionEntry.pointerCount); | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 345 |  | 
|  | 346 | // Use the first pointer information to normalize all other pointers. This could be any pointer | 
|  | 347 | // as long as all other pointers are normalized to the same value and the final DispatchEntry | 
| chaviw | 1ff3d1e | 2020-07-01 15:53:47 -0700 | [diff] [blame] | 348 | // uses the transform for the normalized pointer. | 
|  | 349 | const ui::Transform& firstPointerTransform = | 
|  | 350 | inputTarget.pointerTransforms[inputTarget.pointerIds.firstMarkedBit()]; | 
|  | 351 | ui::Transform inverseFirstTransform = firstPointerTransform.inverse(); | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 352 |  | 
|  | 353 | // Iterate through all pointers in the event to normalize against the first. | 
|  | 354 | for (uint32_t pointerIndex = 0; pointerIndex < motionEntry.pointerCount; pointerIndex++) { | 
|  | 355 | const PointerProperties& pointerProperties = motionEntry.pointerProperties[pointerIndex]; | 
|  | 356 | uint32_t pointerId = uint32_t(pointerProperties.id); | 
| chaviw | 1ff3d1e | 2020-07-01 15:53:47 -0700 | [diff] [blame] | 357 | const ui::Transform& currTransform = inputTarget.pointerTransforms[pointerId]; | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 358 |  | 
|  | 359 | pointerCoords[pointerIndex].copyFrom(motionEntry.pointerCoords[pointerIndex]); | 
| chaviw | 1ff3d1e | 2020-07-01 15:53:47 -0700 | [diff] [blame] | 360 | // First, apply the current pointer's transform to update the coordinates into | 
|  | 361 | // window space. | 
|  | 362 | pointerCoords[pointerIndex].transform(currTransform); | 
|  | 363 | // Next, apply the inverse transform of the normalized coordinates so the | 
|  | 364 | // current coordinates are transformed into the normalized coordinate space. | 
|  | 365 | pointerCoords[pointerIndex].transform(inverseFirstTransform); | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 366 | } | 
|  | 367 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 368 | std::unique_ptr<MotionEntry> combinedMotionEntry = | 
|  | 369 | std::make_unique<MotionEntry>(motionEntry.id, motionEntry.eventTime, | 
|  | 370 | motionEntry.deviceId, motionEntry.source, | 
|  | 371 | motionEntry.displayId, motionEntry.policyFlags, | 
|  | 372 | motionEntry.action, motionEntry.actionButton, | 
|  | 373 | motionEntry.flags, motionEntry.metaState, | 
|  | 374 | motionEntry.buttonState, motionEntry.classification, | 
|  | 375 | motionEntry.edgeFlags, motionEntry.xPrecision, | 
|  | 376 | motionEntry.yPrecision, motionEntry.xCursorPosition, | 
|  | 377 | motionEntry.yCursorPosition, motionEntry.downTime, | 
|  | 378 | motionEntry.pointerCount, motionEntry.pointerProperties, | 
|  | 379 | pointerCoords.data(), 0 /* xOffset */, 0 /* yOffset */); | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 380 |  | 
|  | 381 | if (motionEntry.injectionState) { | 
|  | 382 | combinedMotionEntry->injectionState = motionEntry.injectionState; | 
|  | 383 | combinedMotionEntry->injectionState->refCount += 1; | 
|  | 384 | } | 
|  | 385 |  | 
|  | 386 | std::unique_ptr<DispatchEntry> dispatchEntry = | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 387 | std::make_unique<DispatchEntry>(std::move(combinedMotionEntry), inputTargetFlags, | 
| Evan Rosky | 84f07f0 | 2021-04-16 10:42:42 -0700 | [diff] [blame] | 388 | firstPointerTransform, inputTarget.globalScaleFactor, | 
|  | 389 | inputTarget.displaySize); | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 390 | return dispatchEntry; | 
|  | 391 | } | 
|  | 392 |  | 
| Siarhei Vishniakou | f0007dd | 2020-04-13 11:40:37 -0700 | [diff] [blame] | 393 | static void addGestureMonitors(const std::vector<Monitor>& monitors, | 
|  | 394 | std::vector<TouchedMonitor>& outTouchedMonitors, float xOffset = 0, | 
|  | 395 | float yOffset = 0) { | 
|  | 396 | if (monitors.empty()) { | 
|  | 397 | return; | 
|  | 398 | } | 
|  | 399 | outTouchedMonitors.reserve(monitors.size() + outTouchedMonitors.size()); | 
|  | 400 | for (const Monitor& monitor : monitors) { | 
|  | 401 | outTouchedMonitors.emplace_back(monitor, xOffset, yOffset); | 
|  | 402 | } | 
|  | 403 | } | 
|  | 404 |  | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 405 | static status_t openInputChannelPair(const std::string& name, | 
|  | 406 | std::shared_ptr<InputChannel>& serverChannel, | 
|  | 407 | std::unique_ptr<InputChannel>& clientChannel) { | 
|  | 408 | std::unique_ptr<InputChannel> uniqueServerChannel; | 
|  | 409 | status_t result = InputChannel::openInputChannelPair(name, uniqueServerChannel, clientChannel); | 
|  | 410 |  | 
|  | 411 | serverChannel = std::move(uniqueServerChannel); | 
|  | 412 | return result; | 
|  | 413 | } | 
|  | 414 |  | 
| Siarhei Vishniakou | e41c451 | 2020-09-08 19:35:58 -0500 | [diff] [blame] | 415 | template <typename T> | 
|  | 416 | static bool sharedPointersEqual(const std::shared_ptr<T>& lhs, const std::shared_ptr<T>& rhs) { | 
|  | 417 | if (lhs == nullptr && rhs == nullptr) { | 
|  | 418 | return true; | 
|  | 419 | } | 
|  | 420 | if (lhs == nullptr || rhs == nullptr) { | 
|  | 421 | return false; | 
|  | 422 | } | 
|  | 423 | return *lhs == *rhs; | 
|  | 424 | } | 
|  | 425 |  | 
| Siarhei Vishniakou | 2508b87 | 2020-12-03 16:33:53 -1000 | [diff] [blame] | 426 | static sp<IPlatformCompatNative> getCompatService() { | 
|  | 427 | sp<IBinder> service(defaultServiceManager()->getService(String16("platform_compat_native"))); | 
|  | 428 | if (service == nullptr) { | 
|  | 429 | ALOGE("Failed to link to compat service"); | 
|  | 430 | return nullptr; | 
|  | 431 | } | 
|  | 432 | return interface_cast<IPlatformCompatNative>(service); | 
|  | 433 | } | 
|  | 434 |  | 
| Siarhei Vishniakou | 2e2ea99 | 2020-12-15 02:57:19 +0000 | [diff] [blame] | 435 | static KeyEvent createKeyEvent(const KeyEntry& entry) { | 
|  | 436 | KeyEvent event; | 
|  | 437 | event.initialize(entry.id, entry.deviceId, entry.source, entry.displayId, INVALID_HMAC, | 
|  | 438 | entry.action, entry.flags, entry.keyCode, entry.scanCode, entry.metaState, | 
|  | 439 | entry.repeatCount, entry.downTime, entry.eventTime); | 
|  | 440 | return event; | 
|  | 441 | } | 
|  | 442 |  | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 443 | static std::optional<int32_t> findMonitorPidByToken( | 
|  | 444 | const std::unordered_map<int32_t, std::vector<Monitor>>& monitorsByDisplay, | 
|  | 445 | const sp<IBinder>& token) { | 
|  | 446 | for (const auto& it : monitorsByDisplay) { | 
|  | 447 | const std::vector<Monitor>& monitors = it.second; | 
|  | 448 | for (const Monitor& monitor : monitors) { | 
|  | 449 | if (monitor.inputChannel->getConnectionToken() == token) { | 
|  | 450 | return monitor.pid; | 
|  | 451 | } | 
|  | 452 | } | 
|  | 453 | } | 
|  | 454 | return std::nullopt; | 
|  | 455 | } | 
|  | 456 |  | 
| Siarhei Vishniakou | f265212 | 2021-03-05 21:39:46 +0000 | [diff] [blame] | 457 | static bool shouldReportMetricsForConnection(const Connection& connection) { | 
|  | 458 | // Do not keep track of gesture monitors. They receive every event and would disproportionately | 
|  | 459 | // affect the statistics. | 
|  | 460 | if (connection.monitor) { | 
|  | 461 | return false; | 
|  | 462 | } | 
|  | 463 | // If the connection is experiencing ANR, let's skip it. We have separate ANR metrics | 
|  | 464 | if (!connection.responsive) { | 
|  | 465 | return false; | 
|  | 466 | } | 
|  | 467 | return true; | 
|  | 468 | } | 
|  | 469 |  | 
|  | 470 | static bool shouldReportFinishedEvent(const DispatchEntry& dispatchEntry, | 
|  | 471 | const Connection& connection) { | 
|  | 472 | const EventEntry& eventEntry = *dispatchEntry.eventEntry; | 
|  | 473 | const int32_t& inputEventId = eventEntry.id; | 
|  | 474 | if (inputEventId != dispatchEntry.resolvedEventId) { | 
|  | 475 | // Event was transmuted | 
|  | 476 | return false; | 
|  | 477 | } | 
|  | 478 | if (inputEventId == android::os::IInputConstants::INVALID_INPUT_EVENT_ID) { | 
|  | 479 | return false; | 
|  | 480 | } | 
|  | 481 | // Only track latency for events that originated from hardware | 
|  | 482 | if (eventEntry.isSynthesized()) { | 
|  | 483 | return false; | 
|  | 484 | } | 
|  | 485 | const EventEntry::Type& inputEventEntryType = eventEntry.type; | 
|  | 486 | if (inputEventEntryType == EventEntry::Type::KEY) { | 
|  | 487 | const KeyEntry& keyEntry = static_cast<const KeyEntry&>(eventEntry); | 
|  | 488 | if (keyEntry.flags & AKEY_EVENT_FLAG_CANCELED) { | 
|  | 489 | return false; | 
|  | 490 | } | 
|  | 491 | } else if (inputEventEntryType == EventEntry::Type::MOTION) { | 
|  | 492 | const MotionEntry& motionEntry = static_cast<const MotionEntry&>(eventEntry); | 
|  | 493 | if (motionEntry.action == AMOTION_EVENT_ACTION_CANCEL || | 
|  | 494 | motionEntry.action == AMOTION_EVENT_ACTION_HOVER_EXIT) { | 
|  | 495 | return false; | 
|  | 496 | } | 
|  | 497 | } else { | 
|  | 498 | // Not a key or a motion | 
|  | 499 | return false; | 
|  | 500 | } | 
|  | 501 | if (!shouldReportMetricsForConnection(connection)) { | 
|  | 502 | return false; | 
|  | 503 | } | 
|  | 504 | return true; | 
|  | 505 | } | 
|  | 506 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 507 | // --- InputDispatcher --- | 
|  | 508 |  | 
| Garfield Tan | 00f511d | 2019-06-12 16:55:40 -0700 | [diff] [blame] | 509 | InputDispatcher::InputDispatcher(const sp<InputDispatcherPolicyInterface>& policy) | 
|  | 510 | : mPolicy(policy), | 
|  | 511 | mPendingEvent(nullptr), | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 512 | mLastDropReason(DropReason::NOT_DROPPED), | 
| Garfield Tan | ff1f1bb | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 513 | mIdGenerator(IdGenerator::Source::INPUT_DISPATCHER), | 
| Garfield Tan | 00f511d | 2019-06-12 16:55:40 -0700 | [diff] [blame] | 514 | mAppSwitchSawKeyDown(false), | 
|  | 515 | mAppSwitchDueTime(LONG_LONG_MAX), | 
|  | 516 | mNextUnblockedEvent(nullptr), | 
|  | 517 | mDispatchEnabled(false), | 
|  | 518 | mDispatchFrozen(false), | 
|  | 519 | mInputFilterEnabled(false), | 
| Siarhei Vishniakou | f3bc1aa | 2019-11-25 13:48:53 -0800 | [diff] [blame] | 520 | // mInTouchMode will be initialized by the WindowManager to the default device config. | 
|  | 521 | // To avoid leaking stack in case that call never comes, and for tests, | 
|  | 522 | // initialize it here anyways. | 
|  | 523 | mInTouchMode(true), | 
| Bernardo Rufino | ea97d18 | 2020-08-19 14:43:14 +0100 | [diff] [blame] | 524 | mMaximumObscuringOpacityForTouch(1.0f), | 
| Siarhei Vishniakou | 2508b87 | 2020-12-03 16:33:53 -1000 | [diff] [blame] | 525 | mFocusedDisplayId(ADISPLAY_ID_DEFAULT), | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 526 | mFocusedWindowRequestedPointerCapture(false), | 
|  | 527 | mWindowTokenWithPointerCapture(nullptr), | 
| Siarhei Vishniakou | a04181f | 2021-03-26 05:56:49 +0000 | [diff] [blame] | 528 | mLatencyAggregator(), | 
|  | 529 | mLatencyTracker(&mLatencyAggregator), | 
| Siarhei Vishniakou | 2508b87 | 2020-12-03 16:33:53 -1000 | [diff] [blame] | 530 | mCompatService(getCompatService()) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 531 | mLooper = new Looper(false); | 
| Prabir Pradhan | f93562f | 2018-11-29 12:13:37 -0800 | [diff] [blame] | 532 | mReporter = createInputReporter(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 533 |  | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 534 | mKeyRepeatState.lastKeyEntry = nullptr; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 535 |  | 
|  | 536 | policy->getDispatcherConfiguration(&mConfig); | 
|  | 537 | } | 
|  | 538 |  | 
|  | 539 | InputDispatcher::~InputDispatcher() { | 
|  | 540 | { // acquire lock | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 541 | std::scoped_lock _l(mLock); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 542 |  | 
|  | 543 | resetKeyRepeatLocked(); | 
|  | 544 | releasePendingEventLocked(); | 
|  | 545 | drainInboundQueueLocked(); | 
|  | 546 | } | 
|  | 547 |  | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 548 | while (!mConnectionsByToken.empty()) { | 
|  | 549 | sp<Connection> connection = mConnectionsByToken.begin()->second; | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 550 | removeInputChannel(connection->inputChannel->getConnectionToken()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 551 | } | 
|  | 552 | } | 
|  | 553 |  | 
| Prabir Pradhan | 3608aad | 2019-10-02 17:08:26 -0700 | [diff] [blame] | 554 | status_t InputDispatcher::start() { | 
| Prabir Pradhan | 5a57cff | 2019-10-31 18:40:33 -0700 | [diff] [blame] | 555 | if (mThread) { | 
| Prabir Pradhan | 3608aad | 2019-10-02 17:08:26 -0700 | [diff] [blame] | 556 | return ALREADY_EXISTS; | 
|  | 557 | } | 
| Prabir Pradhan | 5a57cff | 2019-10-31 18:40:33 -0700 | [diff] [blame] | 558 | mThread = std::make_unique<InputThread>( | 
|  | 559 | "InputDispatcher", [this]() { dispatchOnce(); }, [this]() { mLooper->wake(); }); | 
|  | 560 | return OK; | 
| Prabir Pradhan | 3608aad | 2019-10-02 17:08:26 -0700 | [diff] [blame] | 561 | } | 
|  | 562 |  | 
|  | 563 | status_t InputDispatcher::stop() { | 
| Prabir Pradhan | 5a57cff | 2019-10-31 18:40:33 -0700 | [diff] [blame] | 564 | if (mThread && mThread->isCallingThread()) { | 
|  | 565 | ALOGE("InputDispatcher cannot be stopped from its own thread!"); | 
| Prabir Pradhan | 3608aad | 2019-10-02 17:08:26 -0700 | [diff] [blame] | 566 | return INVALID_OPERATION; | 
|  | 567 | } | 
| Prabir Pradhan | 5a57cff | 2019-10-31 18:40:33 -0700 | [diff] [blame] | 568 | mThread.reset(); | 
|  | 569 | return OK; | 
| Prabir Pradhan | 3608aad | 2019-10-02 17:08:26 -0700 | [diff] [blame] | 570 | } | 
|  | 571 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 572 | void InputDispatcher::dispatchOnce() { | 
|  | 573 | nsecs_t nextWakeupTime = LONG_LONG_MAX; | 
|  | 574 | { // acquire lock | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 575 | std::scoped_lock _l(mLock); | 
|  | 576 | mDispatcherIsAlive.notify_all(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 577 |  | 
|  | 578 | // Run a dispatch loop if there are no pending commands. | 
|  | 579 | // The dispatch loop might enqueue commands to run afterwards. | 
|  | 580 | if (!haveCommandsLocked()) { | 
|  | 581 | dispatchOnceInnerLocked(&nextWakeupTime); | 
|  | 582 | } | 
|  | 583 |  | 
|  | 584 | // Run all pending commands if there are any. | 
|  | 585 | // If any commands were run then force the next poll to wake up immediately. | 
|  | 586 | if (runCommandsLockedInterruptible()) { | 
|  | 587 | nextWakeupTime = LONG_LONG_MIN; | 
|  | 588 | } | 
| Siarhei Vishniakou | 2bfa905 | 2019-11-21 18:10:54 -0800 | [diff] [blame] | 589 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 590 | // If we are still waiting for ack on some events, | 
|  | 591 | // we might have to wake up earlier to check if an app is anr'ing. | 
|  | 592 | const nsecs_t nextAnrCheck = processAnrsLocked(); | 
|  | 593 | nextWakeupTime = std::min(nextWakeupTime, nextAnrCheck); | 
|  | 594 |  | 
| Siarhei Vishniakou | 2bfa905 | 2019-11-21 18:10:54 -0800 | [diff] [blame] | 595 | // We are about to enter an infinitely long sleep, because we have no commands or | 
|  | 596 | // pending or queued events | 
|  | 597 | if (nextWakeupTime == LONG_LONG_MAX) { | 
|  | 598 | mDispatcherEnteredIdle.notify_all(); | 
|  | 599 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 600 | } // release lock | 
|  | 601 |  | 
|  | 602 | // Wait for callback or timeout or wake.  (make sure we round up, not down) | 
|  | 603 | nsecs_t currentTime = now(); | 
|  | 604 | int timeoutMillis = toMillisecondTimeoutDelay(currentTime, nextWakeupTime); | 
|  | 605 | mLooper->pollOnce(timeoutMillis); | 
|  | 606 | } | 
|  | 607 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 608 | /** | 
| Siarhei Vishniakou | f56b269 | 2020-09-08 19:43:33 -0500 | [diff] [blame] | 609 | * Raise ANR if there is no focused window. | 
|  | 610 | * Before the ANR is raised, do a final state check: | 
|  | 611 | * 1. The currently focused application must be the same one we are waiting for. | 
|  | 612 | * 2. Ensure we still don't have a focused window. | 
|  | 613 | */ | 
|  | 614 | void InputDispatcher::processNoFocusedWindowAnrLocked() { | 
|  | 615 | // Check if the application that we are waiting for is still focused. | 
|  | 616 | std::shared_ptr<InputApplicationHandle> focusedApplication = | 
|  | 617 | getValueByKey(mFocusedApplicationHandlesByDisplay, mAwaitedApplicationDisplayId); | 
|  | 618 | if (focusedApplication == nullptr || | 
|  | 619 | focusedApplication->getApplicationToken() != | 
|  | 620 | mAwaitedFocusedApplication->getApplicationToken()) { | 
|  | 621 | // Unexpected because we should have reset the ANR timer when focused application changed | 
|  | 622 | ALOGE("Waited for a focused window, but focused application has already changed to %s", | 
|  | 623 | focusedApplication->getName().c_str()); | 
|  | 624 | return; // The focused application has changed. | 
|  | 625 | } | 
|  | 626 |  | 
|  | 627 | const sp<InputWindowHandle>& focusedWindowHandle = | 
|  | 628 | getFocusedWindowHandleLocked(mAwaitedApplicationDisplayId); | 
|  | 629 | if (focusedWindowHandle != nullptr) { | 
|  | 630 | return; // We now have a focused window. No need for ANR. | 
|  | 631 | } | 
|  | 632 | onAnrLocked(mAwaitedFocusedApplication); | 
|  | 633 | } | 
|  | 634 |  | 
|  | 635 | /** | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 636 | * Check if any of the connections' wait queues have events that are too old. | 
|  | 637 | * If we waited for events to be ack'ed for more than the window timeout, raise an ANR. | 
|  | 638 | * Return the time at which we should wake up next. | 
|  | 639 | */ | 
|  | 640 | nsecs_t InputDispatcher::processAnrsLocked() { | 
|  | 641 | const nsecs_t currentTime = now(); | 
|  | 642 | nsecs_t nextAnrCheck = LONG_LONG_MAX; | 
|  | 643 | // Check if we are waiting for a focused window to appear. Raise ANR if waited too long | 
|  | 644 | if (mNoFocusedWindowTimeoutTime.has_value() && mAwaitedFocusedApplication != nullptr) { | 
|  | 645 | if (currentTime >= *mNoFocusedWindowTimeoutTime) { | 
| Siarhei Vishniakou | f56b269 | 2020-09-08 19:43:33 -0500 | [diff] [blame] | 646 | processNoFocusedWindowAnrLocked(); | 
| Chris Ye | a209fde | 2020-07-22 13:54:51 -0700 | [diff] [blame] | 647 | mAwaitedFocusedApplication.reset(); | 
| Siarhei Vishniakou | f56b269 | 2020-09-08 19:43:33 -0500 | [diff] [blame] | 648 | mNoFocusedWindowTimeoutTime = std::nullopt; | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 649 | return LONG_LONG_MIN; | 
|  | 650 | } else { | 
| Siarhei Vishniakou | 38a6d27 | 2020-10-20 20:29:33 -0500 | [diff] [blame] | 651 | // Keep waiting. We will drop the event when mNoFocusedWindowTimeoutTime comes. | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 652 | nextAnrCheck = *mNoFocusedWindowTimeoutTime; | 
|  | 653 | } | 
|  | 654 | } | 
|  | 655 |  | 
|  | 656 | // Check if any connection ANRs are due | 
|  | 657 | nextAnrCheck = std::min(nextAnrCheck, mAnrTracker.firstTimeout()); | 
|  | 658 | if (currentTime < nextAnrCheck) { // most likely scenario | 
|  | 659 | return nextAnrCheck;          // everything is normal. Let's check again at nextAnrCheck | 
|  | 660 | } | 
|  | 661 |  | 
|  | 662 | // If we reached here, we have an unresponsive connection. | 
|  | 663 | sp<Connection> connection = getConnectionLocked(mAnrTracker.firstToken()); | 
|  | 664 | if (connection == nullptr) { | 
|  | 665 | ALOGE("Could not find connection for entry %" PRId64, mAnrTracker.firstTimeout()); | 
|  | 666 | return nextAnrCheck; | 
|  | 667 | } | 
|  | 668 | connection->responsive = false; | 
|  | 669 | // Stop waking up for this unresponsive connection | 
|  | 670 | mAnrTracker.eraseToken(connection->inputChannel->getConnectionToken()); | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 671 | onAnrLocked(connection); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 672 | return LONG_LONG_MIN; | 
|  | 673 | } | 
|  | 674 |  | 
| Siarhei Vishniakou | 7062295 | 2020-07-30 11:17:23 -0500 | [diff] [blame] | 675 | std::chrono::nanoseconds InputDispatcher::getDispatchingTimeoutLocked(const sp<IBinder>& token) { | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 676 | sp<InputWindowHandle> window = getWindowHandleLocked(token); | 
|  | 677 | if (window != nullptr) { | 
| Siarhei Vishniakou | 7062295 | 2020-07-30 11:17:23 -0500 | [diff] [blame] | 678 | return window->getDispatchingTimeout(DEFAULT_INPUT_DISPATCHING_TIMEOUT); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 679 | } | 
| Siarhei Vishniakou | 7062295 | 2020-07-30 11:17:23 -0500 | [diff] [blame] | 680 | return DEFAULT_INPUT_DISPATCHING_TIMEOUT; | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 681 | } | 
|  | 682 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 683 | void InputDispatcher::dispatchOnceInnerLocked(nsecs_t* nextWakeupTime) { | 
|  | 684 | nsecs_t currentTime = now(); | 
|  | 685 |  | 
| Jeff Brown | dc5992e | 2014-04-11 01:27:26 -0700 | [diff] [blame] | 686 | // Reset the key repeat timer whenever normal dispatch is suspended while the | 
|  | 687 | // device is in a non-interactive state.  This is to ensure that we abort a key | 
|  | 688 | // repeat if the device is just coming out of sleep. | 
|  | 689 | if (!mDispatchEnabled) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 690 | resetKeyRepeatLocked(); | 
|  | 691 | } | 
|  | 692 |  | 
|  | 693 | // If dispatching is frozen, do not process timeouts or try to deliver any new events. | 
|  | 694 | if (mDispatchFrozen) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 695 | if (DEBUG_FOCUS) { | 
|  | 696 | ALOGD("Dispatch frozen.  Waiting some more."); | 
|  | 697 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 698 | return; | 
|  | 699 | } | 
|  | 700 |  | 
|  | 701 | // Optimize latency of app switches. | 
|  | 702 | // Essentially we start a short timeout when an app switch key (HOME / ENDCALL) has | 
|  | 703 | // been pressed.  When it expires, we preempt dispatch and drop all other pending events. | 
|  | 704 | bool isAppSwitchDue = mAppSwitchDueTime <= currentTime; | 
|  | 705 | if (mAppSwitchDueTime < *nextWakeupTime) { | 
|  | 706 | *nextWakeupTime = mAppSwitchDueTime; | 
|  | 707 | } | 
|  | 708 |  | 
|  | 709 | // Ready to start a new event. | 
|  | 710 | // If we don't already have a pending event, go grab one. | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 711 | if (!mPendingEvent) { | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 712 | if (mInboundQueue.empty()) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 713 | if (isAppSwitchDue) { | 
|  | 714 | // The inbound queue is empty so the app switch key we were waiting | 
|  | 715 | // for will never arrive.  Stop waiting for it. | 
|  | 716 | resetPendingAppSwitchLocked(false); | 
|  | 717 | isAppSwitchDue = false; | 
|  | 718 | } | 
|  | 719 |  | 
|  | 720 | // Synthesize a key repeat if appropriate. | 
|  | 721 | if (mKeyRepeatState.lastKeyEntry) { | 
|  | 722 | if (currentTime >= mKeyRepeatState.nextRepeatTime) { | 
|  | 723 | mPendingEvent = synthesizeKeyRepeatLocked(currentTime); | 
|  | 724 | } else { | 
|  | 725 | if (mKeyRepeatState.nextRepeatTime < *nextWakeupTime) { | 
|  | 726 | *nextWakeupTime = mKeyRepeatState.nextRepeatTime; | 
|  | 727 | } | 
|  | 728 | } | 
|  | 729 | } | 
|  | 730 |  | 
|  | 731 | // Nothing to do if there is no pending event. | 
|  | 732 | if (!mPendingEvent) { | 
|  | 733 | return; | 
|  | 734 | } | 
|  | 735 | } else { | 
|  | 736 | // Inbound queue has at least one entry. | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 737 | mPendingEvent = mInboundQueue.front(); | 
|  | 738 | mInboundQueue.pop_front(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 739 | traceInboundQueueLengthLocked(); | 
|  | 740 | } | 
|  | 741 |  | 
|  | 742 | // Poke user activity for this event. | 
|  | 743 | if (mPendingEvent->policyFlags & POLICY_FLAG_PASS_TO_USER) { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 744 | pokeUserActivityLocked(*mPendingEvent); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 745 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 746 | } | 
|  | 747 |  | 
|  | 748 | // Now we have an event to dispatch. | 
|  | 749 | // All events are eventually dequeued and processed this way, even if we intend to drop them. | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 750 | ALOG_ASSERT(mPendingEvent != nullptr); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 751 | bool done = false; | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 752 | DropReason dropReason = DropReason::NOT_DROPPED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 753 | if (!(mPendingEvent->policyFlags & POLICY_FLAG_PASS_TO_USER)) { | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 754 | dropReason = DropReason::POLICY; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 755 | } else if (!mDispatchEnabled) { | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 756 | dropReason = DropReason::DISABLED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 757 | } | 
|  | 758 |  | 
|  | 759 | if (mNextUnblockedEvent == mPendingEvent) { | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 760 | mNextUnblockedEvent = nullptr; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 761 | } | 
|  | 762 |  | 
|  | 763 | switch (mPendingEvent->type) { | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 764 | case EventEntry::Type::CONFIGURATION_CHANGED: { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 765 | const ConfigurationChangedEntry& typedEntry = | 
|  | 766 | static_cast<const ConfigurationChangedEntry&>(*mPendingEvent); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 767 | done = dispatchConfigurationChangedLocked(currentTime, typedEntry); | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 768 | dropReason = DropReason::NOT_DROPPED; // configuration changes are never dropped | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 769 | break; | 
|  | 770 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 771 |  | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 772 | case EventEntry::Type::DEVICE_RESET: { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 773 | const DeviceResetEntry& typedEntry = | 
|  | 774 | static_cast<const DeviceResetEntry&>(*mPendingEvent); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 775 | done = dispatchDeviceResetLocked(currentTime, typedEntry); | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 776 | dropReason = DropReason::NOT_DROPPED; // device resets are never dropped | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 777 | break; | 
|  | 778 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 779 |  | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 780 | case EventEntry::Type::FOCUS: { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 781 | std::shared_ptr<FocusEntry> typedEntry = | 
|  | 782 | std::static_pointer_cast<FocusEntry>(mPendingEvent); | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 783 | dispatchFocusLocked(currentTime, typedEntry); | 
|  | 784 | done = true; | 
|  | 785 | dropReason = DropReason::NOT_DROPPED; // focus events are never dropped | 
|  | 786 | break; | 
|  | 787 | } | 
|  | 788 |  | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 789 | case EventEntry::Type::POINTER_CAPTURE_CHANGED: { | 
|  | 790 | const auto typedEntry = | 
|  | 791 | std::static_pointer_cast<PointerCaptureChangedEntry>(mPendingEvent); | 
|  | 792 | dispatchPointerCaptureChangedLocked(currentTime, typedEntry, dropReason); | 
|  | 793 | done = true; | 
|  | 794 | break; | 
|  | 795 | } | 
|  | 796 |  | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 797 | case EventEntry::Type::DRAG: { | 
|  | 798 | std::shared_ptr<DragEntry> typedEntry = | 
|  | 799 | std::static_pointer_cast<DragEntry>(mPendingEvent); | 
|  | 800 | dispatchDragLocked(currentTime, typedEntry); | 
|  | 801 | done = true; | 
|  | 802 | break; | 
|  | 803 | } | 
|  | 804 |  | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 805 | case EventEntry::Type::KEY: { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 806 | std::shared_ptr<KeyEntry> keyEntry = std::static_pointer_cast<KeyEntry>(mPendingEvent); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 807 | if (isAppSwitchDue) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 808 | if (isAppSwitchKeyEvent(*keyEntry)) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 809 | resetPendingAppSwitchLocked(true); | 
|  | 810 | isAppSwitchDue = false; | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 811 | } else if (dropReason == DropReason::NOT_DROPPED) { | 
|  | 812 | dropReason = DropReason::APP_SWITCH; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 813 | } | 
|  | 814 | } | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 815 | if (dropReason == DropReason::NOT_DROPPED && isStaleEvent(currentTime, *keyEntry)) { | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 816 | dropReason = DropReason::STALE; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 817 | } | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 818 | if (dropReason == DropReason::NOT_DROPPED && mNextUnblockedEvent) { | 
|  | 819 | dropReason = DropReason::BLOCKED; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 820 | } | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 821 | done = dispatchKeyLocked(currentTime, keyEntry, &dropReason, nextWakeupTime); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 822 | break; | 
|  | 823 | } | 
|  | 824 |  | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 825 | case EventEntry::Type::MOTION: { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 826 | std::shared_ptr<MotionEntry> motionEntry = | 
|  | 827 | std::static_pointer_cast<MotionEntry>(mPendingEvent); | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 828 | if (dropReason == DropReason::NOT_DROPPED && isAppSwitchDue) { | 
|  | 829 | dropReason = DropReason::APP_SWITCH; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 830 | } | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 831 | if (dropReason == DropReason::NOT_DROPPED && isStaleEvent(currentTime, *motionEntry)) { | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 832 | dropReason = DropReason::STALE; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 833 | } | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 834 | if (dropReason == DropReason::NOT_DROPPED && mNextUnblockedEvent) { | 
|  | 835 | dropReason = DropReason::BLOCKED; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 836 | } | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 837 | done = dispatchMotionLocked(currentTime, motionEntry, &dropReason, nextWakeupTime); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 838 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 839 | } | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 840 |  | 
|  | 841 | case EventEntry::Type::SENSOR: { | 
|  | 842 | std::shared_ptr<SensorEntry> sensorEntry = | 
|  | 843 | std::static_pointer_cast<SensorEntry>(mPendingEvent); | 
|  | 844 | if (dropReason == DropReason::NOT_DROPPED && isAppSwitchDue) { | 
|  | 845 | dropReason = DropReason::APP_SWITCH; | 
|  | 846 | } | 
|  | 847 | //  Sensor timestamps use SYSTEM_TIME_BOOTTIME time base, so we can't use | 
|  | 848 | // 'currentTime' here, get SYSTEM_TIME_BOOTTIME instead. | 
|  | 849 | nsecs_t bootTime = systemTime(SYSTEM_TIME_BOOTTIME); | 
|  | 850 | if (dropReason == DropReason::NOT_DROPPED && isStaleEvent(bootTime, *sensorEntry)) { | 
|  | 851 | dropReason = DropReason::STALE; | 
|  | 852 | } | 
|  | 853 | dispatchSensorLocked(currentTime, sensorEntry, &dropReason, nextWakeupTime); | 
|  | 854 | done = true; | 
|  | 855 | break; | 
|  | 856 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 857 | } | 
|  | 858 |  | 
|  | 859 | if (done) { | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 860 | if (dropReason != DropReason::NOT_DROPPED) { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 861 | dropInboundEventLocked(*mPendingEvent, dropReason); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 862 | } | 
| Michael Wright | 3a98172 | 2015-06-10 15:26:13 +0100 | [diff] [blame] | 863 | mLastDropReason = dropReason; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 864 |  | 
|  | 865 | releasePendingEventLocked(); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 866 | *nextWakeupTime = LONG_LONG_MIN; // force next poll to wake up immediately | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 867 | } | 
|  | 868 | } | 
|  | 869 |  | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 870 | /** | 
|  | 871 | * Return true if the events preceding this incoming motion event should be dropped | 
|  | 872 | * Return false otherwise (the default behaviour) | 
|  | 873 | */ | 
|  | 874 | bool InputDispatcher::shouldPruneInboundQueueLocked(const MotionEntry& motionEntry) { | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 875 | const bool isPointerDownEvent = motionEntry.action == AMOTION_EVENT_ACTION_DOWN && | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 876 | (motionEntry.source & AINPUT_SOURCE_CLASS_POINTER); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 877 |  | 
|  | 878 | // Optimize case where the current application is unresponsive and the user | 
|  | 879 | // decides to touch a window in a different application. | 
|  | 880 | // If the application takes too long to catch up then we drop all events preceding | 
|  | 881 | // the touch into the other window. | 
|  | 882 | if (isPointerDownEvent && mAwaitedFocusedApplication != nullptr) { | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 883 | int32_t displayId = motionEntry.displayId; | 
|  | 884 | int32_t x = static_cast<int32_t>( | 
|  | 885 | motionEntry.pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X)); | 
|  | 886 | int32_t y = static_cast<int32_t>( | 
|  | 887 | motionEntry.pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y)); | 
|  | 888 | sp<InputWindowHandle> touchedWindowHandle = | 
|  | 889 | findTouchedWindowAtLocked(displayId, x, y, nullptr); | 
|  | 890 | if (touchedWindowHandle != nullptr && | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 891 | touchedWindowHandle->getApplicationToken() != | 
|  | 892 | mAwaitedFocusedApplication->getApplicationToken()) { | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 893 | // User touched a different application than the one we are waiting on. | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 894 | ALOGI("Pruning input queue because user touched a different application while waiting " | 
|  | 895 | "for %s", | 
|  | 896 | mAwaitedFocusedApplication->getName().c_str()); | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 897 | return true; | 
|  | 898 | } | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 899 |  | 
|  | 900 | // Alternatively, maybe there's a gesture monitor that could handle this event | 
|  | 901 | std::vector<TouchedMonitor> gestureMonitors = | 
|  | 902 | findTouchedGestureMonitorsLocked(displayId, {}); | 
|  | 903 | for (TouchedMonitor& gestureMonitor : gestureMonitors) { | 
|  | 904 | sp<Connection> connection = | 
|  | 905 | getConnectionLocked(gestureMonitor.monitor.inputChannel->getConnectionToken()); | 
| Siarhei Vishniakou | 34ed4d4 | 2020-06-18 00:43:02 +0000 | [diff] [blame] | 906 | if (connection != nullptr && connection->responsive) { | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 907 | // This monitor could take more input. Drop all events preceding this | 
|  | 908 | // event, so that gesture monitor could get a chance to receive the stream | 
|  | 909 | ALOGW("Pruning the input queue because %s is unresponsive, but we have a " | 
|  | 910 | "responsive gesture monitor that may handle the event", | 
|  | 911 | mAwaitedFocusedApplication->getName().c_str()); | 
|  | 912 | return true; | 
|  | 913 | } | 
|  | 914 | } | 
|  | 915 | } | 
|  | 916 |  | 
|  | 917 | // Prevent getting stuck: if we have a pending key event, and some motion events that have not | 
|  | 918 | // yet been processed by some connections, the dispatcher will wait for these motion | 
|  | 919 | // events to be processed before dispatching the key event. This is because these motion events | 
|  | 920 | // may cause a new window to be launched, which the user might expect to receive focus. | 
|  | 921 | // To prevent waiting forever for such events, just send the key to the currently focused window | 
|  | 922 | if (isPointerDownEvent && mKeyIsWaitingForEventsTimeout) { | 
|  | 923 | ALOGD("Received a new pointer down event, stop waiting for events to process and " | 
|  | 924 | "just send the pending key event to the focused window."); | 
|  | 925 | mKeyIsWaitingForEventsTimeout = now(); | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 926 | } | 
|  | 927 | return false; | 
|  | 928 | } | 
|  | 929 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 930 | bool InputDispatcher::enqueueInboundEventLocked(std::unique_ptr<EventEntry> newEntry) { | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 931 | bool needWake = mInboundQueue.empty(); | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 932 | mInboundQueue.push_back(std::move(newEntry)); | 
|  | 933 | EventEntry& entry = *(mInboundQueue.back()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 934 | traceInboundQueueLengthLocked(); | 
|  | 935 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 936 | switch (entry.type) { | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 937 | case EventEntry::Type::KEY: { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 938 | // Optimize app switch latency. | 
|  | 939 | // If the application takes too long to catch up then we drop all events preceding | 
|  | 940 | // the app switch key. | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 941 | const KeyEntry& keyEntry = static_cast<const KeyEntry&>(entry); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 942 | if (isAppSwitchKeyEvent(keyEntry)) { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 943 | if (keyEntry.action == AKEY_EVENT_ACTION_DOWN) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 944 | mAppSwitchSawKeyDown = true; | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 945 | } else if (keyEntry.action == AKEY_EVENT_ACTION_UP) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 946 | if (mAppSwitchSawKeyDown) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 947 | #if DEBUG_APP_SWITCH | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 948 | ALOGD("App switch is pending!"); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 949 | #endif | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 950 | mAppSwitchDueTime = keyEntry.eventTime + APP_SWITCH_TIMEOUT; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 951 | mAppSwitchSawKeyDown = false; | 
|  | 952 | needWake = true; | 
|  | 953 | } | 
|  | 954 | } | 
|  | 955 | } | 
|  | 956 | break; | 
|  | 957 | } | 
|  | 958 |  | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 959 | case EventEntry::Type::MOTION: { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 960 | if (shouldPruneInboundQueueLocked(static_cast<MotionEntry&>(entry))) { | 
|  | 961 | mNextUnblockedEvent = mInboundQueue.back(); | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 962 | needWake = true; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 963 | } | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 964 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 965 | } | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 966 | case EventEntry::Type::FOCUS: { | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 967 | LOG_ALWAYS_FATAL("Focus events should be inserted using enqueueFocusEventLocked"); | 
|  | 968 | break; | 
|  | 969 | } | 
|  | 970 | case EventEntry::Type::CONFIGURATION_CHANGED: | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 971 | case EventEntry::Type::DEVICE_RESET: | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 972 | case EventEntry::Type::SENSOR: | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 973 | case EventEntry::Type::POINTER_CAPTURE_CHANGED: | 
|  | 974 | case EventEntry::Type::DRAG: { | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 975 | // nothing to do | 
|  | 976 | break; | 
|  | 977 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 978 | } | 
|  | 979 |  | 
|  | 980 | return needWake; | 
|  | 981 | } | 
|  | 982 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 983 | void InputDispatcher::addRecentEventLocked(std::shared_ptr<EventEntry> entry) { | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 984 | // Do not store sensor event in recent queue to avoid flooding the queue. | 
|  | 985 | if (entry->type != EventEntry::Type::SENSOR) { | 
|  | 986 | mRecentQueue.push_back(entry); | 
|  | 987 | } | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 988 | if (mRecentQueue.size() > RECENT_QUEUE_MAX_SIZE) { | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 989 | mRecentQueue.pop_front(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 990 | } | 
|  | 991 | } | 
|  | 992 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 993 | sp<InputWindowHandle> InputDispatcher::findTouchedWindowAtLocked(int32_t displayId, int32_t x, | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 994 | int32_t y, TouchState* touchState, | 
|  | 995 | bool addOutsideTargets, | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 996 | bool addPortalWindows, | 
|  | 997 | bool ignoreDragWindow) { | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 998 | if ((addPortalWindows || addOutsideTargets) && touchState == nullptr) { | 
|  | 999 | LOG_ALWAYS_FATAL( | 
|  | 1000 | "Must provide a valid touch state if adding portal windows or outside targets"); | 
|  | 1001 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1002 | // Traverse windows from front to back to find touched window. | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 1003 | const std::vector<sp<InputWindowHandle>>& windowHandles = getWindowHandlesLocked(displayId); | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 1004 | for (const sp<InputWindowHandle>& windowHandle : windowHandles) { | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 1005 | if (ignoreDragWindow && haveSameToken(windowHandle, mDragState->dragWindow)) { | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 1006 | continue; | 
|  | 1007 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1008 | const InputWindowInfo* windowInfo = windowHandle->getInfo(); | 
|  | 1009 | if (windowInfo->displayId == displayId) { | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 1010 | auto flags = windowInfo->flags; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1011 |  | 
|  | 1012 | if (windowInfo->visible) { | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 1013 | if (!flags.test(InputWindowInfo::Flag::NOT_TOUCHABLE)) { | 
|  | 1014 | bool isTouchModal = !flags.test(InputWindowInfo::Flag::NOT_FOCUSABLE) && | 
|  | 1015 | !flags.test(InputWindowInfo::Flag::NOT_TOUCH_MODAL); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1016 | if (isTouchModal || windowInfo->touchableRegionContainsPoint(x, y)) { | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 1017 | int32_t portalToDisplayId = windowInfo->portalToDisplayId; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1018 | if (portalToDisplayId != ADISPLAY_ID_NONE && | 
|  | 1019 | portalToDisplayId != displayId) { | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 1020 | if (addPortalWindows) { | 
|  | 1021 | // For the monitoring channels of the display. | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 1022 | touchState->addPortalWindow(windowHandle); | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 1023 | } | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 1024 | return findTouchedWindowAtLocked(portalToDisplayId, x, y, touchState, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1025 | addOutsideTargets, addPortalWindows); | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 1026 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1027 | // Found window. | 
|  | 1028 | return windowHandle; | 
|  | 1029 | } | 
|  | 1030 | } | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 1031 |  | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 1032 | if (addOutsideTargets && flags.test(InputWindowInfo::Flag::WATCH_OUTSIDE_TOUCH)) { | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 1033 | touchState->addOrUpdateWindow(windowHandle, | 
|  | 1034 | InputTarget::FLAG_DISPATCH_AS_OUTSIDE, | 
|  | 1035 | BitSet32(0)); | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 1036 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1037 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1038 | } | 
|  | 1039 | } | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 1040 | return nullptr; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1041 | } | 
|  | 1042 |  | 
| Garfield Tan | e84e6f9 | 2019-08-29 17:28:41 -0700 | [diff] [blame] | 1043 | std::vector<TouchedMonitor> InputDispatcher::findTouchedGestureMonitorsLocked( | 
| Siarhei Vishniakou | f0007dd | 2020-04-13 11:40:37 -0700 | [diff] [blame] | 1044 | int32_t displayId, const std::vector<sp<InputWindowHandle>>& portalWindows) const { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 1045 | std::vector<TouchedMonitor> touchedMonitors; | 
|  | 1046 |  | 
|  | 1047 | std::vector<Monitor> monitors = getValueByKey(mGestureMonitorsByDisplay, displayId); | 
|  | 1048 | addGestureMonitors(monitors, touchedMonitors); | 
|  | 1049 | for (const sp<InputWindowHandle>& portalWindow : portalWindows) { | 
|  | 1050 | const InputWindowInfo* windowInfo = portalWindow->getInfo(); | 
|  | 1051 | monitors = getValueByKey(mGestureMonitorsByDisplay, windowInfo->portalToDisplayId); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1052 | addGestureMonitors(monitors, touchedMonitors, -windowInfo->frameLeft, | 
|  | 1053 | -windowInfo->frameTop); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 1054 | } | 
|  | 1055 | return touchedMonitors; | 
|  | 1056 | } | 
|  | 1057 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1058 | void InputDispatcher::dropInboundEventLocked(const EventEntry& entry, DropReason dropReason) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1059 | const char* reason; | 
|  | 1060 | switch (dropReason) { | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 1061 | case DropReason::POLICY: | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1062 | #if DEBUG_INBOUND_EVENT_DETAILS | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1063 | ALOGD("Dropped event because policy consumed it."); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1064 | #endif | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1065 | reason = "inbound event was dropped because the policy consumed it"; | 
|  | 1066 | break; | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 1067 | case DropReason::DISABLED: | 
|  | 1068 | if (mLastDropReason != DropReason::DISABLED) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1069 | ALOGI("Dropped event because input dispatch is disabled."); | 
|  | 1070 | } | 
|  | 1071 | reason = "inbound event was dropped because input dispatch is disabled"; | 
|  | 1072 | break; | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 1073 | case DropReason::APP_SWITCH: | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1074 | ALOGI("Dropped event because of pending overdue app switch."); | 
|  | 1075 | reason = "inbound event was dropped because of pending overdue app switch"; | 
|  | 1076 | break; | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 1077 | case DropReason::BLOCKED: | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1078 | ALOGI("Dropped event because the current application is not responding and the user " | 
|  | 1079 | "has started interacting with a different application."); | 
|  | 1080 | reason = "inbound event was dropped because the current application is not responding " | 
|  | 1081 | "and the user has started interacting with a different application"; | 
|  | 1082 | break; | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 1083 | case DropReason::STALE: | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1084 | ALOGI("Dropped event because it is stale."); | 
|  | 1085 | reason = "inbound event was dropped because it is stale"; | 
|  | 1086 | break; | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 1087 | case DropReason::NO_POINTER_CAPTURE: | 
|  | 1088 | ALOGI("Dropped event because there is no window with Pointer Capture."); | 
|  | 1089 | reason = "inbound event was dropped because there is no window with Pointer Capture"; | 
|  | 1090 | break; | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 1091 | case DropReason::NOT_DROPPED: { | 
|  | 1092 | LOG_ALWAYS_FATAL("Should not be dropping a NOT_DROPPED event"); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1093 | return; | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 1094 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1095 | } | 
|  | 1096 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1097 | switch (entry.type) { | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 1098 | case EventEntry::Type::KEY: { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1099 | CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason); | 
|  | 1100 | synthesizeCancelationEventsForAllConnectionsLocked(options); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1101 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1102 | } | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 1103 | case EventEntry::Type::MOTION: { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1104 | const MotionEntry& motionEntry = static_cast<const MotionEntry&>(entry); | 
|  | 1105 | if (motionEntry.source & AINPUT_SOURCE_CLASS_POINTER) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1106 | CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS, reason); | 
|  | 1107 | synthesizeCancelationEventsForAllConnectionsLocked(options); | 
|  | 1108 | } else { | 
|  | 1109 | CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason); | 
|  | 1110 | synthesizeCancelationEventsForAllConnectionsLocked(options); | 
|  | 1111 | } | 
|  | 1112 | break; | 
|  | 1113 | } | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 1114 | case EventEntry::Type::SENSOR: { | 
|  | 1115 | break; | 
|  | 1116 | } | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 1117 | case EventEntry::Type::POINTER_CAPTURE_CHANGED: | 
|  | 1118 | case EventEntry::Type::DRAG: { | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 1119 | break; | 
|  | 1120 | } | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 1121 | case EventEntry::Type::FOCUS: | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 1122 | case EventEntry::Type::CONFIGURATION_CHANGED: | 
|  | 1123 | case EventEntry::Type::DEVICE_RESET: { | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 1124 | LOG_ALWAYS_FATAL("Should not drop %s events", NamedEnum::string(entry.type).c_str()); | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 1125 | break; | 
|  | 1126 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1127 | } | 
|  | 1128 | } | 
|  | 1129 |  | 
| Siarhei Vishniakou | 61291d4 | 2019-02-11 18:13:20 -0800 | [diff] [blame] | 1130 | static bool isAppSwitchKeyCode(int32_t keyCode) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1131 | return keyCode == AKEYCODE_HOME || keyCode == AKEYCODE_ENDCALL || | 
|  | 1132 | keyCode == AKEYCODE_APP_SWITCH; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1133 | } | 
|  | 1134 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1135 | bool InputDispatcher::isAppSwitchKeyEvent(const KeyEntry& keyEntry) { | 
|  | 1136 | return !(keyEntry.flags & AKEY_EVENT_FLAG_CANCELED) && isAppSwitchKeyCode(keyEntry.keyCode) && | 
|  | 1137 | (keyEntry.policyFlags & POLICY_FLAG_TRUSTED) && | 
|  | 1138 | (keyEntry.policyFlags & POLICY_FLAG_PASS_TO_USER); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1139 | } | 
|  | 1140 |  | 
|  | 1141 | bool InputDispatcher::isAppSwitchPendingLocked() { | 
|  | 1142 | return mAppSwitchDueTime != LONG_LONG_MAX; | 
|  | 1143 | } | 
|  | 1144 |  | 
|  | 1145 | void InputDispatcher::resetPendingAppSwitchLocked(bool handled) { | 
|  | 1146 | mAppSwitchDueTime = LONG_LONG_MAX; | 
|  | 1147 |  | 
|  | 1148 | #if DEBUG_APP_SWITCH | 
|  | 1149 | if (handled) { | 
|  | 1150 | ALOGD("App switch has arrived."); | 
|  | 1151 | } else { | 
|  | 1152 | ALOGD("App switch was abandoned."); | 
|  | 1153 | } | 
|  | 1154 | #endif | 
|  | 1155 | } | 
|  | 1156 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1157 | bool InputDispatcher::haveCommandsLocked() const { | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 1158 | return !mCommandQueue.empty(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1159 | } | 
|  | 1160 |  | 
|  | 1161 | bool InputDispatcher::runCommandsLockedInterruptible() { | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 1162 | if (mCommandQueue.empty()) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1163 | return false; | 
|  | 1164 | } | 
|  | 1165 |  | 
|  | 1166 | do { | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 1167 | std::unique_ptr<CommandEntry> commandEntry = std::move(mCommandQueue.front()); | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 1168 | mCommandQueue.pop_front(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1169 | Command command = commandEntry->command; | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 1170 | command(*this, commandEntry.get()); // commands are implicitly 'LockedInterruptible' | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1171 |  | 
|  | 1172 | commandEntry->connection.clear(); | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 1173 | } while (!mCommandQueue.empty()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1174 | return true; | 
|  | 1175 | } | 
|  | 1176 |  | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 1177 | void InputDispatcher::postCommandLocked(std::unique_ptr<CommandEntry> commandEntry) { | 
|  | 1178 | mCommandQueue.push_back(std::move(commandEntry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1179 | } | 
|  | 1180 |  | 
|  | 1181 | void InputDispatcher::drainInboundQueueLocked() { | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 1182 | while (!mInboundQueue.empty()) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1183 | std::shared_ptr<EventEntry> entry = mInboundQueue.front(); | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 1184 | mInboundQueue.pop_front(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1185 | releaseInboundEventLocked(entry); | 
|  | 1186 | } | 
|  | 1187 | traceInboundQueueLengthLocked(); | 
|  | 1188 | } | 
|  | 1189 |  | 
|  | 1190 | void InputDispatcher::releasePendingEventLocked() { | 
|  | 1191 | if (mPendingEvent) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1192 | releaseInboundEventLocked(mPendingEvent); | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 1193 | mPendingEvent = nullptr; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1194 | } | 
|  | 1195 | } | 
|  | 1196 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1197 | void InputDispatcher::releaseInboundEventLocked(std::shared_ptr<EventEntry> entry) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1198 | InjectionState* injectionState = entry->injectionState; | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1199 | if (injectionState && injectionState->injectionResult == InputEventInjectionResult::PENDING) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1200 | #if DEBUG_DISPATCH_CYCLE | 
|  | 1201 | ALOGD("Injected inbound event was dropped."); | 
|  | 1202 | #endif | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1203 | setInjectionResult(*entry, InputEventInjectionResult::FAILED); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1204 | } | 
|  | 1205 | if (entry == mNextUnblockedEvent) { | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 1206 | mNextUnblockedEvent = nullptr; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1207 | } | 
|  | 1208 | addRecentEventLocked(entry); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1209 | } | 
|  | 1210 |  | 
|  | 1211 | void InputDispatcher::resetKeyRepeatLocked() { | 
|  | 1212 | if (mKeyRepeatState.lastKeyEntry) { | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 1213 | mKeyRepeatState.lastKeyEntry = nullptr; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1214 | } | 
|  | 1215 | } | 
|  | 1216 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1217 | std::shared_ptr<KeyEntry> InputDispatcher::synthesizeKeyRepeatLocked(nsecs_t currentTime) { | 
|  | 1218 | std::shared_ptr<KeyEntry> entry = mKeyRepeatState.lastKeyEntry; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1219 |  | 
| Michael Wright | 2e73295 | 2014-09-24 13:26:59 -0700 | [diff] [blame] | 1220 | uint32_t policyFlags = entry->policyFlags & | 
|  | 1221 | (POLICY_FLAG_RAW_MASK | POLICY_FLAG_PASS_TO_USER | POLICY_FLAG_TRUSTED); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1222 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1223 | std::shared_ptr<KeyEntry> newEntry = | 
|  | 1224 | std::make_unique<KeyEntry>(mIdGenerator.nextId(), currentTime, entry->deviceId, | 
|  | 1225 | entry->source, entry->displayId, policyFlags, entry->action, | 
|  | 1226 | entry->flags, entry->keyCode, entry->scanCode, | 
|  | 1227 | entry->metaState, entry->repeatCount + 1, entry->downTime); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1228 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1229 | newEntry->syntheticRepeat = true; | 
|  | 1230 | mKeyRepeatState.lastKeyEntry = newEntry; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1231 | mKeyRepeatState.nextRepeatTime = currentTime + mConfig.keyRepeatDelay; | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1232 | return newEntry; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1233 | } | 
|  | 1234 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1235 | bool InputDispatcher::dispatchConfigurationChangedLocked(nsecs_t currentTime, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1236 | const ConfigurationChangedEntry& entry) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1237 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1238 | ALOGD("dispatchConfigurationChanged - eventTime=%" PRId64, entry.eventTime); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1239 | #endif | 
|  | 1240 |  | 
|  | 1241 | // Reset key repeating in case a keyboard device was added or removed or something. | 
|  | 1242 | resetKeyRepeatLocked(); | 
|  | 1243 |  | 
|  | 1244 | // Enqueue a command to run outside the lock to tell the policy that the configuration changed. | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 1245 | std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( | 
|  | 1246 | &InputDispatcher::doNotifyConfigurationChangedLockedInterruptible); | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1247 | commandEntry->eventTime = entry.eventTime; | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 1248 | postCommandLocked(std::move(commandEntry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1249 | return true; | 
|  | 1250 | } | 
|  | 1251 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1252 | bool InputDispatcher::dispatchDeviceResetLocked(nsecs_t currentTime, | 
|  | 1253 | const DeviceResetEntry& entry) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1254 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1255 | ALOGD("dispatchDeviceReset - eventTime=%" PRId64 ", deviceId=%d", entry.eventTime, | 
|  | 1256 | entry.deviceId); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1257 | #endif | 
|  | 1258 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1259 | CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS, "device was reset"); | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1260 | options.deviceId = entry.deviceId; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1261 | synthesizeCancelationEventsForAllConnectionsLocked(options); | 
|  | 1262 | return true; | 
|  | 1263 | } | 
|  | 1264 |  | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 1265 | void InputDispatcher::enqueueFocusEventLocked(const sp<IBinder>& windowToken, bool hasFocus, | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 1266 | const std::string& reason) { | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 1267 | if (mPendingEvent != nullptr) { | 
|  | 1268 | // Move the pending event to the front of the queue. This will give the chance | 
|  | 1269 | // for the pending event to get dispatched to the newly focused window | 
|  | 1270 | mInboundQueue.push_front(mPendingEvent); | 
|  | 1271 | mPendingEvent = nullptr; | 
|  | 1272 | } | 
|  | 1273 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1274 | std::unique_ptr<FocusEntry> focusEntry = | 
|  | 1275 | std::make_unique<FocusEntry>(mIdGenerator.nextId(), now(), windowToken, hasFocus, | 
|  | 1276 | reason); | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 1277 |  | 
|  | 1278 | // This event should go to the front of the queue, but behind all other focus events | 
|  | 1279 | // Find the last focus event, and insert right after it | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1280 | std::deque<std::shared_ptr<EventEntry>>::reverse_iterator it = | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 1281 | std::find_if(mInboundQueue.rbegin(), mInboundQueue.rend(), | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1282 | [](const std::shared_ptr<EventEntry>& event) { | 
|  | 1283 | return event->type == EventEntry::Type::FOCUS; | 
|  | 1284 | }); | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 1285 |  | 
|  | 1286 | // Maintain the order of focus events. Insert the entry after all other focus events. | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1287 | mInboundQueue.insert(it.base(), std::move(focusEntry)); | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 1288 | } | 
|  | 1289 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1290 | void InputDispatcher::dispatchFocusLocked(nsecs_t currentTime, std::shared_ptr<FocusEntry> entry) { | 
| Siarhei Vishniakou | ce5ab08 | 2020-07-09 17:03:21 -0500 | [diff] [blame] | 1291 | std::shared_ptr<InputChannel> channel = getInputChannelLocked(entry->connectionToken); | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 1292 | if (channel == nullptr) { | 
|  | 1293 | return; // Window has gone away | 
|  | 1294 | } | 
|  | 1295 | InputTarget target; | 
|  | 1296 | target.inputChannel = channel; | 
|  | 1297 | target.flags = InputTarget::FLAG_DISPATCH_AS_IS; | 
|  | 1298 | entry->dispatchInProgress = true; | 
| Siarhei Vishniakou | 887b7d9 | 2020-06-18 00:43:02 +0000 | [diff] [blame] | 1299 | std::string message = std::string("Focus ") + (entry->hasFocus ? "entering " : "leaving ") + | 
|  | 1300 | channel->getName(); | 
| Vishnu Nair | 7d3d00d | 2020-08-03 11:20:42 -0700 | [diff] [blame] | 1301 | std::string reason = std::string("reason=").append(entry->reason); | 
|  | 1302 | android_log_event_list(LOGTAG_INPUT_FOCUS) << message << reason << LOG_ID_EVENTS; | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 1303 | dispatchEventLocked(currentTime, entry, {target}); | 
|  | 1304 | } | 
|  | 1305 |  | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 1306 | void InputDispatcher::dispatchPointerCaptureChangedLocked( | 
|  | 1307 | nsecs_t currentTime, const std::shared_ptr<PointerCaptureChangedEntry>& entry, | 
|  | 1308 | DropReason& dropReason) { | 
|  | 1309 | const bool haveWindowWithPointerCapture = mWindowTokenWithPointerCapture != nullptr; | 
| Prabir Pradhan | 167e6d9 | 2021-02-04 16:18:17 -0800 | [diff] [blame] | 1310 | if (entry->pointerCaptureEnabled && haveWindowWithPointerCapture) { | 
|  | 1311 | LOG_ALWAYS_FATAL("Pointer Capture has already been enabled for the window."); | 
|  | 1312 | } | 
|  | 1313 | if (!entry->pointerCaptureEnabled && !haveWindowWithPointerCapture) { | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 1314 | // Pointer capture was already forcefully disabled because of focus change. | 
|  | 1315 | dropReason = DropReason::NOT_DROPPED; | 
|  | 1316 | return; | 
|  | 1317 | } | 
|  | 1318 |  | 
|  | 1319 | // Set drop reason for early returns | 
|  | 1320 | dropReason = DropReason::NO_POINTER_CAPTURE; | 
|  | 1321 |  | 
|  | 1322 | sp<IBinder> token; | 
|  | 1323 | if (entry->pointerCaptureEnabled) { | 
|  | 1324 | // Enable Pointer Capture | 
|  | 1325 | if (!mFocusedWindowRequestedPointerCapture) { | 
|  | 1326 | // This can happen if a window requests capture and immediately releases capture. | 
|  | 1327 | ALOGW("No window requested Pointer Capture."); | 
|  | 1328 | return; | 
|  | 1329 | } | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 1330 | token = mFocusResolver.getFocusedWindowToken(mFocusedDisplayId); | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 1331 | LOG_ALWAYS_FATAL_IF(!token, "Cannot find focused window for Pointer Capture."); | 
|  | 1332 | mWindowTokenWithPointerCapture = token; | 
|  | 1333 | } else { | 
|  | 1334 | // Disable Pointer Capture | 
|  | 1335 | token = mWindowTokenWithPointerCapture; | 
|  | 1336 | mWindowTokenWithPointerCapture = nullptr; | 
| Prabir Pradhan | 7d03038 | 2020-12-21 07:58:35 -0800 | [diff] [blame] | 1337 | if (mFocusedWindowRequestedPointerCapture) { | 
|  | 1338 | mFocusedWindowRequestedPointerCapture = false; | 
|  | 1339 | setPointerCaptureLocked(false); | 
|  | 1340 | } | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 1341 | } | 
|  | 1342 |  | 
|  | 1343 | auto channel = getInputChannelLocked(token); | 
|  | 1344 | if (channel == nullptr) { | 
|  | 1345 | // Window has gone away, clean up Pointer Capture state. | 
|  | 1346 | mWindowTokenWithPointerCapture = nullptr; | 
| Prabir Pradhan | 7d03038 | 2020-12-21 07:58:35 -0800 | [diff] [blame] | 1347 | if (mFocusedWindowRequestedPointerCapture) { | 
|  | 1348 | mFocusedWindowRequestedPointerCapture = false; | 
|  | 1349 | setPointerCaptureLocked(false); | 
|  | 1350 | } | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 1351 | return; | 
|  | 1352 | } | 
|  | 1353 | InputTarget target; | 
|  | 1354 | target.inputChannel = channel; | 
|  | 1355 | target.flags = InputTarget::FLAG_DISPATCH_AS_IS; | 
|  | 1356 | entry->dispatchInProgress = true; | 
|  | 1357 | dispatchEventLocked(currentTime, entry, {target}); | 
|  | 1358 |  | 
|  | 1359 | dropReason = DropReason::NOT_DROPPED; | 
|  | 1360 | } | 
|  | 1361 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1362 | bool InputDispatcher::dispatchKeyLocked(nsecs_t currentTime, std::shared_ptr<KeyEntry> entry, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1363 | DropReason* dropReason, nsecs_t* nextWakeupTime) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1364 | // Preprocessing. | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1365 | if (!entry->dispatchInProgress) { | 
|  | 1366 | if (entry->repeatCount == 0 && entry->action == AKEY_EVENT_ACTION_DOWN && | 
|  | 1367 | (entry->policyFlags & POLICY_FLAG_TRUSTED) && | 
|  | 1368 | (!(entry->policyFlags & POLICY_FLAG_DISABLE_KEY_REPEAT))) { | 
|  | 1369 | if (mKeyRepeatState.lastKeyEntry && | 
| Chris Ye | 2ad9539 | 2020-09-01 13:44:44 -0700 | [diff] [blame] | 1370 | mKeyRepeatState.lastKeyEntry->keyCode == entry->keyCode && | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1371 | // We have seen two identical key downs in a row which indicates that the device | 
|  | 1372 | // driver is automatically generating key repeats itself.  We take note of the | 
|  | 1373 | // repeat here, but we disable our own next key repeat timer since it is clear that | 
|  | 1374 | // we will not need to synthesize key repeats ourselves. | 
| Chris Ye | 2ad9539 | 2020-09-01 13:44:44 -0700 | [diff] [blame] | 1375 | mKeyRepeatState.lastKeyEntry->deviceId == entry->deviceId) { | 
|  | 1376 | // Make sure we don't get key down from a different device. If a different | 
|  | 1377 | // device Id has same key pressed down, the new device Id will replace the | 
|  | 1378 | // current one to hold the key repeat with repeat count reset. | 
|  | 1379 | // In the future when got a KEY_UP on the device id, drop it and do not | 
|  | 1380 | // stop the key repeat on current device. | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1381 | entry->repeatCount = mKeyRepeatState.lastKeyEntry->repeatCount + 1; | 
|  | 1382 | resetKeyRepeatLocked(); | 
|  | 1383 | mKeyRepeatState.nextRepeatTime = LONG_LONG_MAX; // don't generate repeats ourselves | 
|  | 1384 | } else { | 
|  | 1385 | // Not a repeat.  Save key down state in case we do see a repeat later. | 
|  | 1386 | resetKeyRepeatLocked(); | 
|  | 1387 | mKeyRepeatState.nextRepeatTime = entry->eventTime + mConfig.keyRepeatTimeout; | 
|  | 1388 | } | 
|  | 1389 | mKeyRepeatState.lastKeyEntry = entry; | 
| Chris Ye | 2ad9539 | 2020-09-01 13:44:44 -0700 | [diff] [blame] | 1390 | } else if (entry->action == AKEY_EVENT_ACTION_UP && mKeyRepeatState.lastKeyEntry && | 
|  | 1391 | mKeyRepeatState.lastKeyEntry->deviceId != entry->deviceId) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1392 | // The key on device 'deviceId' is still down, do not stop key repeat | 
| Chris Ye | 2ad9539 | 2020-09-01 13:44:44 -0700 | [diff] [blame] | 1393 | #if DEBUG_INBOUND_EVENT_DETAILS | 
|  | 1394 | ALOGD("deviceId=%d got KEY_UP as stale", entry->deviceId); | 
|  | 1395 | #endif | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1396 | } else if (!entry->syntheticRepeat) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1397 | resetKeyRepeatLocked(); | 
|  | 1398 | } | 
|  | 1399 |  | 
|  | 1400 | if (entry->repeatCount == 1) { | 
|  | 1401 | entry->flags |= AKEY_EVENT_FLAG_LONG_PRESS; | 
|  | 1402 | } else { | 
|  | 1403 | entry->flags &= ~AKEY_EVENT_FLAG_LONG_PRESS; | 
|  | 1404 | } | 
|  | 1405 |  | 
|  | 1406 | entry->dispatchInProgress = true; | 
|  | 1407 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1408 | logOutboundKeyDetails("dispatchKey - ", *entry); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1409 | } | 
|  | 1410 |  | 
|  | 1411 | // Handle case where the policy asked us to try again later last time. | 
|  | 1412 | if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER) { | 
|  | 1413 | if (currentTime < entry->interceptKeyWakeupTime) { | 
|  | 1414 | if (entry->interceptKeyWakeupTime < *nextWakeupTime) { | 
|  | 1415 | *nextWakeupTime = entry->interceptKeyWakeupTime; | 
|  | 1416 | } | 
|  | 1417 | return false; // wait until next wakeup | 
|  | 1418 | } | 
|  | 1419 | entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN; | 
|  | 1420 | entry->interceptKeyWakeupTime = 0; | 
|  | 1421 | } | 
|  | 1422 |  | 
|  | 1423 | // Give the policy a chance to intercept the key. | 
|  | 1424 | if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN) { | 
|  | 1425 | if (entry->policyFlags & POLICY_FLAG_PASS_TO_USER) { | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 1426 | std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( | 
| Siarhei Vishniakou | 49a350a | 2019-07-26 18:44:23 -0700 | [diff] [blame] | 1427 | &InputDispatcher::doInterceptKeyBeforeDispatchingLockedInterruptible); | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 1428 | sp<IBinder> focusedWindowToken = | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 1429 | mFocusResolver.getFocusedWindowToken(getTargetDisplayId(*entry)); | 
| Siarhei Vishniakou | 2b4782c | 2020-11-07 01:51:18 -0600 | [diff] [blame] | 1430 | commandEntry->connectionToken = focusedWindowToken; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1431 | commandEntry->keyEntry = entry; | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 1432 | postCommandLocked(std::move(commandEntry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1433 | return false; // wait for the command to run | 
|  | 1434 | } else { | 
|  | 1435 | entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE; | 
|  | 1436 | } | 
|  | 1437 | } else if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_SKIP) { | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 1438 | if (*dropReason == DropReason::NOT_DROPPED) { | 
|  | 1439 | *dropReason = DropReason::POLICY; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1440 | } | 
|  | 1441 | } | 
|  | 1442 |  | 
|  | 1443 | // Clean up if dropping the event. | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 1444 | if (*dropReason != DropReason::NOT_DROPPED) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1445 | setInjectionResult(*entry, | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1446 | *dropReason == DropReason::POLICY ? InputEventInjectionResult::SUCCEEDED | 
|  | 1447 | : InputEventInjectionResult::FAILED); | 
| Garfield Tan | 6a5a14e | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 1448 | mReporter->reportDroppedKey(entry->id); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1449 | return true; | 
|  | 1450 | } | 
|  | 1451 |  | 
|  | 1452 | // Identify targets. | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 1453 | std::vector<InputTarget> inputTargets; | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1454 | InputEventInjectionResult injectionResult = | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1455 | findFocusedWindowTargetsLocked(currentTime, *entry, inputTargets, nextWakeupTime); | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1456 | if (injectionResult == InputEventInjectionResult::PENDING) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1457 | return false; | 
|  | 1458 | } | 
|  | 1459 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1460 | setInjectionResult(*entry, injectionResult); | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1461 | if (injectionResult != InputEventInjectionResult::SUCCEEDED) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1462 | return true; | 
|  | 1463 | } | 
|  | 1464 |  | 
| Arthur Hung | 2fbf37f | 2018-09-13 18:16:41 +0800 | [diff] [blame] | 1465 | // Add monitor channels from event's or focused display. | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1466 | addGlobalMonitoringTargetsLocked(inputTargets, getTargetDisplayId(*entry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1467 |  | 
|  | 1468 | // Dispatch the key. | 
|  | 1469 | dispatchEventLocked(currentTime, entry, inputTargets); | 
|  | 1470 | return true; | 
|  | 1471 | } | 
|  | 1472 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1473 | void InputDispatcher::logOutboundKeyDetails(const char* prefix, const KeyEntry& entry) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1474 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
| Siarhei Vishniakou | a62a8dd | 2018-06-08 21:17:33 +0100 | [diff] [blame] | 1475 | ALOGD("%seventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32 ", " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1476 | "policyFlags=0x%x, action=0x%x, flags=0x%x, keyCode=0x%x, scanCode=0x%x, " | 
|  | 1477 | "metaState=0x%x, repeatCount=%d, downTime=%" PRId64, | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1478 | prefix, entry.eventTime, entry.deviceId, entry.source, entry.displayId, entry.policyFlags, | 
|  | 1479 | entry.action, entry.flags, entry.keyCode, entry.scanCode, entry.metaState, | 
|  | 1480 | entry.repeatCount, entry.downTime); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1481 | #endif | 
|  | 1482 | } | 
|  | 1483 |  | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 1484 | void InputDispatcher::doNotifySensorLockedInterruptible(CommandEntry* commandEntry) { | 
|  | 1485 | mLock.unlock(); | 
|  | 1486 |  | 
|  | 1487 | const std::shared_ptr<SensorEntry>& entry = commandEntry->sensorEntry; | 
|  | 1488 | if (entry->accuracyChanged) { | 
|  | 1489 | mPolicy->notifySensorAccuracy(entry->deviceId, entry->sensorType, entry->accuracy); | 
|  | 1490 | } | 
|  | 1491 | mPolicy->notifySensorEvent(entry->deviceId, entry->sensorType, entry->accuracy, | 
|  | 1492 | entry->hwTimestamp, entry->values); | 
|  | 1493 | mLock.lock(); | 
|  | 1494 | } | 
|  | 1495 |  | 
|  | 1496 | void InputDispatcher::dispatchSensorLocked(nsecs_t currentTime, std::shared_ptr<SensorEntry> entry, | 
|  | 1497 | DropReason* dropReason, nsecs_t* nextWakeupTime) { | 
|  | 1498 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
|  | 1499 | ALOGD("notifySensorEvent eventTime=%" PRId64 ", hwTimestamp=%" PRId64 ", deviceId=%d, " | 
|  | 1500 | "source=0x%x, sensorType=%s", | 
|  | 1501 | entry->eventTime, entry->hwTimestamp, entry->deviceId, entry->source, | 
| Prabir Pradhan | be05b5b | 2021-02-24 16:39:43 -0800 | [diff] [blame] | 1502 | NamedEnum::string(entry->sensorType).c_str()); | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 1503 | #endif | 
|  | 1504 | std::unique_ptr<CommandEntry> commandEntry = | 
|  | 1505 | std::make_unique<CommandEntry>(&InputDispatcher::doNotifySensorLockedInterruptible); | 
|  | 1506 | commandEntry->sensorEntry = entry; | 
|  | 1507 | postCommandLocked(std::move(commandEntry)); | 
|  | 1508 | } | 
|  | 1509 |  | 
|  | 1510 | bool InputDispatcher::flushSensor(int deviceId, InputDeviceSensorType sensorType) { | 
|  | 1511 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
|  | 1512 | ALOGD("flushSensor deviceId=%d, sensorType=%s", deviceId, | 
|  | 1513 | NamedEnum::string(sensorType).c_str()); | 
|  | 1514 | #endif | 
|  | 1515 | { // acquire lock | 
|  | 1516 | std::scoped_lock _l(mLock); | 
|  | 1517 |  | 
|  | 1518 | for (auto it = mInboundQueue.begin(); it != mInboundQueue.end(); it++) { | 
|  | 1519 | std::shared_ptr<EventEntry> entry = *it; | 
|  | 1520 | if (entry->type == EventEntry::Type::SENSOR) { | 
|  | 1521 | it = mInboundQueue.erase(it); | 
|  | 1522 | releaseInboundEventLocked(entry); | 
|  | 1523 | } | 
|  | 1524 | } | 
|  | 1525 | } | 
|  | 1526 | return true; | 
|  | 1527 | } | 
|  | 1528 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1529 | bool InputDispatcher::dispatchMotionLocked(nsecs_t currentTime, std::shared_ptr<MotionEntry> entry, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1530 | DropReason* dropReason, nsecs_t* nextWakeupTime) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 1531 | ATRACE_CALL(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1532 | // Preprocessing. | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1533 | if (!entry->dispatchInProgress) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1534 | entry->dispatchInProgress = true; | 
|  | 1535 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1536 | logOutboundMotionDetails("dispatchMotion - ", *entry); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1537 | } | 
|  | 1538 |  | 
|  | 1539 | // Clean up if dropping the event. | 
| Siarhei Vishniakou | 0fb1a0e | 2019-10-22 11:23:36 -0700 | [diff] [blame] | 1540 | if (*dropReason != DropReason::NOT_DROPPED) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1541 | setInjectionResult(*entry, | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1542 | *dropReason == DropReason::POLICY ? InputEventInjectionResult::SUCCEEDED | 
|  | 1543 | : InputEventInjectionResult::FAILED); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1544 | return true; | 
|  | 1545 | } | 
|  | 1546 |  | 
|  | 1547 | bool isPointerEvent = entry->source & AINPUT_SOURCE_CLASS_POINTER; | 
|  | 1548 |  | 
|  | 1549 | // Identify targets. | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 1550 | std::vector<InputTarget> inputTargets; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1551 |  | 
|  | 1552 | bool conflictingPointerActions = false; | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1553 | InputEventInjectionResult injectionResult; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1554 | if (isPointerEvent) { | 
|  | 1555 | // Pointer event.  (eg. touchscreen) | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1556 | injectionResult = | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1557 | findTouchedWindowTargetsLocked(currentTime, *entry, inputTargets, nextWakeupTime, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1558 | &conflictingPointerActions); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1559 | } else { | 
|  | 1560 | // Non touch event.  (eg. trackball) | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1561 | injectionResult = | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1562 | findFocusedWindowTargetsLocked(currentTime, *entry, inputTargets, nextWakeupTime); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1563 | } | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1564 | if (injectionResult == InputEventInjectionResult::PENDING) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1565 | return false; | 
|  | 1566 | } | 
|  | 1567 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1568 | setInjectionResult(*entry, injectionResult); | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1569 | if (injectionResult == InputEventInjectionResult::PERMISSION_DENIED) { | 
| Siarhei Vishniakou | 767917f | 2020-03-24 20:49:09 -0700 | [diff] [blame] | 1570 | ALOGW("Permission denied, dropping the motion (isPointer=%s)", toString(isPointerEvent)); | 
|  | 1571 | return true; | 
|  | 1572 | } | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1573 | if (injectionResult != InputEventInjectionResult::SUCCEEDED) { | 
| Siarhei Vishniakou | 767917f | 2020-03-24 20:49:09 -0700 | [diff] [blame] | 1574 | CancelationOptions::Mode mode(isPointerEvent | 
|  | 1575 | ? CancelationOptions::CANCEL_POINTER_EVENTS | 
|  | 1576 | : CancelationOptions::CANCEL_NON_POINTER_EVENTS); | 
|  | 1577 | CancelationOptions options(mode, "input event injection failed"); | 
|  | 1578 | synthesizeCancelationEventsForMonitorsLocked(options); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1579 | return true; | 
|  | 1580 | } | 
|  | 1581 |  | 
| Arthur Hung | 2fbf37f | 2018-09-13 18:16:41 +0800 | [diff] [blame] | 1582 | // Add monitor channels from event's or focused display. | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1583 | addGlobalMonitoringTargetsLocked(inputTargets, getTargetDisplayId(*entry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1584 |  | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 1585 | if (isPointerEvent) { | 
| Siarhei Vishniakou | 4700f82 | 2020-03-24 19:05:54 -0700 | [diff] [blame] | 1586 | std::unordered_map<int32_t, TouchState>::iterator it = | 
|  | 1587 | mTouchStatesByDisplay.find(entry->displayId); | 
|  | 1588 | if (it != mTouchStatesByDisplay.end()) { | 
|  | 1589 | const TouchState& state = it->second; | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 1590 | if (!state.portalWindows.empty()) { | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 1591 | // The event has gone through these portal windows, so we add monitoring targets of | 
|  | 1592 | // the corresponding displays as well. | 
|  | 1593 | for (size_t i = 0; i < state.portalWindows.size(); i++) { | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 1594 | const InputWindowInfo* windowInfo = state.portalWindows[i]->getInfo(); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 1595 | addGlobalMonitoringTargetsLocked(inputTargets, windowInfo->portalToDisplayId, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1596 | -windowInfo->frameLeft, -windowInfo->frameTop); | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 1597 | } | 
|  | 1598 | } | 
|  | 1599 | } | 
|  | 1600 | } | 
|  | 1601 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1602 | // Dispatch the motion. | 
|  | 1603 | if (conflictingPointerActions) { | 
|  | 1604 | CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1605 | "conflicting pointer actions"); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1606 | synthesizeCancelationEventsForAllConnectionsLocked(options); | 
|  | 1607 | } | 
|  | 1608 | dispatchEventLocked(currentTime, entry, inputTargets); | 
|  | 1609 | return true; | 
|  | 1610 | } | 
|  | 1611 |  | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 1612 | void InputDispatcher::enqueueDragEventLocked(const sp<InputWindowHandle>& windowHandle, | 
|  | 1613 | bool isExiting, const MotionEntry& motionEntry) { | 
|  | 1614 | // If the window needs enqueue a drag event, the pointerCount should be 1 and the action should | 
|  | 1615 | // be AMOTION_EVENT_ACTION_MOVE, that could guarantee the first pointer is always valid. | 
|  | 1616 | LOG_ALWAYS_FATAL_IF(motionEntry.pointerCount != 1); | 
|  | 1617 | PointerCoords pointerCoords; | 
|  | 1618 | pointerCoords.copyFrom(motionEntry.pointerCoords[0]); | 
|  | 1619 | pointerCoords.transform(windowHandle->getInfo()->transform); | 
|  | 1620 |  | 
|  | 1621 | std::unique_ptr<DragEntry> dragEntry = | 
|  | 1622 | std::make_unique<DragEntry>(mIdGenerator.nextId(), motionEntry.eventTime, | 
|  | 1623 | windowHandle->getToken(), isExiting, pointerCoords.getX(), | 
|  | 1624 | pointerCoords.getY()); | 
|  | 1625 |  | 
|  | 1626 | enqueueInboundEventLocked(std::move(dragEntry)); | 
|  | 1627 | } | 
|  | 1628 |  | 
|  | 1629 | void InputDispatcher::dispatchDragLocked(nsecs_t currentTime, std::shared_ptr<DragEntry> entry) { | 
|  | 1630 | std::shared_ptr<InputChannel> channel = getInputChannelLocked(entry->connectionToken); | 
|  | 1631 | if (channel == nullptr) { | 
|  | 1632 | return; // Window has gone away | 
|  | 1633 | } | 
|  | 1634 | InputTarget target; | 
|  | 1635 | target.inputChannel = channel; | 
|  | 1636 | target.flags = InputTarget::FLAG_DISPATCH_AS_IS; | 
|  | 1637 | entry->dispatchInProgress = true; | 
|  | 1638 | dispatchEventLocked(currentTime, entry, {target}); | 
|  | 1639 | } | 
|  | 1640 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1641 | void InputDispatcher::logOutboundMotionDetails(const char* prefix, const MotionEntry& entry) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1642 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
| Siarhei Vishniakou | 777a10b | 2018-01-31 16:45:06 -0800 | [diff] [blame] | 1643 | ALOGD("%seventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32 | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1644 | ", policyFlags=0x%x, " | 
|  | 1645 | "action=0x%x, actionButton=0x%x, flags=0x%x, " | 
|  | 1646 | "metaState=0x%x, buttonState=0x%x," | 
|  | 1647 | "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, downTime=%" PRId64, | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1648 | prefix, entry.eventTime, entry.deviceId, entry.source, entry.displayId, entry.policyFlags, | 
|  | 1649 | entry.action, entry.actionButton, entry.flags, entry.metaState, entry.buttonState, | 
|  | 1650 | entry.edgeFlags, entry.xPrecision, entry.yPrecision, entry.downTime); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1651 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1652 | for (uint32_t i = 0; i < entry.pointerCount; i++) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1653 | ALOGD("  Pointer %d: id=%d, toolType=%d, " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1654 | "x=%f, y=%f, pressure=%f, size=%f, " | 
|  | 1655 | "touchMajor=%f, touchMinor=%f, toolMajor=%f, toolMinor=%f, " | 
|  | 1656 | "orientation=%f", | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1657 | i, entry.pointerProperties[i].id, entry.pointerProperties[i].toolType, | 
|  | 1658 | entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_X), | 
|  | 1659 | entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_Y), | 
|  | 1660 | entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_PRESSURE), | 
|  | 1661 | entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_SIZE), | 
|  | 1662 | entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR), | 
|  | 1663 | entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR), | 
|  | 1664 | entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR), | 
|  | 1665 | entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR), | 
|  | 1666 | entry.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1667 | } | 
|  | 1668 | #endif | 
|  | 1669 | } | 
|  | 1670 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 1671 | void InputDispatcher::dispatchEventLocked(nsecs_t currentTime, | 
|  | 1672 | std::shared_ptr<EventEntry> eventEntry, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1673 | const std::vector<InputTarget>& inputTargets) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 1674 | ATRACE_CALL(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1675 | #if DEBUG_DISPATCH_CYCLE | 
|  | 1676 | ALOGD("dispatchEventToCurrentInputTargets"); | 
|  | 1677 | #endif | 
|  | 1678 |  | 
| Siarhei Vishniakou | 887b7d9 | 2020-06-18 00:43:02 +0000 | [diff] [blame] | 1679 | updateInteractionTokensLocked(*eventEntry, inputTargets); | 
|  | 1680 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1681 | ALOG_ASSERT(eventEntry->dispatchInProgress); // should already have been set to true | 
|  | 1682 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1683 | pokeUserActivityLocked(*eventEntry); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1684 |  | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 1685 | for (const InputTarget& inputTarget : inputTargets) { | 
| Siarhei Vishniakou | 26d3cfb | 2019-10-15 17:02:32 -0700 | [diff] [blame] | 1686 | sp<Connection> connection = | 
|  | 1687 | getConnectionLocked(inputTarget.inputChannel->getConnectionToken()); | 
| Siarhei Vishniakou | 146ecfd | 2019-07-29 16:04:31 -0700 | [diff] [blame] | 1688 | if (connection != nullptr) { | 
| Siarhei Vishniakou | 5d6b661 | 2020-01-08 16:03:04 -0800 | [diff] [blame] | 1689 | prepareDispatchCycleLocked(currentTime, connection, eventEntry, inputTarget); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1690 | } else { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 1691 | if (DEBUG_FOCUS) { | 
|  | 1692 | ALOGD("Dropping event delivery to target with channel '%s' because it " | 
|  | 1693 | "is no longer registered with the input dispatcher.", | 
|  | 1694 | inputTarget.inputChannel->getName().c_str()); | 
|  | 1695 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1696 | } | 
|  | 1697 | } | 
|  | 1698 | } | 
|  | 1699 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1700 | void InputDispatcher::cancelEventsForAnrLocked(const sp<Connection>& connection) { | 
|  | 1701 | // We will not be breaking any connections here, even if the policy wants us to abort dispatch. | 
|  | 1702 | // If the policy decides to close the app, we will get a channel removal event via | 
|  | 1703 | // unregisterInputChannel, and will clean up the connection that way. We are already not | 
|  | 1704 | // sending new pointers to the connection when it blocked, but focused events will continue to | 
|  | 1705 | // pile up. | 
|  | 1706 | ALOGW("Canceling events for %s because it is unresponsive", | 
|  | 1707 | connection->inputChannel->getName().c_str()); | 
|  | 1708 | if (connection->status == Connection::STATUS_NORMAL) { | 
|  | 1709 | CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS, | 
|  | 1710 | "application not responding"); | 
|  | 1711 | synthesizeCancelationEventsForConnectionLocked(connection, options); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1712 | } | 
|  | 1713 | } | 
|  | 1714 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1715 | void InputDispatcher::resetNoFocusedWindowTimeoutLocked() { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 1716 | if (DEBUG_FOCUS) { | 
|  | 1717 | ALOGD("Resetting ANR timeouts."); | 
|  | 1718 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1719 |  | 
|  | 1720 | // Reset input target wait timeout. | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1721 | mNoFocusedWindowTimeoutTime = std::nullopt; | 
| Chris Ye | a209fde | 2020-07-22 13:54:51 -0700 | [diff] [blame] | 1722 | mAwaitedFocusedApplication.reset(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1723 | } | 
|  | 1724 |  | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 1725 | /** | 
|  | 1726 | * Get the display id that the given event should go to. If this event specifies a valid display id, | 
|  | 1727 | * then it should be dispatched to that display. Otherwise, the event goes to the focused display. | 
|  | 1728 | * Focused display is the display that the user most recently interacted with. | 
|  | 1729 | */ | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1730 | int32_t InputDispatcher::getTargetDisplayId(const EventEntry& entry) { | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 1731 | int32_t displayId; | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1732 | switch (entry.type) { | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 1733 | case EventEntry::Type::KEY: { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1734 | const KeyEntry& keyEntry = static_cast<const KeyEntry&>(entry); | 
|  | 1735 | displayId = keyEntry.displayId; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1736 | break; | 
|  | 1737 | } | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 1738 | case EventEntry::Type::MOTION: { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1739 | const MotionEntry& motionEntry = static_cast<const MotionEntry&>(entry); | 
|  | 1740 | displayId = motionEntry.displayId; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1741 | break; | 
|  | 1742 | } | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 1743 | case EventEntry::Type::POINTER_CAPTURE_CHANGED: | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 1744 | case EventEntry::Type::FOCUS: | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 1745 | case EventEntry::Type::CONFIGURATION_CHANGED: | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 1746 | case EventEntry::Type::DEVICE_RESET: | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 1747 | case EventEntry::Type::SENSOR: | 
|  | 1748 | case EventEntry::Type::DRAG: { | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 1749 | ALOGE("%s events do not have a target display", NamedEnum::string(entry.type).c_str()); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1750 | return ADISPLAY_ID_NONE; | 
|  | 1751 | } | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 1752 | } | 
|  | 1753 | return displayId == ADISPLAY_ID_NONE ? mFocusedDisplayId : displayId; | 
|  | 1754 | } | 
|  | 1755 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1756 | bool InputDispatcher::shouldWaitToSendKeyLocked(nsecs_t currentTime, | 
|  | 1757 | const char* focusedWindowName) { | 
|  | 1758 | if (mAnrTracker.empty()) { | 
|  | 1759 | // already processed all events that we waited for | 
|  | 1760 | mKeyIsWaitingForEventsTimeout = std::nullopt; | 
|  | 1761 | return false; | 
|  | 1762 | } | 
|  | 1763 |  | 
|  | 1764 | if (!mKeyIsWaitingForEventsTimeout.has_value()) { | 
|  | 1765 | // Start the timer | 
| Siarhei Vishniakou | d706a28 | 2021-02-13 00:08:48 +0000 | [diff] [blame] | 1766 | // Wait to send key because there are unprocessed events that may cause focus to change | 
| Siarhei Vishniakou | 7062295 | 2020-07-30 11:17:23 -0500 | [diff] [blame] | 1767 | mKeyIsWaitingForEventsTimeout = currentTime + | 
|  | 1768 | std::chrono::duration_cast<std::chrono::nanoseconds>(KEY_WAITING_FOR_EVENTS_TIMEOUT) | 
|  | 1769 | .count(); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1770 | return true; | 
|  | 1771 | } | 
|  | 1772 |  | 
|  | 1773 | // We still have pending events, and already started the timer | 
|  | 1774 | if (currentTime < *mKeyIsWaitingForEventsTimeout) { | 
|  | 1775 | return true; // Still waiting | 
|  | 1776 | } | 
|  | 1777 |  | 
|  | 1778 | // Waited too long, and some connection still hasn't processed all motions | 
|  | 1779 | // Just send the key to the focused window | 
|  | 1780 | ALOGW("Dispatching key to %s even though there are other unprocessed events", | 
|  | 1781 | focusedWindowName); | 
|  | 1782 | mKeyIsWaitingForEventsTimeout = std::nullopt; | 
|  | 1783 | return false; | 
|  | 1784 | } | 
|  | 1785 |  | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1786 | InputEventInjectionResult InputDispatcher::findFocusedWindowTargetsLocked( | 
|  | 1787 | nsecs_t currentTime, const EventEntry& entry, std::vector<InputTarget>& inputTargets, | 
|  | 1788 | nsecs_t* nextWakeupTime) { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 1789 | std::string reason; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1790 |  | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 1791 | int32_t displayId = getTargetDisplayId(entry); | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 1792 | sp<InputWindowHandle> focusedWindowHandle = getFocusedWindowHandleLocked(displayId); | 
| Chris Ye | a209fde | 2020-07-22 13:54:51 -0700 | [diff] [blame] | 1793 | std::shared_ptr<InputApplicationHandle> focusedApplicationHandle = | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 1794 | getValueByKey(mFocusedApplicationHandlesByDisplay, displayId); | 
|  | 1795 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1796 | // If there is no currently focused window and no focused application | 
|  | 1797 | // then drop the event. | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1798 | if (focusedWindowHandle == nullptr && focusedApplicationHandle == nullptr) { | 
|  | 1799 | ALOGI("Dropping %s event because there is no focused window or focused application in " | 
|  | 1800 | "display %" PRId32 ".", | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 1801 | NamedEnum::string(entry.type).c_str(), displayId); | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1802 | return InputEventInjectionResult::FAILED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1803 | } | 
|  | 1804 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1805 | // Compatibility behavior: raise ANR if there is a focused application, but no focused window. | 
|  | 1806 | // Only start counting when we have a focused event to dispatch. The ANR is canceled if we | 
|  | 1807 | // start interacting with another application via touch (app switch). This code can be removed | 
|  | 1808 | // if the "no focused window ANR" is moved to the policy. Input doesn't know whether | 
|  | 1809 | // an app is expected to have a focused window. | 
|  | 1810 | if (focusedWindowHandle == nullptr && focusedApplicationHandle != nullptr) { | 
|  | 1811 | if (!mNoFocusedWindowTimeoutTime.has_value()) { | 
|  | 1812 | // We just discovered that there's no focused window. Start the ANR timer | 
| Siarhei Vishniakou | c1ae556 | 2020-06-30 14:22:57 -0500 | [diff] [blame] | 1813 | std::chrono::nanoseconds timeout = focusedApplicationHandle->getDispatchingTimeout( | 
|  | 1814 | DEFAULT_INPUT_DISPATCHING_TIMEOUT); | 
|  | 1815 | mNoFocusedWindowTimeoutTime = currentTime + timeout.count(); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1816 | mAwaitedFocusedApplication = focusedApplicationHandle; | 
| Siarhei Vishniakou | f56b269 | 2020-09-08 19:43:33 -0500 | [diff] [blame] | 1817 | mAwaitedApplicationDisplayId = displayId; | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1818 | ALOGW("Waiting because no window has focus but %s may eventually add a " | 
|  | 1819 | "window when it finishes starting up. Will wait for %" PRId64 "ms", | 
| Siarhei Vishniakou | c1ae556 | 2020-06-30 14:22:57 -0500 | [diff] [blame] | 1820 | mAwaitedFocusedApplication->getName().c_str(), millis(timeout)); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1821 | *nextWakeupTime = *mNoFocusedWindowTimeoutTime; | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1822 | return InputEventInjectionResult::PENDING; | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1823 | } else if (currentTime > *mNoFocusedWindowTimeoutTime) { | 
|  | 1824 | // Already raised ANR. Drop the event | 
|  | 1825 | ALOGE("Dropping %s event because there is no focused window", | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 1826 | NamedEnum::string(entry.type).c_str()); | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1827 | return InputEventInjectionResult::FAILED; | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1828 | } else { | 
|  | 1829 | // Still waiting for the focused window | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1830 | return InputEventInjectionResult::PENDING; | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1831 | } | 
|  | 1832 | } | 
|  | 1833 |  | 
|  | 1834 | // we have a valid, non-null focused window | 
|  | 1835 | resetNoFocusedWindowTimeoutLocked(); | 
|  | 1836 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1837 | // Check permissions. | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1838 | if (!checkInjectionPermission(focusedWindowHandle, entry.injectionState)) { | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1839 | return InputEventInjectionResult::PERMISSION_DENIED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1840 | } | 
|  | 1841 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1842 | if (focusedWindowHandle->getInfo()->paused) { | 
|  | 1843 | ALOGI("Waiting because %s is paused", focusedWindowHandle->getName().c_str()); | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1844 | return InputEventInjectionResult::PENDING; | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1845 | } | 
|  | 1846 |  | 
|  | 1847 | // If the event is a key event, then we must wait for all previous events to | 
|  | 1848 | // complete before delivering it because previous events may have the | 
|  | 1849 | // side-effect of transferring focus to a different window and we want to | 
|  | 1850 | // ensure that the following keys are sent to the new window. | 
|  | 1851 | // | 
|  | 1852 | // Suppose the user touches a button in a window then immediately presses "A". | 
|  | 1853 | // If the button causes a pop-up window to appear then we want to ensure that | 
|  | 1854 | // the "A" key is delivered to the new pop-up window.  This is because users | 
|  | 1855 | // often anticipate pending UI changes when typing on a keyboard. | 
|  | 1856 | // To obtain this behavior, we must serialize key events with respect to all | 
|  | 1857 | // prior input events. | 
|  | 1858 | if (entry.type == EventEntry::Type::KEY) { | 
|  | 1859 | if (shouldWaitToSendKeyLocked(currentTime, focusedWindowHandle->getName().c_str())) { | 
|  | 1860 | *nextWakeupTime = *mKeyIsWaitingForEventsTimeout; | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1861 | return InputEventInjectionResult::PENDING; | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1862 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1863 | } | 
|  | 1864 |  | 
|  | 1865 | // Success!  Output targets. | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 1866 | addWindowTargetLocked(focusedWindowHandle, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1867 | InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_DISPATCH_AS_IS, | 
|  | 1868 | BitSet32(0), inputTargets); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1869 |  | 
|  | 1870 | // Done. | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1871 | return InputEventInjectionResult::SUCCEEDED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1872 | } | 
|  | 1873 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 1874 | /** | 
|  | 1875 | * Given a list of monitors, remove the ones we cannot find a connection for, and the ones | 
|  | 1876 | * that are currently unresponsive. | 
|  | 1877 | */ | 
|  | 1878 | std::vector<TouchedMonitor> InputDispatcher::selectResponsiveMonitorsLocked( | 
|  | 1879 | const std::vector<TouchedMonitor>& monitors) const { | 
|  | 1880 | std::vector<TouchedMonitor> responsiveMonitors; | 
|  | 1881 | std::copy_if(monitors.begin(), monitors.end(), std::back_inserter(responsiveMonitors), | 
|  | 1882 | [this](const TouchedMonitor& monitor) REQUIRES(mLock) { | 
|  | 1883 | sp<Connection> connection = getConnectionLocked( | 
|  | 1884 | monitor.monitor.inputChannel->getConnectionToken()); | 
|  | 1885 | if (connection == nullptr) { | 
|  | 1886 | ALOGE("Could not find connection for monitor %s", | 
|  | 1887 | monitor.monitor.inputChannel->getName().c_str()); | 
|  | 1888 | return false; | 
|  | 1889 | } | 
|  | 1890 | if (!connection->responsive) { | 
|  | 1891 | ALOGW("Unresponsive monitor %s will not get the new gesture", | 
|  | 1892 | connection->inputChannel->getName().c_str()); | 
|  | 1893 | return false; | 
|  | 1894 | } | 
|  | 1895 | return true; | 
|  | 1896 | }); | 
|  | 1897 | return responsiveMonitors; | 
|  | 1898 | } | 
|  | 1899 |  | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1900 | InputEventInjectionResult InputDispatcher::findTouchedWindowTargetsLocked( | 
|  | 1901 | nsecs_t currentTime, const MotionEntry& entry, std::vector<InputTarget>& inputTargets, | 
|  | 1902 | nsecs_t* nextWakeupTime, bool* outConflictingPointerActions) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 1903 | ATRACE_CALL(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1904 | enum InjectionPermission { | 
|  | 1905 | INJECTION_PERMISSION_UNKNOWN, | 
|  | 1906 | INJECTION_PERMISSION_GRANTED, | 
|  | 1907 | INJECTION_PERMISSION_DENIED | 
|  | 1908 | }; | 
|  | 1909 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1910 | // For security reasons, we defer updating the touch state until we are sure that | 
|  | 1911 | // event injection will be allowed. | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1912 | int32_t displayId = entry.displayId; | 
|  | 1913 | int32_t action = entry.action; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1914 | int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK; | 
|  | 1915 |  | 
|  | 1916 | // Update the touch state as needed based on the properties of the touch event. | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1917 | InputEventInjectionResult injectionResult = InputEventInjectionResult::PENDING; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1918 | InjectionPermission injectionPermission = INJECTION_PERMISSION_UNKNOWN; | 
| Garfield Tan | df26e86 | 2020-07-01 20:18:19 -0700 | [diff] [blame] | 1919 | sp<InputWindowHandle> newHoverWindowHandle(mLastHoverWindowHandle); | 
|  | 1920 | sp<InputWindowHandle> newTouchedWindowHandle; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1921 |  | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 1922 | // Copy current touch state into tempTouchState. | 
|  | 1923 | // This state will be used to update mTouchStatesByDisplay at the end of this function. | 
|  | 1924 | // If no state for the specified display exists, then our initial state will be empty. | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 1925 | const TouchState* oldState = nullptr; | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 1926 | TouchState tempTouchState; | 
| Siarhei Vishniakou | 4700f82 | 2020-03-24 19:05:54 -0700 | [diff] [blame] | 1927 | std::unordered_map<int32_t, TouchState>::iterator oldStateIt = | 
|  | 1928 | mTouchStatesByDisplay.find(displayId); | 
|  | 1929 | if (oldStateIt != mTouchStatesByDisplay.end()) { | 
|  | 1930 | oldState = &(oldStateIt->second); | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 1931 | tempTouchState.copyFrom(*oldState); | 
| Jeff Brown | f086ddb | 2014-02-11 14:28:48 -0800 | [diff] [blame] | 1932 | } | 
|  | 1933 |  | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 1934 | bool isSplit = tempTouchState.split; | 
|  | 1935 | bool switchedDevice = tempTouchState.deviceId >= 0 && tempTouchState.displayId >= 0 && | 
|  | 1936 | (tempTouchState.deviceId != entry.deviceId || tempTouchState.source != entry.source || | 
|  | 1937 | tempTouchState.displayId != displayId); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1938 | bool isHoverAction = (maskedAction == AMOTION_EVENT_ACTION_HOVER_MOVE || | 
|  | 1939 | maskedAction == AMOTION_EVENT_ACTION_HOVER_ENTER || | 
|  | 1940 | maskedAction == AMOTION_EVENT_ACTION_HOVER_EXIT); | 
|  | 1941 | bool newGesture = (maskedAction == AMOTION_EVENT_ACTION_DOWN || | 
|  | 1942 | maskedAction == AMOTION_EVENT_ACTION_SCROLL || isHoverAction); | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1943 | const bool isFromMouse = entry.source == AINPUT_SOURCE_MOUSE; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1944 | bool wrongDevice = false; | 
|  | 1945 | if (newGesture) { | 
|  | 1946 | bool down = maskedAction == AMOTION_EVENT_ACTION_DOWN; | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 1947 | if (switchedDevice && tempTouchState.down && !down && !isHoverAction) { | 
| Siarhei Vishniakou | f0007dd | 2020-04-13 11:40:37 -0700 | [diff] [blame] | 1948 | ALOGI("Dropping event because a pointer for a different device is already down " | 
|  | 1949 | "in display %" PRId32, | 
|  | 1950 | displayId); | 
| Kevin Schoedel | 1eb587b | 2017-05-03 13:58:56 -0400 | [diff] [blame] | 1951 | // TODO: test multiple simultaneous input streams. | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1952 | injectionResult = InputEventInjectionResult::FAILED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1953 | switchedDevice = false; | 
|  | 1954 | wrongDevice = true; | 
|  | 1955 | goto Failed; | 
|  | 1956 | } | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 1957 | tempTouchState.reset(); | 
|  | 1958 | tempTouchState.down = down; | 
|  | 1959 | tempTouchState.deviceId = entry.deviceId; | 
|  | 1960 | tempTouchState.source = entry.source; | 
|  | 1961 | tempTouchState.displayId = displayId; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1962 | isSplit = false; | 
| Kevin Schoedel | 1eb587b | 2017-05-03 13:58:56 -0400 | [diff] [blame] | 1963 | } else if (switchedDevice && maskedAction == AMOTION_EVENT_ACTION_MOVE) { | 
| Siarhei Vishniakou | f0007dd | 2020-04-13 11:40:37 -0700 | [diff] [blame] | 1964 | ALOGI("Dropping move event because a pointer for a different device is already active " | 
|  | 1965 | "in display %" PRId32, | 
|  | 1966 | displayId); | 
| Kevin Schoedel | 1eb587b | 2017-05-03 13:58:56 -0400 | [diff] [blame] | 1967 | // TODO: test multiple simultaneous input streams. | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 1968 | injectionResult = InputEventInjectionResult::PERMISSION_DENIED; | 
| Kevin Schoedel | 1eb587b | 2017-05-03 13:58:56 -0400 | [diff] [blame] | 1969 | switchedDevice = false; | 
|  | 1970 | wrongDevice = true; | 
|  | 1971 | goto Failed; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1972 | } | 
|  | 1973 |  | 
|  | 1974 | if (newGesture || (isSplit && maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN)) { | 
|  | 1975 | /* Case 1: New splittable pointer going down, or need target for hover or scroll. */ | 
|  | 1976 |  | 
| Garfield Tan | 00f511d | 2019-06-12 16:55:40 -0700 | [diff] [blame] | 1977 | int32_t x; | 
|  | 1978 | int32_t y; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1979 | int32_t pointerIndex = getMotionEventActionPointerIndex(action); | 
| Garfield Tan | 00f511d | 2019-06-12 16:55:40 -0700 | [diff] [blame] | 1980 | // Always dispatch mouse events to cursor position. | 
|  | 1981 | if (isFromMouse) { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1982 | x = int32_t(entry.xCursorPosition); | 
|  | 1983 | y = int32_t(entry.yCursorPosition); | 
| Garfield Tan | 00f511d | 2019-06-12 16:55:40 -0700 | [diff] [blame] | 1984 | } else { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 1985 | x = int32_t(entry.pointerCoords[pointerIndex].getAxisValue(AMOTION_EVENT_AXIS_X)); | 
|  | 1986 | y = int32_t(entry.pointerCoords[pointerIndex].getAxisValue(AMOTION_EVENT_AXIS_Y)); | 
| Garfield Tan | 00f511d | 2019-06-12 16:55:40 -0700 | [diff] [blame] | 1987 | } | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 1988 | bool isDown = maskedAction == AMOTION_EVENT_ACTION_DOWN; | 
| Garfield Tan | df26e86 | 2020-07-01 20:18:19 -0700 | [diff] [blame] | 1989 | newTouchedWindowHandle = | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 1990 | findTouchedWindowAtLocked(displayId, x, y, &tempTouchState, | 
|  | 1991 | isDown /*addOutsideTargets*/, true /*addPortalWindows*/); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 1992 |  | 
|  | 1993 | std::vector<TouchedMonitor> newGestureMonitors = isDown | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 1994 | ? findTouchedGestureMonitorsLocked(displayId, tempTouchState.portalWindows) | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 1995 | : std::vector<TouchedMonitor>{}; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1996 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1997 | // Figure out whether splitting will be allowed for this window. | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 1998 | if (newTouchedWindowHandle != nullptr && | 
|  | 1999 | newTouchedWindowHandle->getInfo()->supportsSplitTouch()) { | 
| Garfield Tan | addb02b | 2019-06-25 16:36:13 -0700 | [diff] [blame] | 2000 | // New window supports splitting, but we should never split mouse events. | 
|  | 2001 | isSplit = !isFromMouse; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2002 | } else if (isSplit) { | 
|  | 2003 | // New window does not support splitting but we have already split events. | 
|  | 2004 | // Ignore the new window. | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 2005 | newTouchedWindowHandle = nullptr; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2006 | } | 
|  | 2007 |  | 
|  | 2008 | // Handle the case where we did not find a window. | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 2009 | if (newTouchedWindowHandle == nullptr) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2010 | // Try to assign the pointer to the first foreground window we find, if there is one. | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2011 | newTouchedWindowHandle = tempTouchState.getFirstForegroundWindowHandle(); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2012 | } | 
|  | 2013 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 2014 | if (newTouchedWindowHandle != nullptr && newTouchedWindowHandle->getInfo()->paused) { | 
|  | 2015 | ALOGI("Not sending touch event to %s because it is paused", | 
|  | 2016 | newTouchedWindowHandle->getName().c_str()); | 
|  | 2017 | newTouchedWindowHandle = nullptr; | 
|  | 2018 | } | 
|  | 2019 |  | 
| Siarhei Vishniakou | a2862a0 | 2020-07-20 16:36:46 -0500 | [diff] [blame] | 2020 | // Ensure the window has a connection and the connection is responsive | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 2021 | if (newTouchedWindowHandle != nullptr) { | 
| Siarhei Vishniakou | a2862a0 | 2020-07-20 16:36:46 -0500 | [diff] [blame] | 2022 | const bool isResponsive = hasResponsiveConnectionLocked(*newTouchedWindowHandle); | 
|  | 2023 | if (!isResponsive) { | 
|  | 2024 | ALOGW("%s will not receive the new gesture at %" PRIu64, | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 2025 | newTouchedWindowHandle->getName().c_str(), entry.eventTime); | 
|  | 2026 | newTouchedWindowHandle = nullptr; | 
|  | 2027 | } | 
|  | 2028 | } | 
|  | 2029 |  | 
| Bernardo Rufino | ea97d18 | 2020-08-19 14:43:14 +0100 | [diff] [blame] | 2030 | // Drop events that can't be trusted due to occlusion | 
|  | 2031 | if (newTouchedWindowHandle != nullptr && | 
|  | 2032 | mBlockUntrustedTouchesMode != BlockUntrustedTouchesMode::DISABLED) { | 
|  | 2033 | TouchOcclusionInfo occlusionInfo = | 
|  | 2034 | computeTouchOcclusionInfoLocked(newTouchedWindowHandle, x, y); | 
| Bernardo Rufino | 2e1f651 | 2020-10-08 13:42:07 +0000 | [diff] [blame] | 2035 | if (!isTouchTrustedLocked(occlusionInfo)) { | 
| Bernardo Rufino | 4bae0ac | 2020-10-14 18:33:46 +0000 | [diff] [blame] | 2036 | if (DEBUG_TOUCH_OCCLUSION) { | 
|  | 2037 | ALOGD("Stack of obscuring windows during untrusted touch (%d, %d):", x, y); | 
|  | 2038 | for (const auto& log : occlusionInfo.debugInfo) { | 
|  | 2039 | ALOGD("%s", log.c_str()); | 
|  | 2040 | } | 
|  | 2041 | } | 
| Bernardo Rufino | 2e1f651 | 2020-10-08 13:42:07 +0000 | [diff] [blame] | 2042 | onUntrustedTouchLocked(occlusionInfo.obscuringPackage); | 
|  | 2043 | if (mBlockUntrustedTouchesMode == BlockUntrustedTouchesMode::BLOCK) { | 
|  | 2044 | ALOGW("Dropping untrusted touch event due to %s/%d", | 
|  | 2045 | occlusionInfo.obscuringPackage.c_str(), occlusionInfo.obscuringUid); | 
|  | 2046 | newTouchedWindowHandle = nullptr; | 
|  | 2047 | } | 
| Bernardo Rufino | ea97d18 | 2020-08-19 14:43:14 +0100 | [diff] [blame] | 2048 | } | 
|  | 2049 | } | 
|  | 2050 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 2051 | // Also don't send the new touch event to unresponsive gesture monitors | 
|  | 2052 | newGestureMonitors = selectResponsiveMonitorsLocked(newGestureMonitors); | 
|  | 2053 |  | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2054 | if (newTouchedWindowHandle == nullptr && newGestureMonitors.empty()) { | 
|  | 2055 | ALOGI("Dropping event because there is no touchable window or gesture monitor at " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2056 | "(%d, %d) in display %" PRId32 ".", | 
|  | 2057 | x, y, displayId); | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 2058 | injectionResult = InputEventInjectionResult::FAILED; | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2059 | goto Failed; | 
|  | 2060 | } | 
|  | 2061 |  | 
|  | 2062 | if (newTouchedWindowHandle != nullptr) { | 
|  | 2063 | // Set target flags. | 
|  | 2064 | int32_t targetFlags = InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_DISPATCH_AS_IS; | 
|  | 2065 | if (isSplit) { | 
|  | 2066 | targetFlags |= InputTarget::FLAG_SPLIT; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2067 | } | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2068 | if (isWindowObscuredAtPointLocked(newTouchedWindowHandle, x, y)) { | 
|  | 2069 | targetFlags |= InputTarget::FLAG_WINDOW_IS_OBSCURED; | 
|  | 2070 | } else if (isWindowObscuredLocked(newTouchedWindowHandle)) { | 
|  | 2071 | targetFlags |= InputTarget::FLAG_WINDOW_IS_PARTIALLY_OBSCURED; | 
|  | 2072 | } | 
|  | 2073 |  | 
|  | 2074 | // Update hover state. | 
| Garfield Tan | df26e86 | 2020-07-01 20:18:19 -0700 | [diff] [blame] | 2075 | if (maskedAction == AMOTION_EVENT_ACTION_HOVER_EXIT) { | 
|  | 2076 | newHoverWindowHandle = nullptr; | 
|  | 2077 | } else if (isHoverAction) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2078 | newHoverWindowHandle = newTouchedWindowHandle; | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2079 | } | 
|  | 2080 |  | 
|  | 2081 | // Update the temporary touch state. | 
|  | 2082 | BitSet32 pointerIds; | 
|  | 2083 | if (isSplit) { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2084 | uint32_t pointerId = entry.pointerProperties[pointerIndex].id; | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2085 | pointerIds.markBit(pointerId); | 
|  | 2086 | } | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2087 | tempTouchState.addOrUpdateWindow(newTouchedWindowHandle, targetFlags, pointerIds); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2088 | } | 
|  | 2089 |  | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2090 | tempTouchState.addGestureMonitors(newGestureMonitors); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2091 | } else { | 
|  | 2092 | /* Case 2: Pointer move, up, cancel or non-splittable pointer down. */ | 
|  | 2093 |  | 
|  | 2094 | // If the pointer is not currently down, then ignore the event. | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2095 | if (!tempTouchState.down) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 2096 | if (DEBUG_FOCUS) { | 
|  | 2097 | ALOGD("Dropping event because the pointer is not down or we previously " | 
|  | 2098 | "dropped the pointer down event in display %" PRId32, | 
|  | 2099 | displayId); | 
|  | 2100 | } | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 2101 | injectionResult = InputEventInjectionResult::FAILED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2102 | goto Failed; | 
|  | 2103 | } | 
|  | 2104 |  | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 2105 | addDragEventLocked(entry); | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 2106 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2107 | // Check whether touches should slip outside of the current foreground window. | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2108 | if (maskedAction == AMOTION_EVENT_ACTION_MOVE && entry.pointerCount == 1 && | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2109 | tempTouchState.isSlippery()) { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2110 | int32_t x = int32_t(entry.pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X)); | 
|  | 2111 | int32_t y = int32_t(entry.pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2112 |  | 
|  | 2113 | sp<InputWindowHandle> oldTouchedWindowHandle = | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2114 | tempTouchState.getFirstForegroundWindowHandle(); | 
| Garfield Tan | df26e86 | 2020-07-01 20:18:19 -0700 | [diff] [blame] | 2115 | newTouchedWindowHandle = findTouchedWindowAtLocked(displayId, x, y, &tempTouchState); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2116 | if (oldTouchedWindowHandle != newTouchedWindowHandle && | 
|  | 2117 | oldTouchedWindowHandle != nullptr && newTouchedWindowHandle != nullptr) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 2118 | if (DEBUG_FOCUS) { | 
|  | 2119 | ALOGD("Touch is slipping out of window %s into window %s in display %" PRId32, | 
|  | 2120 | oldTouchedWindowHandle->getName().c_str(), | 
|  | 2121 | newTouchedWindowHandle->getName().c_str(), displayId); | 
|  | 2122 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2123 | // Make a slippery exit from the old window. | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2124 | tempTouchState.addOrUpdateWindow(oldTouchedWindowHandle, | 
|  | 2125 | InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT, | 
|  | 2126 | BitSet32(0)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2127 |  | 
|  | 2128 | // Make a slippery entrance into the new window. | 
|  | 2129 | if (newTouchedWindowHandle->getInfo()->supportsSplitTouch()) { | 
|  | 2130 | isSplit = true; | 
|  | 2131 | } | 
|  | 2132 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2133 | int32_t targetFlags = | 
|  | 2134 | InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2135 | if (isSplit) { | 
|  | 2136 | targetFlags |= InputTarget::FLAG_SPLIT; | 
|  | 2137 | } | 
|  | 2138 | if (isWindowObscuredAtPointLocked(newTouchedWindowHandle, x, y)) { | 
|  | 2139 | targetFlags |= InputTarget::FLAG_WINDOW_IS_OBSCURED; | 
| Siarhei Vishniakou | 870ecec | 2020-12-09 08:07:46 -1000 | [diff] [blame] | 2140 | } else if (isWindowObscuredLocked(newTouchedWindowHandle)) { | 
|  | 2141 | targetFlags |= InputTarget::FLAG_WINDOW_IS_PARTIALLY_OBSCURED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2142 | } | 
|  | 2143 |  | 
|  | 2144 | BitSet32 pointerIds; | 
|  | 2145 | if (isSplit) { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2146 | pointerIds.markBit(entry.pointerProperties[0].id); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2147 | } | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2148 | tempTouchState.addOrUpdateWindow(newTouchedWindowHandle, targetFlags, pointerIds); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2149 | } | 
|  | 2150 | } | 
|  | 2151 | } | 
|  | 2152 |  | 
|  | 2153 | if (newHoverWindowHandle != mLastHoverWindowHandle) { | 
| Garfield Tan | df26e86 | 2020-07-01 20:18:19 -0700 | [diff] [blame] | 2154 | // Let the previous window know that the hover sequence is over, unless we already did it | 
|  | 2155 | // when dispatching it as is to newTouchedWindowHandle. | 
|  | 2156 | if (mLastHoverWindowHandle != nullptr && | 
|  | 2157 | (maskedAction != AMOTION_EVENT_ACTION_HOVER_EXIT || | 
|  | 2158 | mLastHoverWindowHandle != newTouchedWindowHandle)) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2159 | #if DEBUG_HOVER | 
|  | 2160 | ALOGD("Sending hover exit event to window %s.", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2161 | mLastHoverWindowHandle->getName().c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2162 | #endif | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2163 | tempTouchState.addOrUpdateWindow(mLastHoverWindowHandle, | 
|  | 2164 | InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT, BitSet32(0)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2165 | } | 
|  | 2166 |  | 
| Garfield Tan | df26e86 | 2020-07-01 20:18:19 -0700 | [diff] [blame] | 2167 | // Let the new window know that the hover sequence is starting, unless we already did it | 
|  | 2168 | // when dispatching it as is to newTouchedWindowHandle. | 
|  | 2169 | if (newHoverWindowHandle != nullptr && | 
|  | 2170 | (maskedAction != AMOTION_EVENT_ACTION_HOVER_ENTER || | 
|  | 2171 | newHoverWindowHandle != newTouchedWindowHandle)) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2172 | #if DEBUG_HOVER | 
|  | 2173 | ALOGD("Sending hover enter event to window %s.", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2174 | newHoverWindowHandle->getName().c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2175 | #endif | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2176 | tempTouchState.addOrUpdateWindow(newHoverWindowHandle, | 
|  | 2177 | InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER, | 
|  | 2178 | BitSet32(0)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2179 | } | 
|  | 2180 | } | 
|  | 2181 |  | 
|  | 2182 | // Check permission to inject into all touched foreground windows and ensure there | 
|  | 2183 | // is at least one touched foreground window. | 
|  | 2184 | { | 
|  | 2185 | bool haveForegroundWindow = false; | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2186 | for (const TouchedWindow& touchedWindow : tempTouchState.windows) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2187 | if (touchedWindow.targetFlags & InputTarget::FLAG_FOREGROUND) { | 
|  | 2188 | haveForegroundWindow = true; | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2189 | if (!checkInjectionPermission(touchedWindow.windowHandle, entry.injectionState)) { | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 2190 | injectionResult = InputEventInjectionResult::PERMISSION_DENIED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2191 | injectionPermission = INJECTION_PERMISSION_DENIED; | 
|  | 2192 | goto Failed; | 
|  | 2193 | } | 
|  | 2194 | } | 
|  | 2195 | } | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2196 | bool hasGestureMonitor = !tempTouchState.gestureMonitors.empty(); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2197 | if (!haveForegroundWindow && !hasGestureMonitor) { | 
| Siarhei Vishniakou | f0007dd | 2020-04-13 11:40:37 -0700 | [diff] [blame] | 2198 | ALOGI("Dropping event because there is no touched foreground window in display " | 
|  | 2199 | "%" PRId32 " or gesture monitor to receive it.", | 
|  | 2200 | displayId); | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 2201 | injectionResult = InputEventInjectionResult::FAILED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2202 | goto Failed; | 
|  | 2203 | } | 
|  | 2204 |  | 
|  | 2205 | // Permission granted to injection into all touched foreground windows. | 
|  | 2206 | injectionPermission = INJECTION_PERMISSION_GRANTED; | 
|  | 2207 | } | 
|  | 2208 |  | 
|  | 2209 | // Check whether windows listening for outside touches are owned by the same UID. If it is | 
|  | 2210 | // set the policy flag that we will not reveal coordinate information to this window. | 
|  | 2211 | if (maskedAction == AMOTION_EVENT_ACTION_DOWN) { | 
|  | 2212 | sp<InputWindowHandle> foregroundWindowHandle = | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2213 | tempTouchState.getFirstForegroundWindowHandle(); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2214 | if (foregroundWindowHandle) { | 
|  | 2215 | const int32_t foregroundWindowUid = foregroundWindowHandle->getInfo()->ownerUid; | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2216 | for (const TouchedWindow& touchedWindow : tempTouchState.windows) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2217 | if (touchedWindow.targetFlags & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) { | 
|  | 2218 | sp<InputWindowHandle> inputWindowHandle = touchedWindow.windowHandle; | 
|  | 2219 | if (inputWindowHandle->getInfo()->ownerUid != foregroundWindowUid) { | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2220 | tempTouchState.addOrUpdateWindow(inputWindowHandle, | 
|  | 2221 | InputTarget::FLAG_ZERO_COORDS, | 
|  | 2222 | BitSet32(0)); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2223 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2224 | } | 
|  | 2225 | } | 
|  | 2226 | } | 
|  | 2227 | } | 
|  | 2228 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2229 | // If this is the first pointer going down and the touched window has a wallpaper | 
|  | 2230 | // then also add the touched wallpaper windows so they are locked in for the duration | 
|  | 2231 | // of the touch gesture. | 
|  | 2232 | // We do not collect wallpapers during HOVER_MOVE or SCROLL because the wallpaper | 
|  | 2233 | // engine only supports touch events.  We would need to add a mechanism similar | 
|  | 2234 | // to View.onGenericMotionEvent to enable wallpapers to handle these events. | 
|  | 2235 | if (maskedAction == AMOTION_EVENT_ACTION_DOWN) { | 
|  | 2236 | sp<InputWindowHandle> foregroundWindowHandle = | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2237 | tempTouchState.getFirstForegroundWindowHandle(); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2238 | if (foregroundWindowHandle && foregroundWindowHandle->getInfo()->hasWallpaper) { | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 2239 | const std::vector<sp<InputWindowHandle>>& windowHandles = | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 2240 | getWindowHandlesLocked(displayId); | 
|  | 2241 | for (const sp<InputWindowHandle>& windowHandle : windowHandles) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2242 | const InputWindowInfo* info = windowHandle->getInfo(); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2243 | if (info->displayId == displayId && | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 2244 | windowHandle->getInfo()->type == InputWindowInfo::Type::WALLPAPER) { | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2245 | tempTouchState | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2246 | .addOrUpdateWindow(windowHandle, | 
|  | 2247 | InputTarget::FLAG_WINDOW_IS_OBSCURED | | 
|  | 2248 | InputTarget:: | 
|  | 2249 | FLAG_WINDOW_IS_PARTIALLY_OBSCURED | | 
|  | 2250 | InputTarget::FLAG_DISPATCH_AS_IS, | 
|  | 2251 | BitSet32(0)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2252 | } | 
|  | 2253 | } | 
|  | 2254 | } | 
|  | 2255 | } | 
|  | 2256 |  | 
|  | 2257 | // Success!  Output targets. | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 2258 | injectionResult = InputEventInjectionResult::SUCCEEDED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2259 |  | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2260 | for (const TouchedWindow& touchedWindow : tempTouchState.windows) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2261 | addWindowTargetLocked(touchedWindow.windowHandle, touchedWindow.targetFlags, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2262 | touchedWindow.pointerIds, inputTargets); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2263 | } | 
|  | 2264 |  | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2265 | for (const TouchedMonitor& touchedMonitor : tempTouchState.gestureMonitors) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2266 | addMonitoringTargetLocked(touchedMonitor.monitor, touchedMonitor.xOffset, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2267 | touchedMonitor.yOffset, inputTargets); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2268 | } | 
|  | 2269 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2270 | // Drop the outside or hover touch windows since we will not care about them | 
|  | 2271 | // in the next iteration. | 
| Siarhei Vishniakou | 33eceeb | 2020-03-24 19:50:03 -0700 | [diff] [blame] | 2272 | tempTouchState.filterNonAsIsTouchWindows(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2273 |  | 
|  | 2274 | Failed: | 
|  | 2275 | // Check injection permission once and for all. | 
|  | 2276 | if (injectionPermission == INJECTION_PERMISSION_UNKNOWN) { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2277 | if (checkInjectionPermission(nullptr, entry.injectionState)) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2278 | injectionPermission = INJECTION_PERMISSION_GRANTED; | 
|  | 2279 | } else { | 
|  | 2280 | injectionPermission = INJECTION_PERMISSION_DENIED; | 
|  | 2281 | } | 
|  | 2282 | } | 
|  | 2283 |  | 
| Siarhei Vishniakou | 767917f | 2020-03-24 20:49:09 -0700 | [diff] [blame] | 2284 | if (injectionPermission != INJECTION_PERMISSION_GRANTED) { | 
|  | 2285 | return injectionResult; | 
|  | 2286 | } | 
|  | 2287 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2288 | // Update final pieces of touch state if the injector had permission. | 
| Siarhei Vishniakou | 767917f | 2020-03-24 20:49:09 -0700 | [diff] [blame] | 2289 | if (!wrongDevice) { | 
|  | 2290 | if (switchedDevice) { | 
|  | 2291 | if (DEBUG_FOCUS) { | 
|  | 2292 | ALOGD("Conflicting pointer actions: Switched to a different device."); | 
|  | 2293 | } | 
|  | 2294 | *outConflictingPointerActions = true; | 
|  | 2295 | } | 
|  | 2296 |  | 
|  | 2297 | if (isHoverAction) { | 
|  | 2298 | // Started hovering, therefore no longer down. | 
|  | 2299 | if (oldState && oldState->down) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 2300 | if (DEBUG_FOCUS) { | 
| Siarhei Vishniakou | 767917f | 2020-03-24 20:49:09 -0700 | [diff] [blame] | 2301 | ALOGD("Conflicting pointer actions: Hover received while pointer was " | 
|  | 2302 | "down."); | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 2303 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2304 | *outConflictingPointerActions = true; | 
|  | 2305 | } | 
| Siarhei Vishniakou | 767917f | 2020-03-24 20:49:09 -0700 | [diff] [blame] | 2306 | tempTouchState.reset(); | 
|  | 2307 | if (maskedAction == AMOTION_EVENT_ACTION_HOVER_ENTER || | 
|  | 2308 | maskedAction == AMOTION_EVENT_ACTION_HOVER_MOVE) { | 
|  | 2309 | tempTouchState.deviceId = entry.deviceId; | 
|  | 2310 | tempTouchState.source = entry.source; | 
|  | 2311 | tempTouchState.displayId = displayId; | 
|  | 2312 | } | 
|  | 2313 | } else if (maskedAction == AMOTION_EVENT_ACTION_UP || | 
|  | 2314 | maskedAction == AMOTION_EVENT_ACTION_CANCEL) { | 
|  | 2315 | // All pointers up or canceled. | 
|  | 2316 | tempTouchState.reset(); | 
|  | 2317 | } else if (maskedAction == AMOTION_EVENT_ACTION_DOWN) { | 
|  | 2318 | // First pointer went down. | 
|  | 2319 | if (oldState && oldState->down) { | 
|  | 2320 | if (DEBUG_FOCUS) { | 
|  | 2321 | ALOGD("Conflicting pointer actions: Down received while already down."); | 
|  | 2322 | } | 
|  | 2323 | *outConflictingPointerActions = true; | 
|  | 2324 | } | 
|  | 2325 | } else if (maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) { | 
|  | 2326 | // One pointer went up. | 
|  | 2327 | if (isSplit) { | 
|  | 2328 | int32_t pointerIndex = getMotionEventActionPointerIndex(action); | 
|  | 2329 | uint32_t pointerId = entry.pointerProperties[pointerIndex].id; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2330 |  | 
| Siarhei Vishniakou | 767917f | 2020-03-24 20:49:09 -0700 | [diff] [blame] | 2331 | for (size_t i = 0; i < tempTouchState.windows.size();) { | 
|  | 2332 | TouchedWindow& touchedWindow = tempTouchState.windows[i]; | 
|  | 2333 | if (touchedWindow.targetFlags & InputTarget::FLAG_SPLIT) { | 
|  | 2334 | touchedWindow.pointerIds.clearBit(pointerId); | 
|  | 2335 | if (touchedWindow.pointerIds.isEmpty()) { | 
|  | 2336 | tempTouchState.windows.erase(tempTouchState.windows.begin() + i); | 
|  | 2337 | continue; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2338 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2339 | } | 
| Siarhei Vishniakou | 767917f | 2020-03-24 20:49:09 -0700 | [diff] [blame] | 2340 | i += 1; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2341 | } | 
| Jeff Brown | f086ddb | 2014-02-11 14:28:48 -0800 | [diff] [blame] | 2342 | } | 
| Siarhei Vishniakou | 767917f | 2020-03-24 20:49:09 -0700 | [diff] [blame] | 2343 | } | 
| Jeff Brown | f086ddb | 2014-02-11 14:28:48 -0800 | [diff] [blame] | 2344 |  | 
| Siarhei Vishniakou | 767917f | 2020-03-24 20:49:09 -0700 | [diff] [blame] | 2345 | // Save changes unless the action was scroll in which case the temporary touch | 
|  | 2346 | // state was only valid for this one action. | 
|  | 2347 | if (maskedAction != AMOTION_EVENT_ACTION_SCROLL) { | 
|  | 2348 | if (tempTouchState.displayId >= 0) { | 
|  | 2349 | mTouchStatesByDisplay[displayId] = tempTouchState; | 
|  | 2350 | } else { | 
|  | 2351 | mTouchStatesByDisplay.erase(displayId); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2352 | } | 
| Siarhei Vishniakou | 767917f | 2020-03-24 20:49:09 -0700 | [diff] [blame] | 2353 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2354 |  | 
| Siarhei Vishniakou | 767917f | 2020-03-24 20:49:09 -0700 | [diff] [blame] | 2355 | // Update hover state. | 
|  | 2356 | mLastHoverWindowHandle = newHoverWindowHandle; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2357 | } | 
|  | 2358 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2359 | return injectionResult; | 
|  | 2360 | } | 
|  | 2361 |  | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 2362 | void InputDispatcher::finishDragAndDrop(int32_t displayId, float x, float y) { | 
|  | 2363 | const sp<InputWindowHandle> dropWindow = | 
|  | 2364 | findTouchedWindowAtLocked(displayId, x, y, nullptr /*touchState*/, | 
|  | 2365 | false /*addOutsideTargets*/, false /*addPortalWindows*/, | 
|  | 2366 | true /*ignoreDragWindow*/); | 
|  | 2367 | if (dropWindow) { | 
|  | 2368 | vec2 local = dropWindow->getInfo()->transform.transform(x, y); | 
|  | 2369 | notifyDropWindowLocked(dropWindow->getToken(), local.x, local.y); | 
| Arthur Hung | 6d0571e | 2021-04-09 20:18:16 +0800 | [diff] [blame] | 2370 | } else { | 
|  | 2371 | notifyDropWindowLocked(nullptr, 0, 0); | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 2372 | } | 
|  | 2373 | mDragState.reset(); | 
|  | 2374 | } | 
|  | 2375 |  | 
|  | 2376 | void InputDispatcher::addDragEventLocked(const MotionEntry& entry) { | 
|  | 2377 | if (entry.pointerCount != 1 || !mDragState) { | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 2378 | return; | 
|  | 2379 | } | 
|  | 2380 |  | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 2381 | if (!mDragState->isStartDrag) { | 
|  | 2382 | mDragState->isStartDrag = true; | 
|  | 2383 | mDragState->isStylusButtonDownAtStart = | 
|  | 2384 | (entry.buttonState & AMOTION_EVENT_BUTTON_STYLUS_PRIMARY) != 0; | 
|  | 2385 | } | 
|  | 2386 |  | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 2387 | int32_t maskedAction = entry.action & AMOTION_EVENT_ACTION_MASK; | 
|  | 2388 | int32_t x = static_cast<int32_t>(entry.pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X)); | 
|  | 2389 | int32_t y = static_cast<int32_t>(entry.pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y)); | 
|  | 2390 | if (maskedAction == AMOTION_EVENT_ACTION_MOVE) { | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 2391 | // Handle the special case : stylus button no longer pressed. | 
|  | 2392 | bool isStylusButtonDown = (entry.buttonState & AMOTION_EVENT_BUTTON_STYLUS_PRIMARY) != 0; | 
|  | 2393 | if (mDragState->isStylusButtonDownAtStart && !isStylusButtonDown) { | 
|  | 2394 | finishDragAndDrop(entry.displayId, x, y); | 
|  | 2395 | return; | 
|  | 2396 | } | 
|  | 2397 |  | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 2398 | const sp<InputWindowHandle> hoverWindowHandle = | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 2399 | findTouchedWindowAtLocked(entry.displayId, x, y, nullptr /*touchState*/, | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 2400 | false /*addOutsideTargets*/, false /*addPortalWindows*/, | 
|  | 2401 | true /*ignoreDragWindow*/); | 
|  | 2402 | // enqueue drag exit if needed. | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 2403 | if (hoverWindowHandle != mDragState->dragHoverWindowHandle && | 
|  | 2404 | !haveSameToken(hoverWindowHandle, mDragState->dragHoverWindowHandle)) { | 
|  | 2405 | if (mDragState->dragHoverWindowHandle != nullptr) { | 
|  | 2406 | enqueueDragEventLocked(mDragState->dragHoverWindowHandle, true /*isExiting*/, | 
|  | 2407 | entry); | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 2408 | } | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 2409 | mDragState->dragHoverWindowHandle = hoverWindowHandle; | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 2410 | } | 
|  | 2411 | // enqueue drag location if needed. | 
|  | 2412 | if (hoverWindowHandle != nullptr) { | 
|  | 2413 | enqueueDragEventLocked(hoverWindowHandle, false /*isExiting*/, entry); | 
|  | 2414 | } | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 2415 | } else if (maskedAction == AMOTION_EVENT_ACTION_UP) { | 
|  | 2416 | finishDragAndDrop(entry.displayId, x, y); | 
|  | 2417 | } else if (maskedAction == AMOTION_EVENT_ACTION_CANCEL) { | 
| Arthur Hung | 6d0571e | 2021-04-09 20:18:16 +0800 | [diff] [blame] | 2418 | notifyDropWindowLocked(nullptr, 0, 0); | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 2419 | mDragState.reset(); | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 2420 | } | 
|  | 2421 | } | 
|  | 2422 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2423 | void InputDispatcher::addWindowTargetLocked(const sp<InputWindowHandle>& windowHandle, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2424 | int32_t targetFlags, BitSet32 pointerIds, | 
|  | 2425 | std::vector<InputTarget>& inputTargets) { | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 2426 | std::vector<InputTarget>::iterator it = | 
|  | 2427 | std::find_if(inputTargets.begin(), inputTargets.end(), | 
|  | 2428 | [&windowHandle](const InputTarget& inputTarget) { | 
|  | 2429 | return inputTarget.inputChannel->getConnectionToken() == | 
|  | 2430 | windowHandle->getToken(); | 
|  | 2431 | }); | 
| Chavi Weingarten | 97b8eec | 2020-01-09 18:09:08 +0000 | [diff] [blame] | 2432 |  | 
| Chavi Weingarten | 114b77f | 2020-01-15 22:35:10 +0000 | [diff] [blame] | 2433 | const InputWindowInfo* windowInfo = windowHandle->getInfo(); | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 2434 |  | 
|  | 2435 | if (it == inputTargets.end()) { | 
|  | 2436 | InputTarget inputTarget; | 
| Siarhei Vishniakou | ce5ab08 | 2020-07-09 17:03:21 -0500 | [diff] [blame] | 2437 | std::shared_ptr<InputChannel> inputChannel = | 
|  | 2438 | getInputChannelLocked(windowHandle->getToken()); | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 2439 | if (inputChannel == nullptr) { | 
|  | 2440 | ALOGW("Window %s already unregistered input channel", windowHandle->getName().c_str()); | 
|  | 2441 | return; | 
|  | 2442 | } | 
|  | 2443 | inputTarget.inputChannel = inputChannel; | 
|  | 2444 | inputTarget.flags = targetFlags; | 
|  | 2445 | inputTarget.globalScaleFactor = windowInfo->globalScaleFactor; | 
| Evan Rosky | 84f07f0 | 2021-04-16 10:42:42 -0700 | [diff] [blame] | 2446 | inputTarget.displaySize = | 
| Evan Rosky | 44edce9 | 2021-05-14 18:09:55 -0700 | [diff] [blame] | 2447 | int2(windowHandle->getInfo()->displayWidth, windowHandle->getInfo()->displayHeight); | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 2448 | inputTargets.push_back(inputTarget); | 
|  | 2449 | it = inputTargets.end() - 1; | 
|  | 2450 | } | 
|  | 2451 |  | 
|  | 2452 | ALOG_ASSERT(it->flags == targetFlags); | 
|  | 2453 | ALOG_ASSERT(it->globalScaleFactor == windowInfo->globalScaleFactor); | 
|  | 2454 |  | 
| chaviw | 1ff3d1e | 2020-07-01 15:53:47 -0700 | [diff] [blame] | 2455 | it->addPointers(pointerIds, windowInfo->transform); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2456 | } | 
|  | 2457 |  | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2458 | void InputDispatcher::addGlobalMonitoringTargetsLocked(std::vector<InputTarget>& inputTargets, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2459 | int32_t displayId, float xOffset, | 
|  | 2460 | float yOffset) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2461 | std::unordered_map<int32_t, std::vector<Monitor>>::const_iterator it = | 
|  | 2462 | mGlobalMonitorsByDisplay.find(displayId); | 
|  | 2463 |  | 
|  | 2464 | if (it != mGlobalMonitorsByDisplay.end()) { | 
|  | 2465 | const std::vector<Monitor>& monitors = it->second; | 
|  | 2466 | for (const Monitor& monitor : monitors) { | 
|  | 2467 | addMonitoringTargetLocked(monitor, xOffset, yOffset, inputTargets); | 
| Arthur Hung | 2fbf37f | 2018-09-13 18:16:41 +0800 | [diff] [blame] | 2468 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2469 | } | 
|  | 2470 | } | 
|  | 2471 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2472 | void InputDispatcher::addMonitoringTargetLocked(const Monitor& monitor, float xOffset, | 
|  | 2473 | float yOffset, | 
|  | 2474 | std::vector<InputTarget>& inputTargets) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2475 | InputTarget target; | 
|  | 2476 | target.inputChannel = monitor.inputChannel; | 
|  | 2477 | target.flags = InputTarget::FLAG_DISPATCH_AS_IS; | 
| chaviw | 1ff3d1e | 2020-07-01 15:53:47 -0700 | [diff] [blame] | 2478 | ui::Transform t; | 
|  | 2479 | t.set(xOffset, yOffset); | 
|  | 2480 | target.setDefaultPointerTransform(t); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2481 | inputTargets.push_back(target); | 
|  | 2482 | } | 
|  | 2483 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2484 | bool InputDispatcher::checkInjectionPermission(const sp<InputWindowHandle>& windowHandle, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2485 | const InjectionState* injectionState) { | 
|  | 2486 | if (injectionState && | 
|  | 2487 | (windowHandle == nullptr || | 
|  | 2488 | windowHandle->getInfo()->ownerUid != injectionState->injectorUid) && | 
|  | 2489 | !hasInjectionPermission(injectionState->injectorPid, injectionState->injectorUid)) { | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 2490 | if (windowHandle != nullptr) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2491 | ALOGW("Permission denied: injecting event from pid %d uid %d to window %s " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2492 | "owned by uid %d", | 
|  | 2493 | injectionState->injectorPid, injectionState->injectorUid, | 
|  | 2494 | windowHandle->getName().c_str(), windowHandle->getInfo()->ownerUid); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2495 | } else { | 
|  | 2496 | ALOGW("Permission denied: injecting event from pid %d uid %d", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2497 | injectionState->injectorPid, injectionState->injectorUid); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2498 | } | 
|  | 2499 | return false; | 
|  | 2500 | } | 
|  | 2501 | return true; | 
|  | 2502 | } | 
|  | 2503 |  | 
| Robert Carr | c9bf1d3 | 2020-04-13 17:21:08 -0700 | [diff] [blame] | 2504 | /** | 
|  | 2505 | * Indicate whether one window handle should be considered as obscuring | 
|  | 2506 | * another window handle. We only check a few preconditions. Actually | 
|  | 2507 | * checking the bounds is left to the caller. | 
|  | 2508 | */ | 
|  | 2509 | static bool canBeObscuredBy(const sp<InputWindowHandle>& windowHandle, | 
|  | 2510 | const sp<InputWindowHandle>& otherHandle) { | 
|  | 2511 | // Compare by token so cloned layers aren't counted | 
|  | 2512 | if (haveSameToken(windowHandle, otherHandle)) { | 
|  | 2513 | return false; | 
|  | 2514 | } | 
|  | 2515 | auto info = windowHandle->getInfo(); | 
|  | 2516 | auto otherInfo = otherHandle->getInfo(); | 
|  | 2517 | if (!otherInfo->visible) { | 
|  | 2518 | return false; | 
| Bernardo Rufino | 653d2e0 | 2020-10-20 17:32:40 +0000 | [diff] [blame] | 2519 | } else if (otherInfo->alpha == 0 && | 
|  | 2520 | otherInfo->flags.test(InputWindowInfo::Flag::NOT_TOUCHABLE)) { | 
|  | 2521 | // Those act as if they were invisible, so we don't need to flag them. | 
|  | 2522 | // We do want to potentially flag touchable windows even if they have 0 | 
|  | 2523 | // opacity, since they can consume touches and alter the effects of the | 
|  | 2524 | // user interaction (eg. apps that rely on | 
|  | 2525 | // FLAG_WINDOW_IS_PARTIALLY_OBSCURED should still be told about those | 
|  | 2526 | // windows), hence we also check for FLAG_NOT_TOUCHABLE. | 
|  | 2527 | return false; | 
| Bernardo Rufino | 8007daf | 2020-09-22 09:40:01 +0000 | [diff] [blame] | 2528 | } else if (info->ownerUid == otherInfo->ownerUid) { | 
|  | 2529 | // If ownerUid is the same we don't generate occlusion events as there | 
|  | 2530 | // is no security boundary within an uid. | 
| Robert Carr | c9bf1d3 | 2020-04-13 17:21:08 -0700 | [diff] [blame] | 2531 | return false; | 
| Chris Ye | fcdff3e | 2020-05-10 15:16:04 -0700 | [diff] [blame] | 2532 | } else if (otherInfo->trustedOverlay) { | 
| Robert Carr | c9bf1d3 | 2020-04-13 17:21:08 -0700 | [diff] [blame] | 2533 | return false; | 
|  | 2534 | } else if (otherInfo->displayId != info->displayId) { | 
|  | 2535 | return false; | 
|  | 2536 | } | 
|  | 2537 | return true; | 
|  | 2538 | } | 
|  | 2539 |  | 
| Bernardo Rufino | ea97d18 | 2020-08-19 14:43:14 +0100 | [diff] [blame] | 2540 | /** | 
|  | 2541 | * Returns touch occlusion information in the form of TouchOcclusionInfo. To check if the touch is | 
|  | 2542 | * untrusted, one should check: | 
|  | 2543 | * | 
|  | 2544 | * 1. If result.hasBlockingOcclusion is true. | 
|  | 2545 | *    If it's, it means the touch should be blocked due to a window with occlusion mode of | 
|  | 2546 | *    BLOCK_UNTRUSTED. | 
|  | 2547 | * | 
|  | 2548 | * 2. If result.obscuringOpacity > mMaximumObscuringOpacityForTouch. | 
|  | 2549 | *    If it is (and 1 is false), then the touch should be blocked because a stack of windows | 
|  | 2550 | *    (possibly only one) with occlusion mode of USE_OPACITY from one UID resulted in a composed | 
|  | 2551 | *    obscuring opacity above the threshold. Note that if there was no window of occlusion mode | 
|  | 2552 | *    USE_OPACITY, result.obscuringOpacity would've been 0 and since | 
|  | 2553 | *    mMaximumObscuringOpacityForTouch >= 0, the condition above would never be true. | 
|  | 2554 | * | 
|  | 2555 | * If neither of those is true, then it means the touch can be allowed. | 
|  | 2556 | */ | 
|  | 2557 | InputDispatcher::TouchOcclusionInfo InputDispatcher::computeTouchOcclusionInfoLocked( | 
|  | 2558 | const sp<InputWindowHandle>& windowHandle, int32_t x, int32_t y) const { | 
| Bernardo Rufino | 4bae0ac | 2020-10-14 18:33:46 +0000 | [diff] [blame] | 2559 | const InputWindowInfo* windowInfo = windowHandle->getInfo(); | 
|  | 2560 | int32_t displayId = windowInfo->displayId; | 
| Bernardo Rufino | ea97d18 | 2020-08-19 14:43:14 +0100 | [diff] [blame] | 2561 | const std::vector<sp<InputWindowHandle>>& windowHandles = getWindowHandlesLocked(displayId); | 
|  | 2562 | TouchOcclusionInfo info; | 
|  | 2563 | info.hasBlockingOcclusion = false; | 
|  | 2564 | info.obscuringOpacity = 0; | 
|  | 2565 | info.obscuringUid = -1; | 
|  | 2566 | std::map<int32_t, float> opacityByUid; | 
|  | 2567 | for (const sp<InputWindowHandle>& otherHandle : windowHandles) { | 
|  | 2568 | if (windowHandle == otherHandle) { | 
|  | 2569 | break; // All future windows are below us. Exit early. | 
|  | 2570 | } | 
|  | 2571 | const InputWindowInfo* otherInfo = otherHandle->getInfo(); | 
| Bernardo Rufino | 1ff9d59 | 2021-01-18 16:58:57 +0000 | [diff] [blame] | 2572 | if (canBeObscuredBy(windowHandle, otherHandle) && otherInfo->frameContainsPoint(x, y) && | 
|  | 2573 | !haveSameApplicationToken(windowInfo, otherInfo)) { | 
| Bernardo Rufino | 4bae0ac | 2020-10-14 18:33:46 +0000 | [diff] [blame] | 2574 | if (DEBUG_TOUCH_OCCLUSION) { | 
|  | 2575 | info.debugInfo.push_back( | 
|  | 2576 | dumpWindowForTouchOcclusion(otherInfo, /* isTouchedWindow */ false)); | 
|  | 2577 | } | 
| Bernardo Rufino | ea97d18 | 2020-08-19 14:43:14 +0100 | [diff] [blame] | 2578 | // canBeObscuredBy() has returned true above, which means this window is untrusted, so | 
|  | 2579 | // we perform the checks below to see if the touch can be propagated or not based on the | 
|  | 2580 | // window's touch occlusion mode | 
|  | 2581 | if (otherInfo->touchOcclusionMode == TouchOcclusionMode::BLOCK_UNTRUSTED) { | 
|  | 2582 | info.hasBlockingOcclusion = true; | 
|  | 2583 | info.obscuringUid = otherInfo->ownerUid; | 
|  | 2584 | info.obscuringPackage = otherInfo->packageName; | 
|  | 2585 | break; | 
|  | 2586 | } | 
|  | 2587 | if (otherInfo->touchOcclusionMode == TouchOcclusionMode::USE_OPACITY) { | 
|  | 2588 | uint32_t uid = otherInfo->ownerUid; | 
|  | 2589 | float opacity = | 
|  | 2590 | (opacityByUid.find(uid) == opacityByUid.end()) ? 0 : opacityByUid[uid]; | 
|  | 2591 | // Given windows A and B: | 
|  | 2592 | // opacity(A, B) = 1 - [1 - opacity(A)] * [1 - opacity(B)] | 
|  | 2593 | opacity = 1 - (1 - opacity) * (1 - otherInfo->alpha); | 
|  | 2594 | opacityByUid[uid] = opacity; | 
|  | 2595 | if (opacity > info.obscuringOpacity) { | 
|  | 2596 | info.obscuringOpacity = opacity; | 
|  | 2597 | info.obscuringUid = uid; | 
|  | 2598 | info.obscuringPackage = otherInfo->packageName; | 
|  | 2599 | } | 
|  | 2600 | } | 
|  | 2601 | } | 
|  | 2602 | } | 
| Bernardo Rufino | 4bae0ac | 2020-10-14 18:33:46 +0000 | [diff] [blame] | 2603 | if (DEBUG_TOUCH_OCCLUSION) { | 
|  | 2604 | info.debugInfo.push_back( | 
|  | 2605 | dumpWindowForTouchOcclusion(windowInfo, /* isTouchedWindow */ true)); | 
|  | 2606 | } | 
| Bernardo Rufino | ea97d18 | 2020-08-19 14:43:14 +0100 | [diff] [blame] | 2607 | return info; | 
|  | 2608 | } | 
|  | 2609 |  | 
| Bernardo Rufino | 4bae0ac | 2020-10-14 18:33:46 +0000 | [diff] [blame] | 2610 | std::string InputDispatcher::dumpWindowForTouchOcclusion(const InputWindowInfo* info, | 
|  | 2611 | bool isTouchedWindow) const { | 
| Bernardo Rufino | 49d99e4 | 2021-01-18 15:16:59 +0000 | [diff] [blame] | 2612 | return StringPrintf(INDENT2 | 
|  | 2613 | "* %stype=%s, package=%s/%" PRId32 ", id=%" PRId32 ", mode=%s, alpha=%.2f, " | 
|  | 2614 | "frame=[%" PRId32 ",%" PRId32 "][%" PRId32 ",%" PRId32 | 
|  | 2615 | "], touchableRegion=%s, window={%s}, flags={%s}, inputFeatures={%s}, " | 
|  | 2616 | "hasToken=%s, applicationInfo.name=%s, applicationInfo.token=%s\n", | 
| Bernardo Rufino | 4bae0ac | 2020-10-14 18:33:46 +0000 | [diff] [blame] | 2617 | (isTouchedWindow) ? "[TOUCHED] " : "", | 
| Bernardo Rufino | 53fc31e | 2020-11-03 11:01:07 +0000 | [diff] [blame] | 2618 | NamedEnum::string(info->type, "%" PRId32).c_str(), | 
| Bernardo Rufino | 0f6a36e | 2020-11-11 10:10:59 +0000 | [diff] [blame] | 2619 | info->packageName.c_str(), info->ownerUid, info->id, | 
| Bernardo Rufino | 53fc31e | 2020-11-03 11:01:07 +0000 | [diff] [blame] | 2620 | toString(info->touchOcclusionMode).c_str(), info->alpha, info->frameLeft, | 
|  | 2621 | info->frameTop, info->frameRight, info->frameBottom, | 
|  | 2622 | dumpRegion(info->touchableRegion).c_str(), info->name.c_str(), | 
| Bernardo Rufino | 49d99e4 | 2021-01-18 15:16:59 +0000 | [diff] [blame] | 2623 | info->flags.string().c_str(), info->inputFeatures.string().c_str(), | 
|  | 2624 | toString(info->token != nullptr), info->applicationInfo.name.c_str(), | 
|  | 2625 | toString(info->applicationInfo.token).c_str()); | 
| Bernardo Rufino | 4bae0ac | 2020-10-14 18:33:46 +0000 | [diff] [blame] | 2626 | } | 
|  | 2627 |  | 
| Bernardo Rufino | ea97d18 | 2020-08-19 14:43:14 +0100 | [diff] [blame] | 2628 | bool InputDispatcher::isTouchTrustedLocked(const TouchOcclusionInfo& occlusionInfo) const { | 
|  | 2629 | if (occlusionInfo.hasBlockingOcclusion) { | 
|  | 2630 | ALOGW("Untrusted touch due to occlusion by %s/%d", occlusionInfo.obscuringPackage.c_str(), | 
|  | 2631 | occlusionInfo.obscuringUid); | 
|  | 2632 | return false; | 
|  | 2633 | } | 
|  | 2634 | if (occlusionInfo.obscuringOpacity > mMaximumObscuringOpacityForTouch) { | 
|  | 2635 | ALOGW("Untrusted touch due to occlusion by %s/%d (obscuring opacity = " | 
|  | 2636 | "%.2f, maximum allowed = %.2f)", | 
|  | 2637 | occlusionInfo.obscuringPackage.c_str(), occlusionInfo.obscuringUid, | 
|  | 2638 | occlusionInfo.obscuringOpacity, mMaximumObscuringOpacityForTouch); | 
|  | 2639 | return false; | 
|  | 2640 | } | 
|  | 2641 | return true; | 
|  | 2642 | } | 
|  | 2643 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2644 | bool InputDispatcher::isWindowObscuredAtPointLocked(const sp<InputWindowHandle>& windowHandle, | 
|  | 2645 | int32_t x, int32_t y) const { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2646 | int32_t displayId = windowHandle->getInfo()->displayId; | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 2647 | const std::vector<sp<InputWindowHandle>>& windowHandles = getWindowHandlesLocked(displayId); | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 2648 | for (const sp<InputWindowHandle>& otherHandle : windowHandles) { | 
| Robert Carr | c9bf1d3 | 2020-04-13 17:21:08 -0700 | [diff] [blame] | 2649 | if (windowHandle == otherHandle) { | 
|  | 2650 | break; // All future windows are below us. Exit early. | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2651 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2652 | const InputWindowInfo* otherInfo = otherHandle->getInfo(); | 
| Robert Carr | c9bf1d3 | 2020-04-13 17:21:08 -0700 | [diff] [blame] | 2653 | if (canBeObscuredBy(windowHandle, otherHandle) && | 
| mincheli | f28cc4e | 2020-03-19 11:18:11 +0800 | [diff] [blame] | 2654 | otherInfo->frameContainsPoint(x, y)) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2655 | return true; | 
|  | 2656 | } | 
|  | 2657 | } | 
|  | 2658 | return false; | 
|  | 2659 | } | 
|  | 2660 |  | 
| Michael Wright | cdcd8f2 | 2016-03-22 16:52:13 -0700 | [diff] [blame] | 2661 | bool InputDispatcher::isWindowObscuredLocked(const sp<InputWindowHandle>& windowHandle) const { | 
|  | 2662 | int32_t displayId = windowHandle->getInfo()->displayId; | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 2663 | const std::vector<sp<InputWindowHandle>>& windowHandles = getWindowHandlesLocked(displayId); | 
| Michael Wright | cdcd8f2 | 2016-03-22 16:52:13 -0700 | [diff] [blame] | 2664 | const InputWindowInfo* windowInfo = windowHandle->getInfo(); | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 2665 | for (const sp<InputWindowHandle>& otherHandle : windowHandles) { | 
| Robert Carr | c9bf1d3 | 2020-04-13 17:21:08 -0700 | [diff] [blame] | 2666 | if (windowHandle == otherHandle) { | 
|  | 2667 | break; // All future windows are below us. Exit early. | 
| Michael Wright | cdcd8f2 | 2016-03-22 16:52:13 -0700 | [diff] [blame] | 2668 | } | 
| Michael Wright | cdcd8f2 | 2016-03-22 16:52:13 -0700 | [diff] [blame] | 2669 | const InputWindowInfo* otherInfo = otherHandle->getInfo(); | 
| Robert Carr | c9bf1d3 | 2020-04-13 17:21:08 -0700 | [diff] [blame] | 2670 | if (canBeObscuredBy(windowHandle, otherHandle) && | 
| mincheli | f28cc4e | 2020-03-19 11:18:11 +0800 | [diff] [blame] | 2671 | otherInfo->overlaps(windowInfo)) { | 
| Michael Wright | cdcd8f2 | 2016-03-22 16:52:13 -0700 | [diff] [blame] | 2672 | return true; | 
|  | 2673 | } | 
|  | 2674 | } | 
|  | 2675 | return false; | 
|  | 2676 | } | 
|  | 2677 |  | 
| Siarhei Vishniakou | 61291d4 | 2019-02-11 18:13:20 -0800 | [diff] [blame] | 2678 | std::string InputDispatcher::getApplicationWindowLabel( | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 2679 | const InputApplicationHandle* applicationHandle, | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2680 | const sp<InputWindowHandle>& windowHandle) { | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 2681 | if (applicationHandle != nullptr) { | 
|  | 2682 | if (windowHandle != nullptr) { | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 2683 | return applicationHandle->getName() + " - " + windowHandle->getName(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2684 | } else { | 
|  | 2685 | return applicationHandle->getName(); | 
|  | 2686 | } | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 2687 | } else if (windowHandle != nullptr) { | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 2688 | return windowHandle->getInfo()->applicationInfo.name + " - " + windowHandle->getName(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2689 | } else { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 2690 | return "<unknown application or window>"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2691 | } | 
|  | 2692 | } | 
|  | 2693 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2694 | void InputDispatcher::pokeUserActivityLocked(const EventEntry& eventEntry) { | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 2695 | if (eventEntry.type == EventEntry::Type::FOCUS || | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 2696 | eventEntry.type == EventEntry::Type::POINTER_CAPTURE_CHANGED || | 
|  | 2697 | eventEntry.type == EventEntry::Type::DRAG) { | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 2698 | // Focus or pointer capture changed events are passed to apps, but do not represent user | 
|  | 2699 | // activity. | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 2700 | return; | 
|  | 2701 | } | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 2702 | int32_t displayId = getTargetDisplayId(eventEntry); | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 2703 | sp<InputWindowHandle> focusedWindowHandle = getFocusedWindowHandleLocked(displayId); | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 2704 | if (focusedWindowHandle != nullptr) { | 
|  | 2705 | const InputWindowInfo* info = focusedWindowHandle->getInfo(); | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 2706 | if (info->inputFeatures.test(InputWindowInfo::Feature::DISABLE_USER_ACTIVITY)) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2707 | #if DEBUG_DISPATCH_CYCLE | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 2708 | ALOGD("Not poking user activity: disabled by window '%s'.", info->name.c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2709 | #endif | 
|  | 2710 | return; | 
|  | 2711 | } | 
|  | 2712 | } | 
|  | 2713 |  | 
|  | 2714 | int32_t eventType = USER_ACTIVITY_EVENT_OTHER; | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2715 | switch (eventEntry.type) { | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 2716 | case EventEntry::Type::MOTION: { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2717 | const MotionEntry& motionEntry = static_cast<const MotionEntry&>(eventEntry); | 
|  | 2718 | if (motionEntry.action == AMOTION_EVENT_ACTION_CANCEL) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2719 | return; | 
|  | 2720 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2721 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2722 | if (MotionEvent::isTouchEvent(motionEntry.source, motionEntry.action)) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2723 | eventType = USER_ACTIVITY_EVENT_TOUCH; | 
|  | 2724 | } | 
|  | 2725 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2726 | } | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 2727 | case EventEntry::Type::KEY: { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2728 | const KeyEntry& keyEntry = static_cast<const KeyEntry&>(eventEntry); | 
|  | 2729 | if (keyEntry.flags & AKEY_EVENT_FLAG_CANCELED) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2730 | return; | 
|  | 2731 | } | 
|  | 2732 | eventType = USER_ACTIVITY_EVENT_BUTTON; | 
|  | 2733 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2734 | } | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 2735 | case EventEntry::Type::FOCUS: | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 2736 | case EventEntry::Type::CONFIGURATION_CHANGED: | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 2737 | case EventEntry::Type::DEVICE_RESET: | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 2738 | case EventEntry::Type::SENSOR: | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 2739 | case EventEntry::Type::POINTER_CAPTURE_CHANGED: | 
|  | 2740 | case EventEntry::Type::DRAG: { | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 2741 | LOG_ALWAYS_FATAL("%s events are not user activity", | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 2742 | NamedEnum::string(eventEntry.type).c_str()); | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 2743 | break; | 
|  | 2744 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2745 | } | 
|  | 2746 |  | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 2747 | std::unique_ptr<CommandEntry> commandEntry = | 
|  | 2748 | std::make_unique<CommandEntry>(&InputDispatcher::doPokeUserActivityLockedInterruptible); | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2749 | commandEntry->eventTime = eventEntry.eventTime; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2750 | commandEntry->userActivityEventType = eventType; | 
| Sean Stout | b4e0a59 | 2021-02-23 07:34:53 -0800 | [diff] [blame] | 2751 | commandEntry->displayId = displayId; | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 2752 | postCommandLocked(std::move(commandEntry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2753 | } | 
|  | 2754 |  | 
|  | 2755 | void InputDispatcher::prepareDispatchCycleLocked(nsecs_t currentTime, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2756 | const sp<Connection>& connection, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 2757 | std::shared_ptr<EventEntry> eventEntry, | 
| Siarhei Vishniakou | 5d6b661 | 2020-01-08 16:03:04 -0800 | [diff] [blame] | 2758 | const InputTarget& inputTarget) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2759 | if (ATRACE_ENABLED()) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2760 | std::string message = | 
| Garfield Tan | ff1f1bb | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 2761 | StringPrintf("prepareDispatchCycleLocked(inputChannel=%s, id=0x%" PRIx32 ")", | 
| Garfield Tan | 6a5a14e | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 2762 | connection->getInputChannelName().c_str(), eventEntry->id); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2763 | ATRACE_NAME(message.c_str()); | 
|  | 2764 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2765 | #if DEBUG_DISPATCH_CYCLE | 
|  | 2766 | ALOGD("channel '%s' ~ prepareDispatchCycle - flags=0x%08x, " | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 2767 | "globalScaleFactor=%f, pointerIds=0x%x %s", | 
|  | 2768 | connection->getInputChannelName().c_str(), inputTarget.flags, | 
|  | 2769 | inputTarget.globalScaleFactor, inputTarget.pointerIds.value, | 
|  | 2770 | inputTarget.getPointerInfoString().c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2771 | #endif | 
|  | 2772 |  | 
|  | 2773 | // Skip this event if the connection status is not normal. | 
|  | 2774 | // We don't want to enqueue additional outbound events if the connection is broken. | 
|  | 2775 | if (connection->status != Connection::STATUS_NORMAL) { | 
|  | 2776 | #if DEBUG_DISPATCH_CYCLE | 
|  | 2777 | ALOGD("channel '%s' ~ Dropping event because the channel status is %s", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2778 | connection->getInputChannelName().c_str(), connection->getStatusLabel()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2779 | #endif | 
|  | 2780 | return; | 
|  | 2781 | } | 
|  | 2782 |  | 
|  | 2783 | // Split a motion event if needed. | 
| Siarhei Vishniakou | 5d6b661 | 2020-01-08 16:03:04 -0800 | [diff] [blame] | 2784 | if (inputTarget.flags & InputTarget::FLAG_SPLIT) { | 
|  | 2785 | LOG_ALWAYS_FATAL_IF(eventEntry->type != EventEntry::Type::MOTION, | 
|  | 2786 | "Entry type %s should not have FLAG_SPLIT", | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 2787 | NamedEnum::string(eventEntry->type).c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2788 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2789 | const MotionEntry& originalMotionEntry = static_cast<const MotionEntry&>(*eventEntry); | 
| Siarhei Vishniakou | 5d6b661 | 2020-01-08 16:03:04 -0800 | [diff] [blame] | 2790 | if (inputTarget.pointerIds.count() != originalMotionEntry.pointerCount) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 2791 | std::unique_ptr<MotionEntry> splitMotionEntry = | 
| Siarhei Vishniakou | 5d6b661 | 2020-01-08 16:03:04 -0800 | [diff] [blame] | 2792 | splitMotionEvent(originalMotionEntry, inputTarget.pointerIds); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2793 | if (!splitMotionEntry) { | 
|  | 2794 | return; // split event was dropped | 
|  | 2795 | } | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 2796 | if (DEBUG_FOCUS) { | 
|  | 2797 | ALOGD("channel '%s' ~ Split motion event.", | 
|  | 2798 | connection->getInputChannelName().c_str()); | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2799 | logOutboundMotionDetails("  ", *splitMotionEntry); | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 2800 | } | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 2801 | enqueueDispatchEntriesLocked(currentTime, connection, std::move(splitMotionEntry), | 
|  | 2802 | inputTarget); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2803 | return; | 
|  | 2804 | } | 
|  | 2805 | } | 
|  | 2806 |  | 
|  | 2807 | // Not splitting.  Enqueue dispatch entries for the event as is. | 
|  | 2808 | enqueueDispatchEntriesLocked(currentTime, connection, eventEntry, inputTarget); | 
|  | 2809 | } | 
|  | 2810 |  | 
|  | 2811 | void InputDispatcher::enqueueDispatchEntriesLocked(nsecs_t currentTime, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2812 | const sp<Connection>& connection, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 2813 | std::shared_ptr<EventEntry> eventEntry, | 
| Siarhei Vishniakou | 5d6b661 | 2020-01-08 16:03:04 -0800 | [diff] [blame] | 2814 | const InputTarget& inputTarget) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2815 | if (ATRACE_ENABLED()) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2816 | std::string message = | 
| Garfield Tan | ff1f1bb | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 2817 | StringPrintf("enqueueDispatchEntriesLocked(inputChannel=%s, id=0x%" PRIx32 ")", | 
| Garfield Tan | 6a5a14e | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 2818 | connection->getInputChannelName().c_str(), eventEntry->id); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2819 | ATRACE_NAME(message.c_str()); | 
|  | 2820 | } | 
|  | 2821 |  | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 2822 | bool wasEmpty = connection->outboundQueue.empty(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2823 |  | 
|  | 2824 | // Enqueue dispatch entries for the requested modes. | 
| chaviw | 8c9cf54 | 2019-03-25 13:02:48 -0700 | [diff] [blame] | 2825 | enqueueDispatchEntryLocked(connection, eventEntry, inputTarget, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2826 | InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT); | 
| chaviw | 8c9cf54 | 2019-03-25 13:02:48 -0700 | [diff] [blame] | 2827 | enqueueDispatchEntryLocked(connection, eventEntry, inputTarget, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2828 | InputTarget::FLAG_DISPATCH_AS_OUTSIDE); | 
| chaviw | 8c9cf54 | 2019-03-25 13:02:48 -0700 | [diff] [blame] | 2829 | enqueueDispatchEntryLocked(connection, eventEntry, inputTarget, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2830 | InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER); | 
| chaviw | 8c9cf54 | 2019-03-25 13:02:48 -0700 | [diff] [blame] | 2831 | enqueueDispatchEntryLocked(connection, eventEntry, inputTarget, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2832 | InputTarget::FLAG_DISPATCH_AS_IS); | 
| chaviw | 8c9cf54 | 2019-03-25 13:02:48 -0700 | [diff] [blame] | 2833 | enqueueDispatchEntryLocked(connection, eventEntry, inputTarget, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2834 | InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT); | 
| chaviw | 8c9cf54 | 2019-03-25 13:02:48 -0700 | [diff] [blame] | 2835 | enqueueDispatchEntryLocked(connection, eventEntry, inputTarget, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2836 | InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2837 |  | 
|  | 2838 | // If the outbound queue was previously empty, start the dispatch cycle going. | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 2839 | if (wasEmpty && !connection->outboundQueue.empty()) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2840 | startDispatchCycleLocked(currentTime, connection); | 
|  | 2841 | } | 
|  | 2842 | } | 
|  | 2843 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2844 | void InputDispatcher::enqueueDispatchEntryLocked(const sp<Connection>& connection, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 2845 | std::shared_ptr<EventEntry> eventEntry, | 
| Siarhei Vishniakou | 5d6b661 | 2020-01-08 16:03:04 -0800 | [diff] [blame] | 2846 | const InputTarget& inputTarget, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2847 | int32_t dispatchMode) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2848 | if (ATRACE_ENABLED()) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2849 | std::string message = StringPrintf("enqueueDispatchEntry(inputChannel=%s, dispatchMode=%s)", | 
|  | 2850 | connection->getInputChannelName().c_str(), | 
|  | 2851 | dispatchModeToString(dispatchMode).c_str()); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 2852 | ATRACE_NAME(message.c_str()); | 
|  | 2853 | } | 
| Siarhei Vishniakou | 5d6b661 | 2020-01-08 16:03:04 -0800 | [diff] [blame] | 2854 | int32_t inputTargetFlags = inputTarget.flags; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2855 | if (!(inputTargetFlags & dispatchMode)) { | 
|  | 2856 | return; | 
|  | 2857 | } | 
|  | 2858 | inputTargetFlags = (inputTargetFlags & ~InputTarget::FLAG_DISPATCH_MASK) | dispatchMode; | 
|  | 2859 |  | 
|  | 2860 | // This is a new event. | 
|  | 2861 | // Enqueue a new dispatch entry onto the outbound queue for this connection. | 
| Siarhei Vishniakou | 5d6b661 | 2020-01-08 16:03:04 -0800 | [diff] [blame] | 2862 | std::unique_ptr<DispatchEntry> dispatchEntry = | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 2863 | createDispatchEntry(inputTarget, eventEntry, inputTargetFlags); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2864 |  | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 2865 | // Use the eventEntry from dispatchEntry since the entry may have changed and can now be a | 
|  | 2866 | // different EventEntry than what was passed in. | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 2867 | EventEntry& newEntry = *(dispatchEntry->eventEntry); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2868 | // Apply target flags and update the connection's input state. | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 2869 | switch (newEntry.type) { | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 2870 | case EventEntry::Type::KEY: { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 2871 | const KeyEntry& keyEntry = static_cast<const KeyEntry&>(newEntry); | 
| Garfield Tan | ff1f1bb | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 2872 | dispatchEntry->resolvedEventId = keyEntry.id; | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2873 | dispatchEntry->resolvedAction = keyEntry.action; | 
|  | 2874 | dispatchEntry->resolvedFlags = keyEntry.flags; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2875 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2876 | if (!connection->inputState.trackKey(keyEntry, dispatchEntry->resolvedAction, | 
|  | 2877 | dispatchEntry->resolvedFlags)) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2878 | #if DEBUG_DISPATCH_CYCLE | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2879 | ALOGD("channel '%s' ~ enqueueDispatchEntryLocked: skipping inconsistent key event", | 
|  | 2880 | connection->getInputChannelName().c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2881 | #endif | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2882 | return; // skip the inconsistent event | 
|  | 2883 | } | 
|  | 2884 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2885 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2886 |  | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 2887 | case EventEntry::Type::MOTION: { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 2888 | const MotionEntry& motionEntry = static_cast<const MotionEntry&>(newEntry); | 
| Garfield Tan | ff1f1bb | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 2889 | // Assign a default value to dispatchEntry that will never be generated by InputReader, | 
|  | 2890 | // and assign a InputDispatcher value if it doesn't change in the if-else chain below. | 
|  | 2891 | constexpr int32_t DEFAULT_RESOLVED_EVENT_ID = | 
|  | 2892 | static_cast<int32_t>(IdGenerator::Source::OTHER); | 
|  | 2893 | dispatchEntry->resolvedEventId = DEFAULT_RESOLVED_EVENT_ID; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2894 | if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) { | 
|  | 2895 | dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_OUTSIDE; | 
|  | 2896 | } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT) { | 
|  | 2897 | dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_EXIT; | 
|  | 2898 | } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER) { | 
|  | 2899 | dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_ENTER; | 
|  | 2900 | } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT) { | 
|  | 2901 | dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_CANCEL; | 
|  | 2902 | } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER) { | 
|  | 2903 | dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_DOWN; | 
|  | 2904 | } else { | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2905 | dispatchEntry->resolvedAction = motionEntry.action; | 
| Garfield Tan | ff1f1bb | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 2906 | dispatchEntry->resolvedEventId = motionEntry.id; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2907 | } | 
|  | 2908 | if (dispatchEntry->resolvedAction == AMOTION_EVENT_ACTION_HOVER_MOVE && | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2909 | !connection->inputState.isHovering(motionEntry.deviceId, motionEntry.source, | 
|  | 2910 | motionEntry.displayId)) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2911 | #if DEBUG_DISPATCH_CYCLE | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2912 | ALOGD("channel '%s' ~ enqueueDispatchEntryLocked: filling in missing hover enter " | 
|  | 2913 | "event", | 
|  | 2914 | connection->getInputChannelName().c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2915 | #endif | 
| Siarhei Vishniakou | f265212 | 2021-03-05 21:39:46 +0000 | [diff] [blame] | 2916 | // We keep the 'resolvedEventId' here equal to the original 'motionEntry.id' because | 
|  | 2917 | // this is a one-to-one event conversion. | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2918 | dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_ENTER; | 
|  | 2919 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2920 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2921 | dispatchEntry->resolvedFlags = motionEntry.flags; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2922 | if (dispatchEntry->targetFlags & InputTarget::FLAG_WINDOW_IS_OBSCURED) { | 
|  | 2923 | dispatchEntry->resolvedFlags |= AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED; | 
|  | 2924 | } | 
|  | 2925 | if (dispatchEntry->targetFlags & InputTarget::FLAG_WINDOW_IS_PARTIALLY_OBSCURED) { | 
|  | 2926 | dispatchEntry->resolvedFlags |= AMOTION_EVENT_FLAG_WINDOW_IS_PARTIALLY_OBSCURED; | 
|  | 2927 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2928 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2929 | if (!connection->inputState.trackMotion(motionEntry, dispatchEntry->resolvedAction, | 
|  | 2930 | dispatchEntry->resolvedFlags)) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2931 | #if DEBUG_DISPATCH_CYCLE | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2932 | ALOGD("channel '%s' ~ enqueueDispatchEntryLocked: skipping inconsistent motion " | 
|  | 2933 | "event", | 
|  | 2934 | connection->getInputChannelName().c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2935 | #endif | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2936 | return; // skip the inconsistent event | 
|  | 2937 | } | 
|  | 2938 |  | 
| Garfield Tan | ff1f1bb | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 2939 | dispatchEntry->resolvedEventId = | 
|  | 2940 | dispatchEntry->resolvedEventId == DEFAULT_RESOLVED_EVENT_ID | 
|  | 2941 | ? mIdGenerator.nextId() | 
|  | 2942 | : motionEntry.id; | 
|  | 2943 | if (ATRACE_ENABLED() && dispatchEntry->resolvedEventId != motionEntry.id) { | 
|  | 2944 | std::string message = StringPrintf("Transmute MotionEvent(id=0x%" PRIx32 | 
|  | 2945 | ") to MotionEvent(id=0x%" PRIx32 ").", | 
|  | 2946 | motionEntry.id, dispatchEntry->resolvedEventId); | 
|  | 2947 | ATRACE_NAME(message.c_str()); | 
|  | 2948 | } | 
|  | 2949 |  | 
| Prabir Pradhan | 47cf0a0 | 2021-03-11 20:30:57 -0800 | [diff] [blame] | 2950 | if ((motionEntry.flags & AMOTION_EVENT_FLAG_NO_FOCUS_CHANGE) && | 
|  | 2951 | (motionEntry.policyFlags & POLICY_FLAG_TRUSTED)) { | 
|  | 2952 | // Skip reporting pointer down outside focus to the policy. | 
|  | 2953 | break; | 
|  | 2954 | } | 
|  | 2955 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 2956 | dispatchPointerDownOutsideFocus(motionEntry.source, dispatchEntry->resolvedAction, | 
| Siarhei Vishniakou | 5d6b661 | 2020-01-08 16:03:04 -0800 | [diff] [blame] | 2957 | inputTarget.inputChannel->getConnectionToken()); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 2958 |  | 
|  | 2959 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2960 | } | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 2961 | case EventEntry::Type::FOCUS: | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 2962 | case EventEntry::Type::POINTER_CAPTURE_CHANGED: | 
|  | 2963 | case EventEntry::Type::DRAG: { | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 2964 | break; | 
|  | 2965 | } | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 2966 | case EventEntry::Type::SENSOR: { | 
|  | 2967 | LOG_ALWAYS_FATAL("SENSOR events should not go to apps via input channel"); | 
|  | 2968 | break; | 
|  | 2969 | } | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 2970 | case EventEntry::Type::CONFIGURATION_CHANGED: | 
|  | 2971 | case EventEntry::Type::DEVICE_RESET: { | 
|  | 2972 | LOG_ALWAYS_FATAL("%s events should not go to apps", | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 2973 | NamedEnum::string(newEntry.type).c_str()); | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 2974 | break; | 
|  | 2975 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2976 | } | 
|  | 2977 |  | 
|  | 2978 | // Remember that we are waiting for this dispatch to complete. | 
|  | 2979 | if (dispatchEntry->hasForegroundTarget()) { | 
| Chavi Weingarten | 65f98b8 | 2020-01-16 18:56:50 +0000 | [diff] [blame] | 2980 | incrementPendingForegroundDispatches(newEntry); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 2981 | } | 
|  | 2982 |  | 
|  | 2983 | // Enqueue the dispatch entry. | 
| Siarhei Vishniakou | 5d6b661 | 2020-01-08 16:03:04 -0800 | [diff] [blame] | 2984 | connection->outboundQueue.push_back(dispatchEntry.release()); | 
| Siarhei Vishniakou | 060a727 | 2021-02-03 19:40:10 +0000 | [diff] [blame] | 2985 | traceOutboundQueueLength(*connection); | 
| chaviw | 8c9cf54 | 2019-03-25 13:02:48 -0700 | [diff] [blame] | 2986 | } | 
|  | 2987 |  | 
| Siarhei Vishniakou | 887b7d9 | 2020-06-18 00:43:02 +0000 | [diff] [blame] | 2988 | /** | 
|  | 2989 | * This function is purely for debugging. It helps us understand where the user interaction | 
|  | 2990 | * was taking place. For example, if user is touching launcher, we will see a log that user | 
|  | 2991 | * started interacting with launcher. In that example, the event would go to the wallpaper as well. | 
|  | 2992 | * We will see both launcher and wallpaper in that list. | 
|  | 2993 | * Once the interaction with a particular set of connections starts, no new logs will be printed | 
|  | 2994 | * until the set of interacted connections changes. | 
|  | 2995 | * | 
|  | 2996 | * The following items are skipped, to reduce the logspam: | 
|  | 2997 | * ACTION_OUTSIDE: any windows that are receiving ACTION_OUTSIDE are not logged | 
|  | 2998 | * ACTION_UP: any windows that receive ACTION_UP are not logged (for both keys and motions). | 
|  | 2999 | * This includes situations like the soft BACK button key. When the user releases (lifts up the | 
|  | 3000 | * finger) the back button, then navigation bar will inject KEYCODE_BACK with ACTION_UP. | 
|  | 3001 | * Both of those ACTION_UP events would not be logged | 
| Siarhei Vishniakou | 887b7d9 | 2020-06-18 00:43:02 +0000 | [diff] [blame] | 3002 | */ | 
|  | 3003 | void InputDispatcher::updateInteractionTokensLocked(const EventEntry& entry, | 
|  | 3004 | const std::vector<InputTarget>& targets) { | 
|  | 3005 | // Skip ACTION_UP events, and all events other than keys and motions | 
|  | 3006 | if (entry.type == EventEntry::Type::KEY) { | 
|  | 3007 | const KeyEntry& keyEntry = static_cast<const KeyEntry&>(entry); | 
|  | 3008 | if (keyEntry.action == AKEY_EVENT_ACTION_UP) { | 
|  | 3009 | return; | 
|  | 3010 | } | 
|  | 3011 | } else if (entry.type == EventEntry::Type::MOTION) { | 
|  | 3012 | const MotionEntry& motionEntry = static_cast<const MotionEntry&>(entry); | 
|  | 3013 | if (motionEntry.action == AMOTION_EVENT_ACTION_UP || | 
|  | 3014 | motionEntry.action == AMOTION_EVENT_ACTION_CANCEL) { | 
|  | 3015 | return; | 
|  | 3016 | } | 
|  | 3017 | } else { | 
|  | 3018 | return; // Not a key or a motion | 
|  | 3019 | } | 
|  | 3020 |  | 
| Prabir Pradhan | 6a9a831 | 2021-04-23 11:59:31 -0700 | [diff] [blame] | 3021 | std::unordered_set<sp<IBinder>, StrongPointerHash<IBinder>> newConnectionTokens; | 
| Siarhei Vishniakou | 887b7d9 | 2020-06-18 00:43:02 +0000 | [diff] [blame] | 3022 | std::vector<sp<Connection>> newConnections; | 
|  | 3023 | for (const InputTarget& target : targets) { | 
|  | 3024 | if ((target.flags & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) == | 
|  | 3025 | InputTarget::FLAG_DISPATCH_AS_OUTSIDE) { | 
|  | 3026 | continue; // Skip windows that receive ACTION_OUTSIDE | 
|  | 3027 | } | 
|  | 3028 |  | 
|  | 3029 | sp<IBinder> token = target.inputChannel->getConnectionToken(); | 
|  | 3030 | sp<Connection> connection = getConnectionLocked(token); | 
| Siarhei Vishniakou | d706a28 | 2021-02-13 00:08:48 +0000 | [diff] [blame] | 3031 | if (connection == nullptr) { | 
|  | 3032 | continue; | 
| Siarhei Vishniakou | 887b7d9 | 2020-06-18 00:43:02 +0000 | [diff] [blame] | 3033 | } | 
|  | 3034 | newConnectionTokens.insert(std::move(token)); | 
|  | 3035 | newConnections.emplace_back(connection); | 
|  | 3036 | } | 
|  | 3037 | if (newConnectionTokens == mInteractionConnectionTokens) { | 
|  | 3038 | return; // no change | 
|  | 3039 | } | 
|  | 3040 | mInteractionConnectionTokens = newConnectionTokens; | 
|  | 3041 |  | 
| Siarhei Vishniakou | d706a28 | 2021-02-13 00:08:48 +0000 | [diff] [blame] | 3042 | std::string targetList; | 
| Siarhei Vishniakou | 887b7d9 | 2020-06-18 00:43:02 +0000 | [diff] [blame] | 3043 | for (const sp<Connection>& connection : newConnections) { | 
| Siarhei Vishniakou | d706a28 | 2021-02-13 00:08:48 +0000 | [diff] [blame] | 3044 | targetList += connection->getWindowName() + ", "; | 
| Siarhei Vishniakou | 887b7d9 | 2020-06-18 00:43:02 +0000 | [diff] [blame] | 3045 | } | 
| Siarhei Vishniakou | d706a28 | 2021-02-13 00:08:48 +0000 | [diff] [blame] | 3046 | std::string message = "Interaction with: " + targetList; | 
|  | 3047 | if (targetList.empty()) { | 
| Siarhei Vishniakou | 887b7d9 | 2020-06-18 00:43:02 +0000 | [diff] [blame] | 3048 | message += "<none>"; | 
|  | 3049 | } | 
|  | 3050 | android_log_event_list(LOGTAG_INPUT_INTERACTION) << message << LOG_ID_EVENTS; | 
|  | 3051 | } | 
|  | 3052 |  | 
| chaviw | fd6d351 | 2019-03-25 13:23:49 -0700 | [diff] [blame] | 3053 | void InputDispatcher::dispatchPointerDownOutsideFocus(uint32_t source, int32_t action, | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 3054 | const sp<IBinder>& token) { | 
| chaviw | 8c9cf54 | 2019-03-25 13:02:48 -0700 | [diff] [blame] | 3055 | int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK; | 
| chaviw | fd6d351 | 2019-03-25 13:23:49 -0700 | [diff] [blame] | 3056 | uint32_t maskedSource = source & AINPUT_SOURCE_CLASS_MASK; | 
|  | 3057 | if (maskedSource != AINPUT_SOURCE_CLASS_POINTER || maskedAction != AMOTION_EVENT_ACTION_DOWN) { | 
| chaviw | 8c9cf54 | 2019-03-25 13:02:48 -0700 | [diff] [blame] | 3058 | return; | 
|  | 3059 | } | 
|  | 3060 |  | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 3061 | sp<IBinder> focusedToken = mFocusResolver.getFocusedWindowToken(mFocusedDisplayId); | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 3062 | if (focusedToken == token) { | 
|  | 3063 | // ignore since token is focused | 
| chaviw | 8c9cf54 | 2019-03-25 13:02:48 -0700 | [diff] [blame] | 3064 | return; | 
|  | 3065 | } | 
|  | 3066 |  | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 3067 | std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( | 
|  | 3068 | &InputDispatcher::doOnPointerDownOutsideFocusLockedInterruptible); | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 3069 | commandEntry->newToken = token; | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 3070 | postCommandLocked(std::move(commandEntry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3071 | } | 
|  | 3072 |  | 
|  | 3073 | void InputDispatcher::startDispatchCycleLocked(nsecs_t currentTime, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3074 | const sp<Connection>& connection) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 3075 | if (ATRACE_ENABLED()) { | 
|  | 3076 | std::string message = StringPrintf("startDispatchCycleLocked(inputChannel=%s)", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3077 | connection->getInputChannelName().c_str()); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 3078 | ATRACE_NAME(message.c_str()); | 
|  | 3079 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3080 | #if DEBUG_DISPATCH_CYCLE | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3081 | ALOGD("channel '%s' ~ startDispatchCycle", connection->getInputChannelName().c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3082 | #endif | 
|  | 3083 |  | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 3084 | while (connection->status == Connection::STATUS_NORMAL && !connection->outboundQueue.empty()) { | 
|  | 3085 | DispatchEntry* dispatchEntry = connection->outboundQueue.front(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3086 | dispatchEntry->deliveryTime = currentTime; | 
| Siarhei Vishniakou | 7062295 | 2020-07-30 11:17:23 -0500 | [diff] [blame] | 3087 | const std::chrono::nanoseconds timeout = | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 3088 | getDispatchingTimeoutLocked(connection->inputChannel->getConnectionToken()); | 
| Siarhei Vishniakou | 7062295 | 2020-07-30 11:17:23 -0500 | [diff] [blame] | 3089 | dispatchEntry->timeoutTime = currentTime + timeout.count(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3090 |  | 
|  | 3091 | // Publish the event. | 
|  | 3092 | status_t status; | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3093 | const EventEntry& eventEntry = *(dispatchEntry->eventEntry); | 
|  | 3094 | switch (eventEntry.type) { | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 3095 | case EventEntry::Type::KEY: { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3096 | const KeyEntry& keyEntry = static_cast<const KeyEntry&>(eventEntry); | 
|  | 3097 | std::array<uint8_t, 32> hmac = getSignature(keyEntry, *dispatchEntry); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3098 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3099 | // Publish the key event. | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3100 | status = connection->inputPublisher | 
|  | 3101 | .publishKeyEvent(dispatchEntry->seq, | 
|  | 3102 | dispatchEntry->resolvedEventId, keyEntry.deviceId, | 
|  | 3103 | keyEntry.source, keyEntry.displayId, | 
|  | 3104 | std::move(hmac), dispatchEntry->resolvedAction, | 
|  | 3105 | dispatchEntry->resolvedFlags, keyEntry.keyCode, | 
|  | 3106 | keyEntry.scanCode, keyEntry.metaState, | 
|  | 3107 | keyEntry.repeatCount, keyEntry.downTime, | 
|  | 3108 | keyEntry.eventTime); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3109 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3110 | } | 
|  | 3111 |  | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 3112 | case EventEntry::Type::MOTION: { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3113 | const MotionEntry& motionEntry = static_cast<const MotionEntry&>(eventEntry); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3114 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3115 | PointerCoords scaledCoords[MAX_POINTERS]; | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3116 | const PointerCoords* usingCoords = motionEntry.pointerCoords; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3117 |  | 
| chaviw | 8235709 | 2020-01-28 13:13:06 -0800 | [diff] [blame] | 3118 | // Set the X and Y offset and X and Y scale depending on the input source. | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3119 | if ((motionEntry.source & AINPUT_SOURCE_CLASS_POINTER) && | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3120 | !(dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS)) { | 
|  | 3121 | float globalScaleFactor = dispatchEntry->globalScaleFactor; | 
| chaviw | 8235709 | 2020-01-28 13:13:06 -0800 | [diff] [blame] | 3122 | if (globalScaleFactor != 1.0f) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3123 | for (uint32_t i = 0; i < motionEntry.pointerCount; i++) { | 
|  | 3124 | scaledCoords[i] = motionEntry.pointerCoords[i]; | 
| chaviw | 8235709 | 2020-01-28 13:13:06 -0800 | [diff] [blame] | 3125 | // Don't apply window scale here since we don't want scale to affect raw | 
|  | 3126 | // coordinates. The scale will be sent back to the client and applied | 
|  | 3127 | // later when requesting relative coordinates. | 
|  | 3128 | scaledCoords[i].scale(globalScaleFactor, 1 /* windowXScale */, | 
|  | 3129 | 1 /* windowYScale */); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3130 | } | 
|  | 3131 | usingCoords = scaledCoords; | 
|  | 3132 | } | 
|  | 3133 | } else { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3134 | // We don't want the dispatch target to know. | 
|  | 3135 | if (dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3136 | for (uint32_t i = 0; i < motionEntry.pointerCount; i++) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3137 | scaledCoords[i].clear(); | 
|  | 3138 | } | 
|  | 3139 | usingCoords = scaledCoords; | 
|  | 3140 | } | 
|  | 3141 | } | 
| Edgar Arriaga | c6ae4bb | 2020-04-16 18:46:48 -0700 | [diff] [blame] | 3142 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3143 | std::array<uint8_t, 32> hmac = getSignature(motionEntry, *dispatchEntry); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3144 |  | 
|  | 3145 | // Publish the motion event. | 
|  | 3146 | status = connection->inputPublisher | 
| Garfield Tan | ff1f1bb | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 3147 | .publishMotionEvent(dispatchEntry->seq, | 
|  | 3148 | dispatchEntry->resolvedEventId, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3149 | motionEntry.deviceId, motionEntry.source, | 
|  | 3150 | motionEntry.displayId, std::move(hmac), | 
| Garfield Tan | ff1f1bb | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 3151 | dispatchEntry->resolvedAction, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3152 | motionEntry.actionButton, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3153 | dispatchEntry->resolvedFlags, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3154 | motionEntry.edgeFlags, motionEntry.metaState, | 
|  | 3155 | motionEntry.buttonState, | 
|  | 3156 | motionEntry.classification, | 
| chaviw | 9eaa22c | 2020-07-01 16:21:27 -0700 | [diff] [blame] | 3157 | dispatchEntry->transform, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3158 | motionEntry.xPrecision, motionEntry.yPrecision, | 
|  | 3159 | motionEntry.xCursorPosition, | 
|  | 3160 | motionEntry.yCursorPosition, | 
| Evan Rosky | 84f07f0 | 2021-04-16 10:42:42 -0700 | [diff] [blame] | 3161 | dispatchEntry->displaySize.x, | 
|  | 3162 | dispatchEntry->displaySize.y, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3163 | motionEntry.downTime, motionEntry.eventTime, | 
|  | 3164 | motionEntry.pointerCount, | 
|  | 3165 | motionEntry.pointerProperties, usingCoords); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3166 | break; | 
|  | 3167 | } | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 3168 |  | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 3169 | case EventEntry::Type::FOCUS: { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3170 | const FocusEntry& focusEntry = static_cast<const FocusEntry&>(eventEntry); | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 3171 | status = connection->inputPublisher.publishFocusEvent(dispatchEntry->seq, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3172 | focusEntry.id, | 
|  | 3173 | focusEntry.hasFocus, | 
| Siarhei Vishniakou | f1035d4 | 2019-09-20 16:32:01 +0100 | [diff] [blame] | 3174 | mInTouchMode); | 
|  | 3175 | break; | 
|  | 3176 | } | 
|  | 3177 |  | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 3178 | case EventEntry::Type::POINTER_CAPTURE_CHANGED: { | 
|  | 3179 | const auto& captureEntry = | 
|  | 3180 | static_cast<const PointerCaptureChangedEntry&>(eventEntry); | 
|  | 3181 | status = connection->inputPublisher | 
|  | 3182 | .publishCaptureEvent(dispatchEntry->seq, captureEntry.id, | 
|  | 3183 | captureEntry.pointerCaptureEnabled); | 
|  | 3184 | break; | 
|  | 3185 | } | 
|  | 3186 |  | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 3187 | case EventEntry::Type::DRAG: { | 
|  | 3188 | const DragEntry& dragEntry = static_cast<const DragEntry&>(eventEntry); | 
|  | 3189 | status = connection->inputPublisher.publishDragEvent(dispatchEntry->seq, | 
|  | 3190 | dragEntry.id, dragEntry.x, | 
|  | 3191 | dragEntry.y, | 
|  | 3192 | dragEntry.isExiting); | 
|  | 3193 | break; | 
|  | 3194 | } | 
|  | 3195 |  | 
| Siarhei Vishniakou | 3b37f9a | 2019-11-23 13:42:41 -0800 | [diff] [blame] | 3196 | case EventEntry::Type::CONFIGURATION_CHANGED: | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 3197 | case EventEntry::Type::DEVICE_RESET: | 
|  | 3198 | case EventEntry::Type::SENSOR: { | 
| Siarhei Vishniakou | 3b37f9a | 2019-11-23 13:42:41 -0800 | [diff] [blame] | 3199 | LOG_ALWAYS_FATAL("Should never start dispatch cycles for %s events", | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 3200 | NamedEnum::string(eventEntry.type).c_str()); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3201 | return; | 
| Siarhei Vishniakou | 3b37f9a | 2019-11-23 13:42:41 -0800 | [diff] [blame] | 3202 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3203 | } | 
|  | 3204 |  | 
|  | 3205 | // Check the result. | 
|  | 3206 | if (status) { | 
|  | 3207 | if (status == WOULD_BLOCK) { | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 3208 | if (connection->waitQueue.empty()) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3209 | ALOGE("channel '%s' ~ Could not publish event because the pipe is full. " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3210 | "This is unexpected because the wait queue is empty, so the pipe " | 
|  | 3211 | "should be empty and we shouldn't have any problems writing an " | 
| Siarhei Vishniakou | 09b02ac | 2021-04-14 22:24:04 +0000 | [diff] [blame] | 3212 | "event to it, status=%s(%d)", | 
|  | 3213 | connection->getInputChannelName().c_str(), statusToString(status).c_str(), | 
|  | 3214 | status); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3215 | abortBrokenDispatchCycleLocked(currentTime, connection, true /*notify*/); | 
|  | 3216 | } else { | 
|  | 3217 | // Pipe is full and we are waiting for the app to finish process some events | 
|  | 3218 | // before sending more events to it. | 
|  | 3219 | #if DEBUG_DISPATCH_CYCLE | 
|  | 3220 | ALOGD("channel '%s' ~ Could not publish event because the pipe is full, " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3221 | "waiting for the application to catch up", | 
|  | 3222 | connection->getInputChannelName().c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3223 | #endif | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3224 | } | 
|  | 3225 | } else { | 
|  | 3226 | ALOGE("channel '%s' ~ Could not publish event due to an unexpected error, " | 
| Siarhei Vishniakou | 09b02ac | 2021-04-14 22:24:04 +0000 | [diff] [blame] | 3227 | "status=%s(%d)", | 
|  | 3228 | connection->getInputChannelName().c_str(), statusToString(status).c_str(), | 
|  | 3229 | status); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3230 | abortBrokenDispatchCycleLocked(currentTime, connection, true /*notify*/); | 
|  | 3231 | } | 
|  | 3232 | return; | 
|  | 3233 | } | 
|  | 3234 |  | 
|  | 3235 | // Re-enqueue the event on the wait queue. | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 3236 | connection->outboundQueue.erase(std::remove(connection->outboundQueue.begin(), | 
|  | 3237 | connection->outboundQueue.end(), | 
|  | 3238 | dispatchEntry)); | 
| Siarhei Vishniakou | 060a727 | 2021-02-03 19:40:10 +0000 | [diff] [blame] | 3239 | traceOutboundQueueLength(*connection); | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 3240 | connection->waitQueue.push_back(dispatchEntry); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 3241 | if (connection->responsive) { | 
|  | 3242 | mAnrTracker.insert(dispatchEntry->timeoutTime, | 
|  | 3243 | connection->inputChannel->getConnectionToken()); | 
|  | 3244 | } | 
| Siarhei Vishniakou | 060a727 | 2021-02-03 19:40:10 +0000 | [diff] [blame] | 3245 | traceWaitQueueLength(*connection); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3246 | } | 
|  | 3247 | } | 
|  | 3248 |  | 
| chaviw | 09c8d2d | 2020-08-24 15:48:26 -0700 | [diff] [blame] | 3249 | std::array<uint8_t, 32> InputDispatcher::sign(const VerifiedInputEvent& event) const { | 
|  | 3250 | size_t size; | 
|  | 3251 | switch (event.type) { | 
|  | 3252 | case VerifiedInputEvent::Type::KEY: { | 
|  | 3253 | size = sizeof(VerifiedKeyEvent); | 
|  | 3254 | break; | 
|  | 3255 | } | 
|  | 3256 | case VerifiedInputEvent::Type::MOTION: { | 
|  | 3257 | size = sizeof(VerifiedMotionEvent); | 
|  | 3258 | break; | 
|  | 3259 | } | 
|  | 3260 | } | 
|  | 3261 | const uint8_t* start = reinterpret_cast<const uint8_t*>(&event); | 
|  | 3262 | return mHmacKeyManager.sign(start, size); | 
|  | 3263 | } | 
|  | 3264 |  | 
| Edgar Arriaga | c6ae4bb | 2020-04-16 18:46:48 -0700 | [diff] [blame] | 3265 | const std::array<uint8_t, 32> InputDispatcher::getSignature( | 
|  | 3266 | const MotionEntry& motionEntry, const DispatchEntry& dispatchEntry) const { | 
|  | 3267 | int32_t actionMasked = dispatchEntry.resolvedAction & AMOTION_EVENT_ACTION_MASK; | 
|  | 3268 | if ((actionMasked == AMOTION_EVENT_ACTION_UP) || (actionMasked == AMOTION_EVENT_ACTION_DOWN)) { | 
|  | 3269 | // Only sign events up and down events as the purely move events | 
|  | 3270 | // are tied to their up/down counterparts so signing would be redundant. | 
|  | 3271 | VerifiedMotionEvent verifiedEvent = verifiedMotionEventFromMotionEntry(motionEntry); | 
|  | 3272 | verifiedEvent.actionMasked = actionMasked; | 
|  | 3273 | verifiedEvent.flags = dispatchEntry.resolvedFlags & VERIFIED_MOTION_EVENT_FLAGS; | 
| chaviw | 09c8d2d | 2020-08-24 15:48:26 -0700 | [diff] [blame] | 3274 | return sign(verifiedEvent); | 
| Edgar Arriaga | c6ae4bb | 2020-04-16 18:46:48 -0700 | [diff] [blame] | 3275 | } | 
|  | 3276 | return INVALID_HMAC; | 
|  | 3277 | } | 
|  | 3278 |  | 
|  | 3279 | const std::array<uint8_t, 32> InputDispatcher::getSignature( | 
|  | 3280 | const KeyEntry& keyEntry, const DispatchEntry& dispatchEntry) const { | 
|  | 3281 | VerifiedKeyEvent verifiedEvent = verifiedKeyEventFromKeyEntry(keyEntry); | 
|  | 3282 | verifiedEvent.flags = dispatchEntry.resolvedFlags & VERIFIED_KEY_EVENT_FLAGS; | 
|  | 3283 | verifiedEvent.action = dispatchEntry.resolvedAction; | 
| chaviw | 09c8d2d | 2020-08-24 15:48:26 -0700 | [diff] [blame] | 3284 | return sign(verifiedEvent); | 
| Edgar Arriaga | c6ae4bb | 2020-04-16 18:46:48 -0700 | [diff] [blame] | 3285 | } | 
|  | 3286 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3287 | void InputDispatcher::finishDispatchCycleLocked(nsecs_t currentTime, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3288 | const sp<Connection>& connection, uint32_t seq, | 
| Siarhei Vishniakou | 3531ae7 | 2021-02-02 12:12:27 -1000 | [diff] [blame] | 3289 | bool handled, nsecs_t consumeTime) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3290 | #if DEBUG_DISPATCH_CYCLE | 
|  | 3291 | ALOGD("channel '%s' ~ finishDispatchCycle - seq=%u, handled=%s", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3292 | connection->getInputChannelName().c_str(), seq, toString(handled)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3293 | #endif | 
|  | 3294 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3295 | if (connection->status == Connection::STATUS_BROKEN || | 
|  | 3296 | connection->status == Connection::STATUS_ZOMBIE) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3297 | return; | 
|  | 3298 | } | 
|  | 3299 |  | 
|  | 3300 | // Notify other system components and prepare to start the next dispatch cycle. | 
| Siarhei Vishniakou | 3531ae7 | 2021-02-02 12:12:27 -1000 | [diff] [blame] | 3301 | onDispatchCycleFinishedLocked(currentTime, connection, seq, handled, consumeTime); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3302 | } | 
|  | 3303 |  | 
|  | 3304 | void InputDispatcher::abortBrokenDispatchCycleLocked(nsecs_t currentTime, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3305 | const sp<Connection>& connection, | 
|  | 3306 | bool notify) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3307 | #if DEBUG_DISPATCH_CYCLE | 
|  | 3308 | ALOGD("channel '%s' ~ abortBrokenDispatchCycle - notify=%s", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3309 | connection->getInputChannelName().c_str(), toString(notify)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3310 | #endif | 
|  | 3311 |  | 
|  | 3312 | // Clear the dispatch queues. | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 3313 | drainDispatchQueue(connection->outboundQueue); | 
| Siarhei Vishniakou | 060a727 | 2021-02-03 19:40:10 +0000 | [diff] [blame] | 3314 | traceOutboundQueueLength(*connection); | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 3315 | drainDispatchQueue(connection->waitQueue); | 
| Siarhei Vishniakou | 060a727 | 2021-02-03 19:40:10 +0000 | [diff] [blame] | 3316 | traceWaitQueueLength(*connection); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3317 |  | 
|  | 3318 | // The connection appears to be unrecoverably broken. | 
|  | 3319 | // Ignore already broken or zombie connections. | 
|  | 3320 | if (connection->status == Connection::STATUS_NORMAL) { | 
|  | 3321 | connection->status = Connection::STATUS_BROKEN; | 
|  | 3322 |  | 
|  | 3323 | if (notify) { | 
|  | 3324 | // Notify other system components. | 
|  | 3325 | onDispatchCycleBrokenLocked(currentTime, connection); | 
|  | 3326 | } | 
|  | 3327 | } | 
|  | 3328 | } | 
|  | 3329 |  | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 3330 | void InputDispatcher::drainDispatchQueue(std::deque<DispatchEntry*>& queue) { | 
|  | 3331 | while (!queue.empty()) { | 
|  | 3332 | DispatchEntry* dispatchEntry = queue.front(); | 
|  | 3333 | queue.pop_front(); | 
| Siarhei Vishniakou | 62683e8 | 2019-03-06 17:59:56 -0800 | [diff] [blame] | 3334 | releaseDispatchEntry(dispatchEntry); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3335 | } | 
|  | 3336 | } | 
|  | 3337 |  | 
| Siarhei Vishniakou | 62683e8 | 2019-03-06 17:59:56 -0800 | [diff] [blame] | 3338 | void InputDispatcher::releaseDispatchEntry(DispatchEntry* dispatchEntry) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3339 | if (dispatchEntry->hasForegroundTarget()) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3340 | decrementPendingForegroundDispatches(*(dispatchEntry->eventEntry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3341 | } | 
|  | 3342 | delete dispatchEntry; | 
|  | 3343 | } | 
|  | 3344 |  | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 3345 | int InputDispatcher::handleReceiveCallback(int events, sp<IBinder> connectionToken) { | 
|  | 3346 | std::scoped_lock _l(mLock); | 
|  | 3347 | sp<Connection> connection = getConnectionLocked(connectionToken); | 
|  | 3348 | if (connection == nullptr) { | 
|  | 3349 | ALOGW("Received looper callback for unknown input channel token %p.  events=0x%x", | 
|  | 3350 | connectionToken.get(), events); | 
|  | 3351 | return 0; // remove the callback | 
|  | 3352 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3353 |  | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 3354 | bool notify; | 
|  | 3355 | if (!(events & (ALOOPER_EVENT_ERROR | ALOOPER_EVENT_HANGUP))) { | 
|  | 3356 | if (!(events & ALOOPER_EVENT_INPUT)) { | 
|  | 3357 | ALOGW("channel '%s' ~ Received spurious callback for unhandled poll event.  " | 
|  | 3358 | "events=0x%x", | 
|  | 3359 | connection->getInputChannelName().c_str(), events); | 
|  | 3360 | return 1; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3361 | } | 
|  | 3362 |  | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 3363 | nsecs_t currentTime = now(); | 
|  | 3364 | bool gotOne = false; | 
|  | 3365 | status_t status = OK; | 
|  | 3366 | for (;;) { | 
|  | 3367 | Result<InputPublisher::ConsumerResponse> result = | 
|  | 3368 | connection->inputPublisher.receiveConsumerResponse(); | 
|  | 3369 | if (!result.ok()) { | 
|  | 3370 | status = result.error().code(); | 
|  | 3371 | break; | 
|  | 3372 | } | 
|  | 3373 |  | 
|  | 3374 | if (std::holds_alternative<InputPublisher::Finished>(*result)) { | 
|  | 3375 | const InputPublisher::Finished& finish = | 
|  | 3376 | std::get<InputPublisher::Finished>(*result); | 
|  | 3377 | finishDispatchCycleLocked(currentTime, connection, finish.seq, finish.handled, | 
|  | 3378 | finish.consumeTime); | 
|  | 3379 | } else if (std::holds_alternative<InputPublisher::Timeline>(*result)) { | 
| Siarhei Vishniakou | f265212 | 2021-03-05 21:39:46 +0000 | [diff] [blame] | 3380 | if (shouldReportMetricsForConnection(*connection)) { | 
|  | 3381 | const InputPublisher::Timeline& timeline = | 
|  | 3382 | std::get<InputPublisher::Timeline>(*result); | 
|  | 3383 | mLatencyTracker | 
|  | 3384 | .trackGraphicsLatency(timeline.inputEventId, | 
|  | 3385 | connection->inputChannel->getConnectionToken(), | 
|  | 3386 | std::move(timeline.graphicsTimeline)); | 
|  | 3387 | } | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 3388 | } | 
|  | 3389 | gotOne = true; | 
|  | 3390 | } | 
|  | 3391 | if (gotOne) { | 
|  | 3392 | runCommandsLockedInterruptible(); | 
|  | 3393 | if (status == WOULD_BLOCK) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3394 | return 1; | 
|  | 3395 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3396 | } | 
|  | 3397 |  | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 3398 | notify = status != DEAD_OBJECT || !connection->monitor; | 
|  | 3399 | if (notify) { | 
|  | 3400 | ALOGE("channel '%s' ~ Failed to receive finished signal.  status=%s(%d)", | 
|  | 3401 | connection->getInputChannelName().c_str(), statusToString(status).c_str(), | 
|  | 3402 | status); | 
|  | 3403 | } | 
|  | 3404 | } else { | 
|  | 3405 | // Monitor channels are never explicitly unregistered. | 
|  | 3406 | // We do it automatically when the remote endpoint is closed so don't warn about them. | 
|  | 3407 | const bool stillHaveWindowHandle = | 
|  | 3408 | getWindowHandleLocked(connection->inputChannel->getConnectionToken()) != nullptr; | 
|  | 3409 | notify = !connection->monitor && stillHaveWindowHandle; | 
|  | 3410 | if (notify) { | 
|  | 3411 | ALOGW("channel '%s' ~ Consumer closed input channel or an error occurred.  events=0x%x", | 
|  | 3412 | connection->getInputChannelName().c_str(), events); | 
|  | 3413 | } | 
|  | 3414 | } | 
|  | 3415 |  | 
|  | 3416 | // Remove the channel. | 
|  | 3417 | removeInputChannelLocked(connection->inputChannel->getConnectionToken(), notify); | 
|  | 3418 | return 0; // remove the callback | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3419 | } | 
|  | 3420 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3421 | void InputDispatcher::synthesizeCancelationEventsForAllConnectionsLocked( | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3422 | const CancelationOptions& options) { | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 3423 | for (const auto& [token, connection] : mConnectionsByToken) { | 
| Siarhei Vishniakou | 2e2ea99 | 2020-12-15 02:57:19 +0000 | [diff] [blame] | 3424 | synthesizeCancelationEventsForConnectionLocked(connection, options); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3425 | } | 
|  | 3426 | } | 
|  | 3427 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3428 | void InputDispatcher::synthesizeCancelationEventsForMonitorsLocked( | 
| Michael Wright | fa13dcf | 2015-06-12 13:25:11 +0100 | [diff] [blame] | 3429 | const CancelationOptions& options) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 3430 | synthesizeCancelationEventsForMonitorsLocked(options, mGlobalMonitorsByDisplay); | 
|  | 3431 | synthesizeCancelationEventsForMonitorsLocked(options, mGestureMonitorsByDisplay); | 
|  | 3432 | } | 
|  | 3433 |  | 
|  | 3434 | void InputDispatcher::synthesizeCancelationEventsForMonitorsLocked( | 
|  | 3435 | const CancelationOptions& options, | 
|  | 3436 | std::unordered_map<int32_t, std::vector<Monitor>>& monitorsByDisplay) { | 
|  | 3437 | for (const auto& it : monitorsByDisplay) { | 
|  | 3438 | const std::vector<Monitor>& monitors = it.second; | 
|  | 3439 | for (const Monitor& monitor : monitors) { | 
|  | 3440 | synthesizeCancelationEventsForInputChannelLocked(monitor.inputChannel, options); | 
| Arthur Hung | 2fbf37f | 2018-09-13 18:16:41 +0800 | [diff] [blame] | 3441 | } | 
| Michael Wright | fa13dcf | 2015-06-12 13:25:11 +0100 | [diff] [blame] | 3442 | } | 
|  | 3443 | } | 
|  | 3444 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3445 | void InputDispatcher::synthesizeCancelationEventsForInputChannelLocked( | 
| Siarhei Vishniakou | ce5ab08 | 2020-07-09 17:03:21 -0500 | [diff] [blame] | 3446 | const std::shared_ptr<InputChannel>& channel, const CancelationOptions& options) { | 
| Siarhei Vishniakou | 26d3cfb | 2019-10-15 17:02:32 -0700 | [diff] [blame] | 3447 | sp<Connection> connection = getConnectionLocked(channel->getConnectionToken()); | 
| Siarhei Vishniakou | 146ecfd | 2019-07-29 16:04:31 -0700 | [diff] [blame] | 3448 | if (connection == nullptr) { | 
|  | 3449 | return; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3450 | } | 
| Siarhei Vishniakou | 146ecfd | 2019-07-29 16:04:31 -0700 | [diff] [blame] | 3451 |  | 
|  | 3452 | synthesizeCancelationEventsForConnectionLocked(connection, options); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3453 | } | 
|  | 3454 |  | 
|  | 3455 | void InputDispatcher::synthesizeCancelationEventsForConnectionLocked( | 
|  | 3456 | const sp<Connection>& connection, const CancelationOptions& options) { | 
|  | 3457 | if (connection->status == Connection::STATUS_BROKEN) { | 
|  | 3458 | return; | 
|  | 3459 | } | 
|  | 3460 |  | 
|  | 3461 | nsecs_t currentTime = now(); | 
|  | 3462 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3463 | std::vector<std::unique_ptr<EventEntry>> cancelationEvents = | 
| Siarhei Vishniakou | 00fca7c | 2019-10-29 13:05:57 -0700 | [diff] [blame] | 3464 | connection->inputState.synthesizeCancelationEvents(currentTime, options); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3465 |  | 
| Siarhei Vishniakou | bd11889 | 2020-01-10 14:08:28 -0800 | [diff] [blame] | 3466 | if (cancelationEvents.empty()) { | 
|  | 3467 | return; | 
|  | 3468 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3469 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
| Siarhei Vishniakou | bd11889 | 2020-01-10 14:08:28 -0800 | [diff] [blame] | 3470 | ALOGD("channel '%s' ~ Synthesized %zu cancelation events to bring channel back in sync " | 
|  | 3471 | "with reality: %s, mode=%d.", | 
|  | 3472 | connection->getInputChannelName().c_str(), cancelationEvents.size(), options.reason, | 
|  | 3473 | options.mode); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3474 | #endif | 
| Svet Ganov | 5d3bc37 | 2020-01-26 23:11:07 -0800 | [diff] [blame] | 3475 |  | 
|  | 3476 | InputTarget target; | 
|  | 3477 | sp<InputWindowHandle> windowHandle = | 
|  | 3478 | getWindowHandleLocked(connection->inputChannel->getConnectionToken()); | 
|  | 3479 | if (windowHandle != nullptr) { | 
|  | 3480 | const InputWindowInfo* windowInfo = windowHandle->getInfo(); | 
| chaviw | 1ff3d1e | 2020-07-01 15:53:47 -0700 | [diff] [blame] | 3481 | target.setDefaultPointerTransform(windowInfo->transform); | 
| Svet Ganov | 5d3bc37 | 2020-01-26 23:11:07 -0800 | [diff] [blame] | 3482 | target.globalScaleFactor = windowInfo->globalScaleFactor; | 
|  | 3483 | } | 
|  | 3484 | target.inputChannel = connection->inputChannel; | 
|  | 3485 | target.flags = InputTarget::FLAG_DISPATCH_AS_IS; | 
|  | 3486 |  | 
| Siarhei Vishniakou | bd11889 | 2020-01-10 14:08:28 -0800 | [diff] [blame] | 3487 | for (size_t i = 0; i < cancelationEvents.size(); i++) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3488 | std::unique_ptr<EventEntry> cancelationEventEntry = std::move(cancelationEvents[i]); | 
| Siarhei Vishniakou | bd11889 | 2020-01-10 14:08:28 -0800 | [diff] [blame] | 3489 | switch (cancelationEventEntry->type) { | 
|  | 3490 | case EventEntry::Type::KEY: { | 
|  | 3491 | logOutboundKeyDetails("cancel - ", | 
|  | 3492 | static_cast<const KeyEntry&>(*cancelationEventEntry)); | 
|  | 3493 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3494 | } | 
| Siarhei Vishniakou | bd11889 | 2020-01-10 14:08:28 -0800 | [diff] [blame] | 3495 | case EventEntry::Type::MOTION: { | 
|  | 3496 | logOutboundMotionDetails("cancel - ", | 
|  | 3497 | static_cast<const MotionEntry&>(*cancelationEventEntry)); | 
|  | 3498 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3499 | } | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 3500 | case EventEntry::Type::FOCUS: | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 3501 | case EventEntry::Type::POINTER_CAPTURE_CHANGED: | 
|  | 3502 | case EventEntry::Type::DRAG: { | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 3503 | LOG_ALWAYS_FATAL("Canceling %s events is not supported", | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 3504 | NamedEnum::string(cancelationEventEntry->type).c_str()); | 
| Siarhei Vishniakou | bd11889 | 2020-01-10 14:08:28 -0800 | [diff] [blame] | 3505 | break; | 
|  | 3506 | } | 
|  | 3507 | case EventEntry::Type::CONFIGURATION_CHANGED: | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 3508 | case EventEntry::Type::DEVICE_RESET: | 
|  | 3509 | case EventEntry::Type::SENSOR: { | 
| Siarhei Vishniakou | bd11889 | 2020-01-10 14:08:28 -0800 | [diff] [blame] | 3510 | LOG_ALWAYS_FATAL("%s event should not be found inside Connections's queue", | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 3511 | NamedEnum::string(cancelationEventEntry->type).c_str()); | 
| Siarhei Vishniakou | bd11889 | 2020-01-10 14:08:28 -0800 | [diff] [blame] | 3512 | break; | 
|  | 3513 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3514 | } | 
|  | 3515 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3516 | enqueueDispatchEntryLocked(connection, std::move(cancelationEventEntry), target, | 
|  | 3517 | InputTarget::FLAG_DISPATCH_AS_IS); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3518 | } | 
| Siarhei Vishniakou | bd11889 | 2020-01-10 14:08:28 -0800 | [diff] [blame] | 3519 |  | 
|  | 3520 | startDispatchCycleLocked(currentTime, connection); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3521 | } | 
|  | 3522 |  | 
| Svet Ganov | 5d3bc37 | 2020-01-26 23:11:07 -0800 | [diff] [blame] | 3523 | void InputDispatcher::synthesizePointerDownEventsForConnectionLocked( | 
|  | 3524 | const sp<Connection>& connection) { | 
|  | 3525 | if (connection->status == Connection::STATUS_BROKEN) { | 
|  | 3526 | return; | 
|  | 3527 | } | 
|  | 3528 |  | 
|  | 3529 | nsecs_t currentTime = now(); | 
|  | 3530 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3531 | std::vector<std::unique_ptr<EventEntry>> downEvents = | 
| Svet Ganov | 5d3bc37 | 2020-01-26 23:11:07 -0800 | [diff] [blame] | 3532 | connection->inputState.synthesizePointerDownEvents(currentTime); | 
|  | 3533 |  | 
|  | 3534 | if (downEvents.empty()) { | 
|  | 3535 | return; | 
|  | 3536 | } | 
|  | 3537 |  | 
|  | 3538 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
|  | 3539 | ALOGD("channel '%s' ~ Synthesized %zu down events to ensure consistent event stream.", | 
|  | 3540 | connection->getInputChannelName().c_str(), downEvents.size()); | 
|  | 3541 | #endif | 
|  | 3542 |  | 
|  | 3543 | InputTarget target; | 
|  | 3544 | sp<InputWindowHandle> windowHandle = | 
|  | 3545 | getWindowHandleLocked(connection->inputChannel->getConnectionToken()); | 
|  | 3546 | if (windowHandle != nullptr) { | 
|  | 3547 | const InputWindowInfo* windowInfo = windowHandle->getInfo(); | 
| chaviw | 1ff3d1e | 2020-07-01 15:53:47 -0700 | [diff] [blame] | 3548 | target.setDefaultPointerTransform(windowInfo->transform); | 
| Svet Ganov | 5d3bc37 | 2020-01-26 23:11:07 -0800 | [diff] [blame] | 3549 | target.globalScaleFactor = windowInfo->globalScaleFactor; | 
|  | 3550 | } | 
|  | 3551 | target.inputChannel = connection->inputChannel; | 
|  | 3552 | target.flags = InputTarget::FLAG_DISPATCH_AS_IS; | 
|  | 3553 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3554 | for (std::unique_ptr<EventEntry>& downEventEntry : downEvents) { | 
| Svet Ganov | 5d3bc37 | 2020-01-26 23:11:07 -0800 | [diff] [blame] | 3555 | switch (downEventEntry->type) { | 
|  | 3556 | case EventEntry::Type::MOTION: { | 
|  | 3557 | logOutboundMotionDetails("down - ", | 
|  | 3558 | static_cast<const MotionEntry&>(*downEventEntry)); | 
|  | 3559 | break; | 
|  | 3560 | } | 
|  | 3561 |  | 
|  | 3562 | case EventEntry::Type::KEY: | 
|  | 3563 | case EventEntry::Type::FOCUS: | 
|  | 3564 | case EventEntry::Type::CONFIGURATION_CHANGED: | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 3565 | case EventEntry::Type::DEVICE_RESET: | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 3566 | case EventEntry::Type::POINTER_CAPTURE_CHANGED: | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 3567 | case EventEntry::Type::SENSOR: | 
|  | 3568 | case EventEntry::Type::DRAG: { | 
| Svet Ganov | 5d3bc37 | 2020-01-26 23:11:07 -0800 | [diff] [blame] | 3569 | LOG_ALWAYS_FATAL("%s event should not be found inside Connections's queue", | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 3570 | NamedEnum::string(downEventEntry->type).c_str()); | 
| Svet Ganov | 5d3bc37 | 2020-01-26 23:11:07 -0800 | [diff] [blame] | 3571 | break; | 
|  | 3572 | } | 
|  | 3573 | } | 
|  | 3574 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3575 | enqueueDispatchEntryLocked(connection, std::move(downEventEntry), target, | 
|  | 3576 | InputTarget::FLAG_DISPATCH_AS_IS); | 
| Svet Ganov | 5d3bc37 | 2020-01-26 23:11:07 -0800 | [diff] [blame] | 3577 | } | 
|  | 3578 |  | 
|  | 3579 | startDispatchCycleLocked(currentTime, connection); | 
|  | 3580 | } | 
|  | 3581 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3582 | std::unique_ptr<MotionEntry> InputDispatcher::splitMotionEvent( | 
|  | 3583 | const MotionEntry& originalMotionEntry, BitSet32 pointerIds) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3584 | ALOG_ASSERT(pointerIds.value != 0); | 
|  | 3585 |  | 
|  | 3586 | uint32_t splitPointerIndexMap[MAX_POINTERS]; | 
|  | 3587 | PointerProperties splitPointerProperties[MAX_POINTERS]; | 
|  | 3588 | PointerCoords splitPointerCoords[MAX_POINTERS]; | 
|  | 3589 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 3590 | uint32_t originalPointerCount = originalMotionEntry.pointerCount; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3591 | uint32_t splitPointerCount = 0; | 
|  | 3592 |  | 
|  | 3593 | for (uint32_t originalPointerIndex = 0; originalPointerIndex < originalPointerCount; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3594 | originalPointerIndex++) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3595 | const PointerProperties& pointerProperties = | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 3596 | originalMotionEntry.pointerProperties[originalPointerIndex]; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3597 | uint32_t pointerId = uint32_t(pointerProperties.id); | 
|  | 3598 | if (pointerIds.hasBit(pointerId)) { | 
|  | 3599 | splitPointerIndexMap[splitPointerCount] = originalPointerIndex; | 
|  | 3600 | splitPointerProperties[splitPointerCount].copyFrom(pointerProperties); | 
|  | 3601 | splitPointerCoords[splitPointerCount].copyFrom( | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 3602 | originalMotionEntry.pointerCoords[originalPointerIndex]); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3603 | splitPointerCount += 1; | 
|  | 3604 | } | 
|  | 3605 | } | 
|  | 3606 |  | 
|  | 3607 | if (splitPointerCount != pointerIds.count()) { | 
|  | 3608 | // This is bad.  We are missing some of the pointers that we expected to deliver. | 
|  | 3609 | // Most likely this indicates that we received an ACTION_MOVE events that has | 
|  | 3610 | // different pointer ids than we expected based on the previous ACTION_DOWN | 
|  | 3611 | // or ACTION_POINTER_DOWN events that caused us to decide to split the pointers | 
|  | 3612 | // in this way. | 
|  | 3613 | ALOGW("Dropping split motion event because the pointer count is %d but " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3614 | "we expected there to be %d pointers.  This probably means we received " | 
|  | 3615 | "a broken sequence of pointer ids from the input device.", | 
|  | 3616 | splitPointerCount, pointerIds.count()); | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 3617 | return nullptr; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3618 | } | 
|  | 3619 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 3620 | int32_t action = originalMotionEntry.action; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3621 | int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3622 | if (maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN || | 
|  | 3623 | maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3624 | int32_t originalPointerIndex = getMotionEventActionPointerIndex(action); | 
|  | 3625 | const PointerProperties& pointerProperties = | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 3626 | originalMotionEntry.pointerProperties[originalPointerIndex]; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3627 | uint32_t pointerId = uint32_t(pointerProperties.id); | 
|  | 3628 | if (pointerIds.hasBit(pointerId)) { | 
|  | 3629 | if (pointerIds.count() == 1) { | 
|  | 3630 | // The first/last pointer went down/up. | 
|  | 3631 | action = maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3632 | ? AMOTION_EVENT_ACTION_DOWN | 
| arthurhung | ea3f4fc | 2020-12-21 23:18:53 +0800 | [diff] [blame] | 3633 | : (originalMotionEntry.flags & AMOTION_EVENT_FLAG_CANCELED) != 0 | 
|  | 3634 | ? AMOTION_EVENT_ACTION_CANCEL | 
|  | 3635 | : AMOTION_EVENT_ACTION_UP; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3636 | } else { | 
|  | 3637 | // A secondary pointer went down/up. | 
|  | 3638 | uint32_t splitPointerIndex = 0; | 
|  | 3639 | while (pointerId != uint32_t(splitPointerProperties[splitPointerIndex].id)) { | 
|  | 3640 | splitPointerIndex += 1; | 
|  | 3641 | } | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3642 | action = maskedAction | | 
|  | 3643 | (splitPointerIndex << AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3644 | } | 
|  | 3645 | } else { | 
|  | 3646 | // An unrelated pointer changed. | 
|  | 3647 | action = AMOTION_EVENT_ACTION_MOVE; | 
|  | 3648 | } | 
|  | 3649 | } | 
|  | 3650 |  | 
| Garfield Tan | ff1f1bb | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 3651 | int32_t newId = mIdGenerator.nextId(); | 
|  | 3652 | if (ATRACE_ENABLED()) { | 
|  | 3653 | std::string message = StringPrintf("Split MotionEvent(id=0x%" PRIx32 | 
|  | 3654 | ") to MotionEvent(id=0x%" PRIx32 ").", | 
|  | 3655 | originalMotionEntry.id, newId); | 
|  | 3656 | ATRACE_NAME(message.c_str()); | 
|  | 3657 | } | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3658 | std::unique_ptr<MotionEntry> splitMotionEntry = | 
|  | 3659 | std::make_unique<MotionEntry>(newId, originalMotionEntry.eventTime, | 
|  | 3660 | originalMotionEntry.deviceId, originalMotionEntry.source, | 
|  | 3661 | originalMotionEntry.displayId, | 
|  | 3662 | originalMotionEntry.policyFlags, action, | 
|  | 3663 | originalMotionEntry.actionButton, | 
|  | 3664 | originalMotionEntry.flags, originalMotionEntry.metaState, | 
|  | 3665 | originalMotionEntry.buttonState, | 
|  | 3666 | originalMotionEntry.classification, | 
|  | 3667 | originalMotionEntry.edgeFlags, | 
|  | 3668 | originalMotionEntry.xPrecision, | 
|  | 3669 | originalMotionEntry.yPrecision, | 
|  | 3670 | originalMotionEntry.xCursorPosition, | 
|  | 3671 | originalMotionEntry.yCursorPosition, | 
|  | 3672 | originalMotionEntry.downTime, splitPointerCount, | 
|  | 3673 | splitPointerProperties, splitPointerCoords, 0, 0); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3674 |  | 
| Siarhei Vishniakou | d277004 | 2019-10-29 11:08:14 -0700 | [diff] [blame] | 3675 | if (originalMotionEntry.injectionState) { | 
|  | 3676 | splitMotionEntry->injectionState = originalMotionEntry.injectionState; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3677 | splitMotionEntry->injectionState->refCount += 1; | 
|  | 3678 | } | 
|  | 3679 |  | 
|  | 3680 | return splitMotionEntry; | 
|  | 3681 | } | 
|  | 3682 |  | 
|  | 3683 | void InputDispatcher::notifyConfigurationChanged(const NotifyConfigurationChangedArgs* args) { | 
|  | 3684 | #if DEBUG_INBOUND_EVENT_DETAILS | 
| Siarhei Vishniakou | 5d83f60 | 2017-09-12 12:40:29 -0700 | [diff] [blame] | 3685 | ALOGD("notifyConfigurationChanged - eventTime=%" PRId64, args->eventTime); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3686 | #endif | 
|  | 3687 |  | 
|  | 3688 | bool needWake; | 
|  | 3689 | { // acquire lock | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 3690 | std::scoped_lock _l(mLock); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3691 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3692 | std::unique_ptr<ConfigurationChangedEntry> newEntry = | 
|  | 3693 | std::make_unique<ConfigurationChangedEntry>(args->id, args->eventTime); | 
|  | 3694 | needWake = enqueueInboundEventLocked(std::move(newEntry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3695 | } // release lock | 
|  | 3696 |  | 
|  | 3697 | if (needWake) { | 
|  | 3698 | mLooper->wake(); | 
|  | 3699 | } | 
|  | 3700 | } | 
|  | 3701 |  | 
| Siarhei Vishniakou | 61fafdd | 2018-04-13 11:00:58 -0500 | [diff] [blame] | 3702 | /** | 
|  | 3703 | * If one of the meta shortcuts is detected, process them here: | 
|  | 3704 | *     Meta + Backspace -> generate BACK | 
|  | 3705 | *     Meta + Enter -> generate HOME | 
|  | 3706 | * This will potentially overwrite keyCode and metaState. | 
|  | 3707 | */ | 
|  | 3708 | void InputDispatcher::accelerateMetaShortcuts(const int32_t deviceId, const int32_t action, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3709 | int32_t& keyCode, int32_t& metaState) { | 
| Siarhei Vishniakou | 61fafdd | 2018-04-13 11:00:58 -0500 | [diff] [blame] | 3710 | if (metaState & AMETA_META_ON && action == AKEY_EVENT_ACTION_DOWN) { | 
|  | 3711 | int32_t newKeyCode = AKEYCODE_UNKNOWN; | 
|  | 3712 | if (keyCode == AKEYCODE_DEL) { | 
|  | 3713 | newKeyCode = AKEYCODE_BACK; | 
|  | 3714 | } else if (keyCode == AKEYCODE_ENTER) { | 
|  | 3715 | newKeyCode = AKEYCODE_HOME; | 
|  | 3716 | } | 
|  | 3717 | if (newKeyCode != AKEYCODE_UNKNOWN) { | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 3718 | std::scoped_lock _l(mLock); | 
| Siarhei Vishniakou | 61fafdd | 2018-04-13 11:00:58 -0500 | [diff] [blame] | 3719 | struct KeyReplacement replacement = {keyCode, deviceId}; | 
| Siarhei Vishniakou | 4700f82 | 2020-03-24 19:05:54 -0700 | [diff] [blame] | 3720 | mReplacedKeys[replacement] = newKeyCode; | 
| Siarhei Vishniakou | 61fafdd | 2018-04-13 11:00:58 -0500 | [diff] [blame] | 3721 | keyCode = newKeyCode; | 
|  | 3722 | metaState &= ~(AMETA_META_ON | AMETA_META_LEFT_ON | AMETA_META_RIGHT_ON); | 
|  | 3723 | } | 
|  | 3724 | } else if (action == AKEY_EVENT_ACTION_UP) { | 
|  | 3725 | // In order to maintain a consistent stream of up and down events, check to see if the key | 
|  | 3726 | // going up is one we've replaced in a down event and haven't yet replaced in an up event, | 
|  | 3727 | // even if the modifier was released between the down and the up events. | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 3728 | std::scoped_lock _l(mLock); | 
| Siarhei Vishniakou | 61fafdd | 2018-04-13 11:00:58 -0500 | [diff] [blame] | 3729 | struct KeyReplacement replacement = {keyCode, deviceId}; | 
| Siarhei Vishniakou | 4700f82 | 2020-03-24 19:05:54 -0700 | [diff] [blame] | 3730 | auto replacementIt = mReplacedKeys.find(replacement); | 
|  | 3731 | if (replacementIt != mReplacedKeys.end()) { | 
|  | 3732 | keyCode = replacementIt->second; | 
|  | 3733 | mReplacedKeys.erase(replacementIt); | 
| Siarhei Vishniakou | 61fafdd | 2018-04-13 11:00:58 -0500 | [diff] [blame] | 3734 | metaState &= ~(AMETA_META_ON | AMETA_META_LEFT_ON | AMETA_META_RIGHT_ON); | 
|  | 3735 | } | 
|  | 3736 | } | 
|  | 3737 | } | 
|  | 3738 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3739 | void InputDispatcher::notifyKey(const NotifyKeyArgs* args) { | 
|  | 3740 | #if DEBUG_INBOUND_EVENT_DETAILS | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3741 | ALOGD("notifyKey - eventTime=%" PRId64 ", deviceId=%d, source=0x%x, displayId=%" PRId32 | 
|  | 3742 | "policyFlags=0x%x, action=0x%x, " | 
|  | 3743 | "flags=0x%x, keyCode=0x%x, scanCode=0x%x, metaState=0x%x, downTime=%" PRId64, | 
|  | 3744 | args->eventTime, args->deviceId, args->source, args->displayId, args->policyFlags, | 
|  | 3745 | args->action, args->flags, args->keyCode, args->scanCode, args->metaState, | 
|  | 3746 | args->downTime); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3747 | #endif | 
|  | 3748 | if (!validateKeyEvent(args->action)) { | 
|  | 3749 | return; | 
|  | 3750 | } | 
|  | 3751 |  | 
|  | 3752 | uint32_t policyFlags = args->policyFlags; | 
|  | 3753 | int32_t flags = args->flags; | 
|  | 3754 | int32_t metaState = args->metaState; | 
| Siarhei Vishniakou | 622bd32 | 2018-10-29 18:02:27 -0700 | [diff] [blame] | 3755 | // InputDispatcher tracks and generates key repeats on behalf of | 
|  | 3756 | // whatever notifies it, so repeatCount should always be set to 0 | 
|  | 3757 | constexpr int32_t repeatCount = 0; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3758 | if ((policyFlags & POLICY_FLAG_VIRTUAL) || (flags & AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY)) { | 
|  | 3759 | policyFlags |= POLICY_FLAG_VIRTUAL; | 
|  | 3760 | flags |= AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY; | 
|  | 3761 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3762 | if (policyFlags & POLICY_FLAG_FUNCTION) { | 
|  | 3763 | metaState |= AMETA_FUNCTION_ON; | 
|  | 3764 | } | 
|  | 3765 |  | 
|  | 3766 | policyFlags |= POLICY_FLAG_TRUSTED; | 
|  | 3767 |  | 
| Michael Wright | 78f2444 | 2014-08-06 15:55:28 -0700 | [diff] [blame] | 3768 | int32_t keyCode = args->keyCode; | 
| Siarhei Vishniakou | 61fafdd | 2018-04-13 11:00:58 -0500 | [diff] [blame] | 3769 | accelerateMetaShortcuts(args->deviceId, args->action, keyCode, metaState); | 
| Michael Wright | 78f2444 | 2014-08-06 15:55:28 -0700 | [diff] [blame] | 3770 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3771 | KeyEvent event; | 
| Garfield Tan | 6a5a14e | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 3772 | event.initialize(args->id, args->deviceId, args->source, args->displayId, INVALID_HMAC, | 
| Garfield Tan | 4cc839f | 2020-01-24 11:26:14 -0800 | [diff] [blame] | 3773 | args->action, flags, keyCode, args->scanCode, metaState, repeatCount, | 
|  | 3774 | args->downTime, args->eventTime); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3775 |  | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 3776 | android::base::Timer t; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3777 | mPolicy->interceptKeyBeforeQueueing(&event, /*byref*/ policyFlags); | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 3778 | if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) { | 
|  | 3779 | ALOGW("Excessive delay in interceptKeyBeforeQueueing; took %s ms", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3780 | std::to_string(t.duration().count()).c_str()); | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 3781 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3782 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3783 | bool needWake; | 
|  | 3784 | { // acquire lock | 
|  | 3785 | mLock.lock(); | 
|  | 3786 |  | 
|  | 3787 | if (shouldSendKeyToInputFilterLocked(args)) { | 
|  | 3788 | mLock.unlock(); | 
|  | 3789 |  | 
| Siarhei Vishniakou | f00a4ec | 2021-06-16 03:55:32 +0000 | [diff] [blame] | 3790 | policyFlags |= POLICY_FLAG_FILTERED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3791 | if (!mPolicy->filterInputEvent(&event, policyFlags)) { | 
|  | 3792 | return; // event was consumed by the filter | 
|  | 3793 | } | 
|  | 3794 |  | 
|  | 3795 | mLock.lock(); | 
|  | 3796 | } | 
|  | 3797 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3798 | std::unique_ptr<KeyEntry> newEntry = | 
|  | 3799 | std::make_unique<KeyEntry>(args->id, args->eventTime, args->deviceId, args->source, | 
|  | 3800 | args->displayId, policyFlags, args->action, flags, | 
|  | 3801 | keyCode, args->scanCode, metaState, repeatCount, | 
|  | 3802 | args->downTime); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3803 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3804 | needWake = enqueueInboundEventLocked(std::move(newEntry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3805 | mLock.unlock(); | 
|  | 3806 | } // release lock | 
|  | 3807 |  | 
|  | 3808 | if (needWake) { | 
|  | 3809 | mLooper->wake(); | 
|  | 3810 | } | 
|  | 3811 | } | 
|  | 3812 |  | 
|  | 3813 | bool InputDispatcher::shouldSendKeyToInputFilterLocked(const NotifyKeyArgs* args) { | 
|  | 3814 | return mInputFilterEnabled; | 
|  | 3815 | } | 
|  | 3816 |  | 
|  | 3817 | void InputDispatcher::notifyMotion(const NotifyMotionArgs* args) { | 
|  | 3818 | #if DEBUG_INBOUND_EVENT_DETAILS | 
| Garfield Tan | 6a5a14e | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 3819 | ALOGD("notifyMotion - id=%" PRIx32 " eventTime=%" PRId64 ", deviceId=%d, source=0x%x, " | 
|  | 3820 | "displayId=%" PRId32 ", policyFlags=0x%x, " | 
| Garfield Tan | 00f511d | 2019-06-12 16:55:40 -0700 | [diff] [blame] | 3821 | "action=0x%x, actionButton=0x%x, flags=0x%x, metaState=0x%x, buttonState=0x%x, " | 
|  | 3822 | "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, xCursorPosition=%f, " | 
| Garfield Tan | ab0ab9c | 2019-07-10 18:58:28 -0700 | [diff] [blame] | 3823 | "yCursorPosition=%f, downTime=%" PRId64, | 
| Garfield Tan | 6a5a14e | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 3824 | args->id, args->eventTime, args->deviceId, args->source, args->displayId, | 
|  | 3825 | args->policyFlags, args->action, args->actionButton, args->flags, args->metaState, | 
|  | 3826 | args->buttonState, args->edgeFlags, args->xPrecision, args->yPrecision, | 
|  | 3827 | args->xCursorPosition, args->yCursorPosition, args->downTime); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3828 | for (uint32_t i = 0; i < args->pointerCount; i++) { | 
|  | 3829 | ALOGD("  Pointer %d: id=%d, toolType=%d, " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3830 | "x=%f, y=%f, pressure=%f, size=%f, " | 
|  | 3831 | "touchMajor=%f, touchMinor=%f, toolMajor=%f, toolMinor=%f, " | 
|  | 3832 | "orientation=%f", | 
|  | 3833 | i, args->pointerProperties[i].id, args->pointerProperties[i].toolType, | 
|  | 3834 | args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_X), | 
|  | 3835 | args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_Y), | 
|  | 3836 | args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_PRESSURE), | 
|  | 3837 | args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_SIZE), | 
|  | 3838 | args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR), | 
|  | 3839 | args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR), | 
|  | 3840 | args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR), | 
|  | 3841 | args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR), | 
|  | 3842 | args->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3843 | } | 
|  | 3844 | #endif | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3845 | if (!validateMotionEvent(args->action, args->actionButton, args->pointerCount, | 
|  | 3846 | args->pointerProperties)) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3847 | return; | 
|  | 3848 | } | 
|  | 3849 |  | 
|  | 3850 | uint32_t policyFlags = args->policyFlags; | 
|  | 3851 | policyFlags |= POLICY_FLAG_TRUSTED; | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 3852 |  | 
|  | 3853 | android::base::Timer t; | 
| Charles Chen | 3611f1f | 2019-01-29 17:26:18 +0800 | [diff] [blame] | 3854 | mPolicy->interceptMotionBeforeQueueing(args->displayId, args->eventTime, /*byref*/ policyFlags); | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 3855 | if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) { | 
|  | 3856 | ALOGW("Excessive delay in interceptMotionBeforeQueueing; took %s ms", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3857 | std::to_string(t.duration().count()).c_str()); | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 3858 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3859 |  | 
|  | 3860 | bool needWake; | 
|  | 3861 | { // acquire lock | 
|  | 3862 | mLock.lock(); | 
|  | 3863 |  | 
|  | 3864 | if (shouldSendMotionToInputFilterLocked(args)) { | 
|  | 3865 | mLock.unlock(); | 
|  | 3866 |  | 
|  | 3867 | MotionEvent event; | 
| chaviw | 9eaa22c | 2020-07-01 16:21:27 -0700 | [diff] [blame] | 3868 | ui::Transform transform; | 
| Garfield Tan | 6a5a14e | 2020-01-28 13:24:04 -0800 | [diff] [blame] | 3869 | event.initialize(args->id, args->deviceId, args->source, args->displayId, INVALID_HMAC, | 
|  | 3870 | args->action, args->actionButton, args->flags, args->edgeFlags, | 
| chaviw | 9eaa22c | 2020-07-01 16:21:27 -0700 | [diff] [blame] | 3871 | args->metaState, args->buttonState, args->classification, transform, | 
|  | 3872 | args->xPrecision, args->yPrecision, args->xCursorPosition, | 
| Evan Rosky | 84f07f0 | 2021-04-16 10:42:42 -0700 | [diff] [blame] | 3873 | args->yCursorPosition, AMOTION_EVENT_INVALID_DISPLAY_SIZE, | 
|  | 3874 | AMOTION_EVENT_INVALID_DISPLAY_SIZE, args->downTime, args->eventTime, | 
| chaviw | 9eaa22c | 2020-07-01 16:21:27 -0700 | [diff] [blame] | 3875 | args->pointerCount, args->pointerProperties, args->pointerCoords); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3876 |  | 
|  | 3877 | policyFlags |= POLICY_FLAG_FILTERED; | 
|  | 3878 | if (!mPolicy->filterInputEvent(&event, policyFlags)) { | 
|  | 3879 | return; // event was consumed by the filter | 
|  | 3880 | } | 
|  | 3881 |  | 
|  | 3882 | mLock.lock(); | 
|  | 3883 | } | 
|  | 3884 |  | 
|  | 3885 | // Just enqueue a new motion event. | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3886 | std::unique_ptr<MotionEntry> newEntry = | 
|  | 3887 | std::make_unique<MotionEntry>(args->id, args->eventTime, args->deviceId, | 
|  | 3888 | args->source, args->displayId, policyFlags, | 
|  | 3889 | args->action, args->actionButton, args->flags, | 
|  | 3890 | args->metaState, args->buttonState, | 
|  | 3891 | args->classification, args->edgeFlags, | 
|  | 3892 | args->xPrecision, args->yPrecision, | 
|  | 3893 | args->xCursorPosition, args->yCursorPosition, | 
|  | 3894 | args->downTime, args->pointerCount, | 
|  | 3895 | args->pointerProperties, args->pointerCoords, 0, 0); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3896 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3897 | needWake = enqueueInboundEventLocked(std::move(newEntry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3898 | mLock.unlock(); | 
|  | 3899 | } // release lock | 
|  | 3900 |  | 
|  | 3901 | if (needWake) { | 
|  | 3902 | mLooper->wake(); | 
|  | 3903 | } | 
|  | 3904 | } | 
|  | 3905 |  | 
| Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 3906 | void InputDispatcher::notifySensor(const NotifySensorArgs* args) { | 
|  | 3907 | #if DEBUG_INBOUND_EVENT_DETAILS | 
|  | 3908 | ALOGD("notifySensor - id=%" PRIx32 " eventTime=%" PRId64 ", deviceId=%d, source=0x%x, " | 
|  | 3909 | " sensorType=%s", | 
|  | 3910 | args->id, args->eventTime, args->deviceId, args->source, | 
|  | 3911 | NamedEnum::string(args->sensorType).c_str()); | 
|  | 3912 | #endif | 
|  | 3913 |  | 
|  | 3914 | bool needWake; | 
|  | 3915 | { // acquire lock | 
|  | 3916 | mLock.lock(); | 
|  | 3917 |  | 
|  | 3918 | // Just enqueue a new sensor event. | 
|  | 3919 | std::unique_ptr<SensorEntry> newEntry = | 
|  | 3920 | std::make_unique<SensorEntry>(args->id, args->eventTime, args->deviceId, | 
|  | 3921 | args->source, 0 /* policyFlags*/, args->hwTimestamp, | 
|  | 3922 | args->sensorType, args->accuracy, | 
|  | 3923 | args->accuracyChanged, args->values); | 
|  | 3924 |  | 
|  | 3925 | needWake = enqueueInboundEventLocked(std::move(newEntry)); | 
|  | 3926 | mLock.unlock(); | 
|  | 3927 | } // release lock | 
|  | 3928 |  | 
|  | 3929 | if (needWake) { | 
|  | 3930 | mLooper->wake(); | 
|  | 3931 | } | 
|  | 3932 | } | 
|  | 3933 |  | 
| Chris Ye | fb55290 | 2021-02-03 17:18:37 -0800 | [diff] [blame] | 3934 | void InputDispatcher::notifyVibratorState(const NotifyVibratorStateArgs* args) { | 
|  | 3935 | #if DEBUG_INBOUND_EVENT_DETAILS | 
|  | 3936 | ALOGD("notifyVibratorState - eventTime=%" PRId64 ", device=%d,  isOn=%d", args->eventTime, | 
|  | 3937 | args->deviceId, args->isOn); | 
|  | 3938 | #endif | 
|  | 3939 | mPolicy->notifyVibratorState(args->deviceId, args->isOn); | 
|  | 3940 | } | 
|  | 3941 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3942 | bool InputDispatcher::shouldSendMotionToInputFilterLocked(const NotifyMotionArgs* args) { | 
| Jackal Guo | f969668 | 2018-10-05 12:23:23 +0800 | [diff] [blame] | 3943 | return mInputFilterEnabled; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3944 | } | 
|  | 3945 |  | 
|  | 3946 | void InputDispatcher::notifySwitch(const NotifySwitchArgs* args) { | 
|  | 3947 | #if DEBUG_INBOUND_EVENT_DETAILS | 
| Siarhei Vishniakou | 5d83f60 | 2017-09-12 12:40:29 -0700 | [diff] [blame] | 3948 | ALOGD("notifySwitch - eventTime=%" PRId64 ", policyFlags=0x%x, switchValues=0x%08x, " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3949 | "switchMask=0x%08x", | 
|  | 3950 | args->eventTime, args->policyFlags, args->switchValues, args->switchMask); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3951 | #endif | 
|  | 3952 |  | 
|  | 3953 | uint32_t policyFlags = args->policyFlags; | 
|  | 3954 | policyFlags |= POLICY_FLAG_TRUSTED; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3955 | mPolicy->notifySwitch(args->eventTime, args->switchValues, args->switchMask, policyFlags); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3956 | } | 
|  | 3957 |  | 
|  | 3958 | void InputDispatcher::notifyDeviceReset(const NotifyDeviceResetArgs* args) { | 
|  | 3959 | #if DEBUG_INBOUND_EVENT_DETAILS | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 3960 | ALOGD("notifyDeviceReset - eventTime=%" PRId64 ", deviceId=%d", args->eventTime, | 
|  | 3961 | args->deviceId); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3962 | #endif | 
|  | 3963 |  | 
|  | 3964 | bool needWake; | 
|  | 3965 | { // acquire lock | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 3966 | std::scoped_lock _l(mLock); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3967 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 3968 | std::unique_ptr<DeviceResetEntry> newEntry = | 
|  | 3969 | std::make_unique<DeviceResetEntry>(args->id, args->eventTime, args->deviceId); | 
|  | 3970 | needWake = enqueueInboundEventLocked(std::move(newEntry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 3971 | } // release lock | 
|  | 3972 |  | 
|  | 3973 | if (needWake) { | 
|  | 3974 | mLooper->wake(); | 
|  | 3975 | } | 
|  | 3976 | } | 
|  | 3977 |  | 
| Prabir Pradhan | 7e18618 | 2020-11-10 13:56:45 -0800 | [diff] [blame] | 3978 | void InputDispatcher::notifyPointerCaptureChanged(const NotifyPointerCaptureChangedArgs* args) { | 
|  | 3979 | #if DEBUG_INBOUND_EVENT_DETAILS | 
|  | 3980 | ALOGD("notifyPointerCaptureChanged - eventTime=%" PRId64 ", enabled=%s", args->eventTime, | 
|  | 3981 | args->enabled ? "true" : "false"); | 
|  | 3982 | #endif | 
|  | 3983 |  | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 3984 | bool needWake; | 
|  | 3985 | { // acquire lock | 
|  | 3986 | std::scoped_lock _l(mLock); | 
|  | 3987 | auto entry = std::make_unique<PointerCaptureChangedEntry>(args->id, args->eventTime, | 
|  | 3988 | args->enabled); | 
|  | 3989 | needWake = enqueueInboundEventLocked(std::move(entry)); | 
|  | 3990 | } // release lock | 
|  | 3991 |  | 
|  | 3992 | if (needWake) { | 
|  | 3993 | mLooper->wake(); | 
|  | 3994 | } | 
| Prabir Pradhan | 7e18618 | 2020-11-10 13:56:45 -0800 | [diff] [blame] | 3995 | } | 
|  | 3996 |  | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 3997 | InputEventInjectionResult InputDispatcher::injectInputEvent( | 
|  | 3998 | const InputEvent* event, int32_t injectorPid, int32_t injectorUid, | 
|  | 3999 | InputEventInjectionSync syncMode, std::chrono::milliseconds timeout, uint32_t policyFlags) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4000 | #if DEBUG_INBOUND_EVENT_DETAILS | 
|  | 4001 | ALOGD("injectInputEvent - eventType=%d, injectorPid=%d, injectorUid=%d, " | 
| Siarhei Vishniakou | 097c3db | 2020-05-06 14:18:38 -0700 | [diff] [blame] | 4002 | "syncMode=%d, timeout=%lld, policyFlags=0x%08x", | 
|  | 4003 | event->getType(), injectorPid, injectorUid, syncMode, timeout.count(), policyFlags); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4004 | #endif | 
| Siarhei Vishniakou | 097c3db | 2020-05-06 14:18:38 -0700 | [diff] [blame] | 4005 | nsecs_t endTime = now() + std::chrono::duration_cast<std::chrono::nanoseconds>(timeout).count(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4006 |  | 
|  | 4007 | policyFlags |= POLICY_FLAG_INJECTED; | 
|  | 4008 | if (hasInjectionPermission(injectorPid, injectorUid)) { | 
|  | 4009 | policyFlags |= POLICY_FLAG_TRUSTED; | 
|  | 4010 | } | 
|  | 4011 |  | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4012 | // For all injected events, set device id = VIRTUAL_KEYBOARD_ID. The only exception is events | 
| Siarhei Vishniakou | f00a4ec | 2021-06-16 03:55:32 +0000 | [diff] [blame] | 4013 | // that have gone through the InputFilter. If the event passed through the InputFilter, assign | 
|  | 4014 | // the provided device id. If the InputFilter is accessibility, and it modifies or synthesizes | 
|  | 4015 | // the injected event, it is responsible for setting POLICY_FLAG_INJECTED_FROM_ACCESSIBILITY. | 
|  | 4016 | // For those events, we will set FLAG_IS_ACCESSIBILITY_EVENT to allow apps to distinguish them | 
|  | 4017 | // from events that originate from actual hardware. | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4018 | int32_t resolvedDeviceId = VIRTUAL_KEYBOARD_ID; | 
| Siarhei Vishniakou | f00a4ec | 2021-06-16 03:55:32 +0000 | [diff] [blame] | 4019 | if (policyFlags & POLICY_FLAG_FILTERED) { | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4020 | resolvedDeviceId = event->getDeviceId(); | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4021 | } | 
|  | 4022 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4023 | std::queue<std::unique_ptr<EventEntry>> injectedEntries; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4024 | switch (event->getType()) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4025 | case AINPUT_EVENT_TYPE_KEY: { | 
| Siarhei Vishniakou | 0d8ed6e | 2020-01-17 15:48:59 -0800 | [diff] [blame] | 4026 | const KeyEvent& incomingKey = static_cast<const KeyEvent&>(*event); | 
|  | 4027 | int32_t action = incomingKey.getAction(); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4028 | if (!validateKeyEvent(action)) { | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4029 | return InputEventInjectionResult::FAILED; | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 4030 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4031 |  | 
| Siarhei Vishniakou | 0d8ed6e | 2020-01-17 15:48:59 -0800 | [diff] [blame] | 4032 | int32_t flags = incomingKey.getFlags(); | 
| Siarhei Vishniakou | f00a4ec | 2021-06-16 03:55:32 +0000 | [diff] [blame] | 4033 | if (policyFlags & POLICY_FLAG_INJECTED_FROM_ACCESSIBILITY) { | 
|  | 4034 | flags |= AKEY_EVENT_FLAG_IS_ACCESSIBILITY_EVENT; | 
|  | 4035 | } | 
| Siarhei Vishniakou | 0d8ed6e | 2020-01-17 15:48:59 -0800 | [diff] [blame] | 4036 | int32_t keyCode = incomingKey.getKeyCode(); | 
|  | 4037 | int32_t metaState = incomingKey.getMetaState(); | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4038 | accelerateMetaShortcuts(resolvedDeviceId, action, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4039 | /*byref*/ keyCode, /*byref*/ metaState); | 
| Siarhei Vishniakou | 0d8ed6e | 2020-01-17 15:48:59 -0800 | [diff] [blame] | 4040 | KeyEvent keyEvent; | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4041 | keyEvent.initialize(incomingKey.getId(), resolvedDeviceId, incomingKey.getSource(), | 
| Siarhei Vishniakou | 0d8ed6e | 2020-01-17 15:48:59 -0800 | [diff] [blame] | 4042 | incomingKey.getDisplayId(), INVALID_HMAC, action, flags, keyCode, | 
|  | 4043 | incomingKey.getScanCode(), metaState, incomingKey.getRepeatCount(), | 
|  | 4044 | incomingKey.getDownTime(), incomingKey.getEventTime()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4045 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4046 | if (flags & AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY) { | 
|  | 4047 | policyFlags |= POLICY_FLAG_VIRTUAL; | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 4048 | } | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4049 |  | 
|  | 4050 | if (!(policyFlags & POLICY_FLAG_FILTERED)) { | 
|  | 4051 | android::base::Timer t; | 
|  | 4052 | mPolicy->interceptKeyBeforeQueueing(&keyEvent, /*byref*/ policyFlags); | 
|  | 4053 | if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) { | 
|  | 4054 | ALOGW("Excessive delay in interceptKeyBeforeQueueing; took %s ms", | 
|  | 4055 | std::to_string(t.duration().count()).c_str()); | 
|  | 4056 | } | 
|  | 4057 | } | 
|  | 4058 |  | 
|  | 4059 | mLock.lock(); | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4060 | std::unique_ptr<KeyEntry> injectedEntry = | 
|  | 4061 | std::make_unique<KeyEntry>(incomingKey.getId(), incomingKey.getEventTime(), | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4062 | resolvedDeviceId, incomingKey.getSource(), | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4063 | incomingKey.getDisplayId(), policyFlags, action, | 
|  | 4064 | flags, keyCode, incomingKey.getScanCode(), metaState, | 
|  | 4065 | incomingKey.getRepeatCount(), | 
|  | 4066 | incomingKey.getDownTime()); | 
|  | 4067 | injectedEntries.push(std::move(injectedEntry)); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4068 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4069 | } | 
|  | 4070 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4071 | case AINPUT_EVENT_TYPE_MOTION: { | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4072 | const MotionEvent& motionEvent = static_cast<const MotionEvent&>(*event); | 
|  | 4073 | int32_t action = motionEvent.getAction(); | 
|  | 4074 | size_t pointerCount = motionEvent.getPointerCount(); | 
|  | 4075 | const PointerProperties* pointerProperties = motionEvent.getPointerProperties(); | 
|  | 4076 | int32_t actionButton = motionEvent.getActionButton(); | 
| Siarhei Vishniakou | f00a4ec | 2021-06-16 03:55:32 +0000 | [diff] [blame] | 4077 | int32_t flags = motionEvent.getFlags(); | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4078 | int32_t displayId = motionEvent.getDisplayId(); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4079 | if (!validateMotionEvent(action, actionButton, pointerCount, pointerProperties)) { | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4080 | return InputEventInjectionResult::FAILED; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4081 | } | 
|  | 4082 |  | 
|  | 4083 | if (!(policyFlags & POLICY_FLAG_FILTERED)) { | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4084 | nsecs_t eventTime = motionEvent.getEventTime(); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4085 | android::base::Timer t; | 
|  | 4086 | mPolicy->interceptMotionBeforeQueueing(displayId, eventTime, /*byref*/ policyFlags); | 
|  | 4087 | if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) { | 
|  | 4088 | ALOGW("Excessive delay in interceptMotionBeforeQueueing; took %s ms", | 
|  | 4089 | std::to_string(t.duration().count()).c_str()); | 
|  | 4090 | } | 
|  | 4091 | } | 
|  | 4092 |  | 
| Siarhei Vishniakou | f00a4ec | 2021-06-16 03:55:32 +0000 | [diff] [blame] | 4093 | if (policyFlags & POLICY_FLAG_INJECTED_FROM_ACCESSIBILITY) { | 
|  | 4094 | flags |= AMOTION_EVENT_FLAG_IS_ACCESSIBILITY_EVENT; | 
|  | 4095 | } | 
|  | 4096 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4097 | mLock.lock(); | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4098 | const nsecs_t* sampleEventTimes = motionEvent.getSampleEventTimes(); | 
|  | 4099 | const PointerCoords* samplePointerCoords = motionEvent.getSamplePointerCoords(); | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4100 | std::unique_ptr<MotionEntry> injectedEntry = | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4101 | std::make_unique<MotionEntry>(motionEvent.getId(), *sampleEventTimes, | 
|  | 4102 | resolvedDeviceId, motionEvent.getSource(), | 
|  | 4103 | motionEvent.getDisplayId(), policyFlags, action, | 
| Siarhei Vishniakou | f00a4ec | 2021-06-16 03:55:32 +0000 | [diff] [blame] | 4104 | actionButton, flags, motionEvent.getMetaState(), | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4105 | motionEvent.getButtonState(), | 
|  | 4106 | motionEvent.getClassification(), | 
|  | 4107 | motionEvent.getEdgeFlags(), | 
|  | 4108 | motionEvent.getXPrecision(), | 
|  | 4109 | motionEvent.getYPrecision(), | 
|  | 4110 | motionEvent.getRawXCursorPosition(), | 
|  | 4111 | motionEvent.getRawYCursorPosition(), | 
|  | 4112 | motionEvent.getDownTime(), uint32_t(pointerCount), | 
|  | 4113 | pointerProperties, samplePointerCoords, | 
|  | 4114 | motionEvent.getXOffset(), | 
|  | 4115 | motionEvent.getYOffset()); | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4116 | injectedEntries.push(std::move(injectedEntry)); | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4117 | for (size_t i = motionEvent.getHistorySize(); i > 0; i--) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4118 | sampleEventTimes += 1; | 
|  | 4119 | samplePointerCoords += pointerCount; | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4120 | std::unique_ptr<MotionEntry> nextInjectedEntry = | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4121 | std::make_unique<MotionEntry>(motionEvent.getId(), *sampleEventTimes, | 
|  | 4122 | resolvedDeviceId, motionEvent.getSource(), | 
|  | 4123 | motionEvent.getDisplayId(), policyFlags, | 
| Siarhei Vishniakou | f00a4ec | 2021-06-16 03:55:32 +0000 | [diff] [blame] | 4124 | action, actionButton, flags, | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4125 | motionEvent.getMetaState(), | 
|  | 4126 | motionEvent.getButtonState(), | 
|  | 4127 | motionEvent.getClassification(), | 
|  | 4128 | motionEvent.getEdgeFlags(), | 
|  | 4129 | motionEvent.getXPrecision(), | 
|  | 4130 | motionEvent.getYPrecision(), | 
|  | 4131 | motionEvent.getRawXCursorPosition(), | 
|  | 4132 | motionEvent.getRawYCursorPosition(), | 
|  | 4133 | motionEvent.getDownTime(), | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4134 | uint32_t(pointerCount), pointerProperties, | 
| Siarhei Vishniakou | 5d552c4 | 2021-05-21 05:02:22 +0000 | [diff] [blame] | 4135 | samplePointerCoords, motionEvent.getXOffset(), | 
|  | 4136 | motionEvent.getYOffset()); | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4137 | injectedEntries.push(std::move(nextInjectedEntry)); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4138 | } | 
|  | 4139 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4140 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4141 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4142 | default: | 
| Siarhei Vishniakou | 7feb2ea | 2019-11-25 15:11:23 -0800 | [diff] [blame] | 4143 | ALOGW("Cannot inject %s events", inputEventTypeToString(event->getType())); | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4144 | return InputEventInjectionResult::FAILED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4145 | } | 
|  | 4146 |  | 
|  | 4147 | InjectionState* injectionState = new InjectionState(injectorPid, injectorUid); | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4148 | if (syncMode == InputEventInjectionSync::NONE) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4149 | injectionState->injectionIsAsync = true; | 
|  | 4150 | } | 
|  | 4151 |  | 
|  | 4152 | injectionState->refCount += 1; | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 4153 | injectedEntries.back()->injectionState = injectionState; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4154 |  | 
|  | 4155 | bool needWake = false; | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 4156 | while (!injectedEntries.empty()) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4157 | needWake |= enqueueInboundEventLocked(std::move(injectedEntries.front())); | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 4158 | injectedEntries.pop(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4159 | } | 
|  | 4160 |  | 
|  | 4161 | mLock.unlock(); | 
|  | 4162 |  | 
|  | 4163 | if (needWake) { | 
|  | 4164 | mLooper->wake(); | 
|  | 4165 | } | 
|  | 4166 |  | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4167 | InputEventInjectionResult injectionResult; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4168 | { // acquire lock | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 4169 | std::unique_lock _l(mLock); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4170 |  | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4171 | if (syncMode == InputEventInjectionSync::NONE) { | 
|  | 4172 | injectionResult = InputEventInjectionResult::SUCCEEDED; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4173 | } else { | 
|  | 4174 | for (;;) { | 
|  | 4175 | injectionResult = injectionState->injectionResult; | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4176 | if (injectionResult != InputEventInjectionResult::PENDING) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4177 | break; | 
|  | 4178 | } | 
|  | 4179 |  | 
|  | 4180 | nsecs_t remainingTimeout = endTime - now(); | 
|  | 4181 | if (remainingTimeout <= 0) { | 
|  | 4182 | #if DEBUG_INJECTION | 
|  | 4183 | ALOGD("injectInputEvent - Timed out waiting for injection result " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4184 | "to become available."); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4185 | #endif | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4186 | injectionResult = InputEventInjectionResult::TIMED_OUT; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4187 | break; | 
|  | 4188 | } | 
|  | 4189 |  | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 4190 | mInjectionResultAvailable.wait_for(_l, std::chrono::nanoseconds(remainingTimeout)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4191 | } | 
|  | 4192 |  | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4193 | if (injectionResult == InputEventInjectionResult::SUCCEEDED && | 
|  | 4194 | syncMode == InputEventInjectionSync::WAIT_FOR_FINISHED) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4195 | while (injectionState->pendingForegroundDispatches != 0) { | 
|  | 4196 | #if DEBUG_INJECTION | 
|  | 4197 | ALOGD("injectInputEvent - Waiting for %d pending foreground dispatches.", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4198 | injectionState->pendingForegroundDispatches); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4199 | #endif | 
|  | 4200 | nsecs_t remainingTimeout = endTime - now(); | 
|  | 4201 | if (remainingTimeout <= 0) { | 
|  | 4202 | #if DEBUG_INJECTION | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4203 | ALOGD("injectInputEvent - Timed out waiting for pending foreground " | 
|  | 4204 | "dispatches to finish."); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4205 | #endif | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4206 | injectionResult = InputEventInjectionResult::TIMED_OUT; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4207 | break; | 
|  | 4208 | } | 
|  | 4209 |  | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 4210 | mInjectionSyncFinished.wait_for(_l, std::chrono::nanoseconds(remainingTimeout)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4211 | } | 
|  | 4212 | } | 
|  | 4213 | } | 
|  | 4214 |  | 
|  | 4215 | injectionState->release(); | 
|  | 4216 | } // release lock | 
|  | 4217 |  | 
|  | 4218 | #if DEBUG_INJECTION | 
| Siarhei Vishniakou | 097c3db | 2020-05-06 14:18:38 -0700 | [diff] [blame] | 4219 | ALOGD("injectInputEvent - Finished with result %d. injectorPid=%d, injectorUid=%d", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4220 | injectionResult, injectorPid, injectorUid); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4221 | #endif | 
|  | 4222 |  | 
|  | 4223 | return injectionResult; | 
|  | 4224 | } | 
|  | 4225 |  | 
| Siarhei Vishniakou | 54d3e18 | 2020-01-15 17:38:38 -0800 | [diff] [blame] | 4226 | std::unique_ptr<VerifiedInputEvent> InputDispatcher::verifyInputEvent(const InputEvent& event) { | 
| Gang Wang | e908789 | 2020-01-07 12:17:14 -0500 | [diff] [blame] | 4227 | std::array<uint8_t, 32> calculatedHmac; | 
|  | 4228 | std::unique_ptr<VerifiedInputEvent> result; | 
|  | 4229 | switch (event.getType()) { | 
|  | 4230 | case AINPUT_EVENT_TYPE_KEY: { | 
|  | 4231 | const KeyEvent& keyEvent = static_cast<const KeyEvent&>(event); | 
|  | 4232 | VerifiedKeyEvent verifiedKeyEvent = verifiedKeyEventFromKeyEvent(keyEvent); | 
|  | 4233 | result = std::make_unique<VerifiedKeyEvent>(verifiedKeyEvent); | 
| chaviw | 09c8d2d | 2020-08-24 15:48:26 -0700 | [diff] [blame] | 4234 | calculatedHmac = sign(verifiedKeyEvent); | 
| Gang Wang | e908789 | 2020-01-07 12:17:14 -0500 | [diff] [blame] | 4235 | break; | 
|  | 4236 | } | 
|  | 4237 | case AINPUT_EVENT_TYPE_MOTION: { | 
|  | 4238 | const MotionEvent& motionEvent = static_cast<const MotionEvent&>(event); | 
|  | 4239 | VerifiedMotionEvent verifiedMotionEvent = | 
|  | 4240 | verifiedMotionEventFromMotionEvent(motionEvent); | 
|  | 4241 | result = std::make_unique<VerifiedMotionEvent>(verifiedMotionEvent); | 
| chaviw | 09c8d2d | 2020-08-24 15:48:26 -0700 | [diff] [blame] | 4242 | calculatedHmac = sign(verifiedMotionEvent); | 
| Gang Wang | e908789 | 2020-01-07 12:17:14 -0500 | [diff] [blame] | 4243 | break; | 
|  | 4244 | } | 
|  | 4245 | default: { | 
|  | 4246 | ALOGE("Cannot verify events of type %" PRId32, event.getType()); | 
|  | 4247 | return nullptr; | 
|  | 4248 | } | 
|  | 4249 | } | 
|  | 4250 | if (calculatedHmac == INVALID_HMAC) { | 
|  | 4251 | return nullptr; | 
|  | 4252 | } | 
|  | 4253 | if (calculatedHmac != event.getHmac()) { | 
|  | 4254 | return nullptr; | 
|  | 4255 | } | 
|  | 4256 | return result; | 
| Siarhei Vishniakou | 54d3e18 | 2020-01-15 17:38:38 -0800 | [diff] [blame] | 4257 | } | 
|  | 4258 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4259 | bool InputDispatcher::hasInjectionPermission(int32_t injectorPid, int32_t injectorUid) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4260 | return injectorUid == 0 || | 
|  | 4261 | mPolicy->checkInjectEventsPermissionNonReentrant(injectorPid, injectorUid); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4262 | } | 
|  | 4263 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4264 | void InputDispatcher::setInjectionResult(EventEntry& entry, | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4265 | InputEventInjectionResult injectionResult) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4266 | InjectionState* injectionState = entry.injectionState; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4267 | if (injectionState) { | 
|  | 4268 | #if DEBUG_INJECTION | 
|  | 4269 | ALOGD("Setting input event injection result to %d.  " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4270 | "injectorPid=%d, injectorUid=%d", | 
|  | 4271 | injectionResult, injectionState->injectorPid, injectionState->injectorUid); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4272 | #endif | 
|  | 4273 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4274 | if (injectionState->injectionIsAsync && !(entry.policyFlags & POLICY_FLAG_FILTERED)) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4275 | // Log the outcome since the injector did not wait for the injection result. | 
|  | 4276 | switch (injectionResult) { | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4277 | case InputEventInjectionResult::SUCCEEDED: | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4278 | ALOGV("Asynchronous input event injection succeeded."); | 
|  | 4279 | break; | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4280 | case InputEventInjectionResult::FAILED: | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4281 | ALOGW("Asynchronous input event injection failed."); | 
|  | 4282 | break; | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4283 | case InputEventInjectionResult::PERMISSION_DENIED: | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4284 | ALOGW("Asynchronous input event injection permission denied."); | 
|  | 4285 | break; | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4286 | case InputEventInjectionResult::TIMED_OUT: | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4287 | ALOGW("Asynchronous input event injection timed out."); | 
|  | 4288 | break; | 
| Siarhei Vishniakou | ae6229e | 2019-12-30 16:23:19 -0800 | [diff] [blame] | 4289 | case InputEventInjectionResult::PENDING: | 
|  | 4290 | ALOGE("Setting result to 'PENDING' for asynchronous injection"); | 
|  | 4291 | break; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4292 | } | 
|  | 4293 | } | 
|  | 4294 |  | 
|  | 4295 | injectionState->injectionResult = injectionResult; | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 4296 | mInjectionResultAvailable.notify_all(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4297 | } | 
|  | 4298 | } | 
|  | 4299 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4300 | void InputDispatcher::incrementPendingForegroundDispatches(EventEntry& entry) { | 
|  | 4301 | InjectionState* injectionState = entry.injectionState; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4302 | if (injectionState) { | 
|  | 4303 | injectionState->pendingForegroundDispatches += 1; | 
|  | 4304 | } | 
|  | 4305 | } | 
|  | 4306 |  | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 4307 | void InputDispatcher::decrementPendingForegroundDispatches(EventEntry& entry) { | 
|  | 4308 | InjectionState* injectionState = entry.injectionState; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4309 | if (injectionState) { | 
|  | 4310 | injectionState->pendingForegroundDispatches -= 1; | 
|  | 4311 |  | 
|  | 4312 | if (injectionState->pendingForegroundDispatches == 0) { | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 4313 | mInjectionSyncFinished.notify_all(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4314 | } | 
|  | 4315 | } | 
|  | 4316 | } | 
|  | 4317 |  | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 4318 | const std::vector<sp<InputWindowHandle>>& InputDispatcher::getWindowHandlesLocked( | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 4319 | int32_t displayId) const { | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 4320 | static const std::vector<sp<InputWindowHandle>> EMPTY_WINDOW_HANDLES; | 
|  | 4321 | auto it = mWindowHandlesByDisplay.find(displayId); | 
|  | 4322 | return it != mWindowHandlesByDisplay.end() ? it->second : EMPTY_WINDOW_HANDLES; | 
| Arthur Hung | b92218b | 2018-08-14 12:00:21 +0800 | [diff] [blame] | 4323 | } | 
|  | 4324 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4325 | sp<InputWindowHandle> InputDispatcher::getWindowHandleLocked( | 
| chaviw | fbe5d9c | 2018-12-26 12:23:37 -0800 | [diff] [blame] | 4326 | const sp<IBinder>& windowHandleToken) const { | 
| arthurhung | be73767 | 2020-06-24 12:29:21 +0800 | [diff] [blame] | 4327 | if (windowHandleToken == nullptr) { | 
|  | 4328 | return nullptr; | 
|  | 4329 | } | 
|  | 4330 |  | 
| Arthur Hung | b92218b | 2018-08-14 12:00:21 +0800 | [diff] [blame] | 4331 | for (auto& it : mWindowHandlesByDisplay) { | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 4332 | const std::vector<sp<InputWindowHandle>>& windowHandles = it.second; | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 4333 | for (const sp<InputWindowHandle>& windowHandle : windowHandles) { | 
| chaviw | fbe5d9c | 2018-12-26 12:23:37 -0800 | [diff] [blame] | 4334 | if (windowHandle->getToken() == windowHandleToken) { | 
| Arthur Hung | b92218b | 2018-08-14 12:00:21 +0800 | [diff] [blame] | 4335 | return windowHandle; | 
|  | 4336 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4337 | } | 
|  | 4338 | } | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 4339 | return nullptr; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4340 | } | 
|  | 4341 |  | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 4342 | sp<InputWindowHandle> InputDispatcher::getWindowHandleLocked(const sp<IBinder>& windowHandleToken, | 
|  | 4343 | int displayId) const { | 
|  | 4344 | if (windowHandleToken == nullptr) { | 
|  | 4345 | return nullptr; | 
|  | 4346 | } | 
|  | 4347 |  | 
|  | 4348 | for (const sp<InputWindowHandle>& windowHandle : getWindowHandlesLocked(displayId)) { | 
|  | 4349 | if (windowHandle->getToken() == windowHandleToken) { | 
|  | 4350 | return windowHandle; | 
|  | 4351 | } | 
|  | 4352 | } | 
|  | 4353 | return nullptr; | 
|  | 4354 | } | 
|  | 4355 |  | 
| Prabir Pradhan | 6a9a831 | 2021-04-23 11:59:31 -0700 | [diff] [blame] | 4356 | sp<InputWindowHandle> InputDispatcher::getWindowHandleLocked( | 
|  | 4357 | const sp<InputWindowHandle>& windowHandle) const { | 
| Mady Mellor | 017bcd1 | 2020-06-23 19:12:00 +0000 | [diff] [blame] | 4358 | for (auto& it : mWindowHandlesByDisplay) { | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 4359 | const std::vector<sp<InputWindowHandle>>& windowHandles = it.second; | 
| Mady Mellor | 017bcd1 | 2020-06-23 19:12:00 +0000 | [diff] [blame] | 4360 | for (const sp<InputWindowHandle>& handle : windowHandles) { | 
| arthurhung | be73767 | 2020-06-24 12:29:21 +0800 | [diff] [blame] | 4361 | if (handle->getId() == windowHandle->getId() && | 
|  | 4362 | handle->getToken() == windowHandle->getToken()) { | 
| Mady Mellor | 017bcd1 | 2020-06-23 19:12:00 +0000 | [diff] [blame] | 4363 | if (windowHandle->getInfo()->displayId != it.first) { | 
|  | 4364 | ALOGE("Found window %s in display %" PRId32 | 
|  | 4365 | ", but it should belong to display %" PRId32, | 
|  | 4366 | windowHandle->getName().c_str(), it.first, | 
|  | 4367 | windowHandle->getInfo()->displayId); | 
|  | 4368 | } | 
| Prabir Pradhan | 6a9a831 | 2021-04-23 11:59:31 -0700 | [diff] [blame] | 4369 | return handle; | 
| Arthur Hung | b92218b | 2018-08-14 12:00:21 +0800 | [diff] [blame] | 4370 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4371 | } | 
|  | 4372 | } | 
| Prabir Pradhan | 6a9a831 | 2021-04-23 11:59:31 -0700 | [diff] [blame] | 4373 | return nullptr; | 
|  | 4374 | } | 
|  | 4375 |  | 
|  | 4376 | sp<InputWindowHandle> InputDispatcher::getFocusedWindowHandleLocked(int displayId) const { | 
|  | 4377 | sp<IBinder> focusedToken = mFocusResolver.getFocusedWindowToken(displayId); | 
|  | 4378 | return getWindowHandleLocked(focusedToken, displayId); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4379 | } | 
|  | 4380 |  | 
| Siarhei Vishniakou | a2862a0 | 2020-07-20 16:36:46 -0500 | [diff] [blame] | 4381 | bool InputDispatcher::hasResponsiveConnectionLocked(InputWindowHandle& windowHandle) const { | 
|  | 4382 | sp<Connection> connection = getConnectionLocked(windowHandle.getToken()); | 
|  | 4383 | const bool noInputChannel = | 
|  | 4384 | windowHandle.getInfo()->inputFeatures.test(InputWindowInfo::Feature::NO_INPUT_CHANNEL); | 
|  | 4385 | if (connection != nullptr && noInputChannel) { | 
|  | 4386 | ALOGW("%s has feature NO_INPUT_CHANNEL, but it matched to connection %s", | 
|  | 4387 | windowHandle.getName().c_str(), connection->inputChannel->getName().c_str()); | 
|  | 4388 | return false; | 
|  | 4389 | } | 
|  | 4390 |  | 
|  | 4391 | if (connection == nullptr) { | 
|  | 4392 | if (!noInputChannel) { | 
|  | 4393 | ALOGI("Could not find connection for %s", windowHandle.getName().c_str()); | 
|  | 4394 | } | 
|  | 4395 | return false; | 
|  | 4396 | } | 
|  | 4397 | if (!connection->responsive) { | 
|  | 4398 | ALOGW("Window %s is not responsive", windowHandle.getName().c_str()); | 
|  | 4399 | return false; | 
|  | 4400 | } | 
|  | 4401 | return true; | 
|  | 4402 | } | 
|  | 4403 |  | 
| Siarhei Vishniakou | ce5ab08 | 2020-07-09 17:03:21 -0500 | [diff] [blame] | 4404 | std::shared_ptr<InputChannel> InputDispatcher::getInputChannelLocked( | 
|  | 4405 | const sp<IBinder>& token) const { | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 4406 | auto connectionIt = mConnectionsByToken.find(token); | 
|  | 4407 | if (connectionIt == mConnectionsByToken.end()) { | 
| Robert Carr | 5c8a026 | 2018-10-03 16:30:44 -0700 | [diff] [blame] | 4408 | return nullptr; | 
|  | 4409 | } | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 4410 | return connectionIt->second->inputChannel; | 
| Robert Carr | 5c8a026 | 2018-10-03 16:30:44 -0700 | [diff] [blame] | 4411 | } | 
|  | 4412 |  | 
| Siarhei Vishniakou | b3ad35c | 2019-04-05 10:50:52 -0700 | [diff] [blame] | 4413 | void InputDispatcher::updateWindowHandlesForDisplayLocked( | 
|  | 4414 | const std::vector<sp<InputWindowHandle>>& inputWindowHandles, int32_t displayId) { | 
|  | 4415 | if (inputWindowHandles.empty()) { | 
|  | 4416 | // Remove all handles on a display if there are no windows left. | 
|  | 4417 | mWindowHandlesByDisplay.erase(displayId); | 
|  | 4418 | return; | 
|  | 4419 | } | 
|  | 4420 |  | 
|  | 4421 | // Since we compare the pointer of input window handles across window updates, we need | 
|  | 4422 | // to make sure the handle object for the same window stays unchanged across updates. | 
|  | 4423 | const std::vector<sp<InputWindowHandle>>& oldHandles = getWindowHandlesLocked(displayId); | 
| chaviw | af87b3e | 2019-10-01 16:59:28 -0700 | [diff] [blame] | 4424 | std::unordered_map<int32_t /*id*/, sp<InputWindowHandle>> oldHandlesById; | 
| Siarhei Vishniakou | b3ad35c | 2019-04-05 10:50:52 -0700 | [diff] [blame] | 4425 | for (const sp<InputWindowHandle>& handle : oldHandles) { | 
| chaviw | af87b3e | 2019-10-01 16:59:28 -0700 | [diff] [blame] | 4426 | oldHandlesById[handle->getId()] = handle; | 
| Siarhei Vishniakou | b3ad35c | 2019-04-05 10:50:52 -0700 | [diff] [blame] | 4427 | } | 
|  | 4428 |  | 
|  | 4429 | std::vector<sp<InputWindowHandle>> newHandles; | 
|  | 4430 | for (const sp<InputWindowHandle>& handle : inputWindowHandles) { | 
|  | 4431 | if (!handle->updateInfo()) { | 
|  | 4432 | // handle no longer valid | 
|  | 4433 | continue; | 
|  | 4434 | } | 
|  | 4435 |  | 
|  | 4436 | const InputWindowInfo* info = handle->getInfo(); | 
|  | 4437 | if ((getInputChannelLocked(handle->getToken()) == nullptr && | 
|  | 4438 | info->portalToDisplayId == ADISPLAY_ID_NONE)) { | 
|  | 4439 | const bool noInputChannel = | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 4440 | info->inputFeatures.test(InputWindowInfo::Feature::NO_INPUT_CHANNEL); | 
|  | 4441 | const bool canReceiveInput = !info->flags.test(InputWindowInfo::Flag::NOT_TOUCHABLE) || | 
|  | 4442 | !info->flags.test(InputWindowInfo::Flag::NOT_FOCUSABLE); | 
| Siarhei Vishniakou | b3ad35c | 2019-04-05 10:50:52 -0700 | [diff] [blame] | 4443 | if (canReceiveInput && !noInputChannel) { | 
| John Reck | e071058 | 2019-09-26 13:46:12 -0700 | [diff] [blame] | 4444 | ALOGV("Window handle %s has no registered input channel", | 
| Siarhei Vishniakou | b3ad35c | 2019-04-05 10:50:52 -0700 | [diff] [blame] | 4445 | handle->getName().c_str()); | 
| Robert Carr | 2984b7a | 2020-04-13 17:06:45 -0700 | [diff] [blame] | 4446 | continue; | 
| Siarhei Vishniakou | b3ad35c | 2019-04-05 10:50:52 -0700 | [diff] [blame] | 4447 | } | 
| Siarhei Vishniakou | b3ad35c | 2019-04-05 10:50:52 -0700 | [diff] [blame] | 4448 | } | 
|  | 4449 |  | 
|  | 4450 | if (info->displayId != displayId) { | 
|  | 4451 | ALOGE("Window %s updated by wrong display %d, should belong to display %d", | 
|  | 4452 | handle->getName().c_str(), displayId, info->displayId); | 
|  | 4453 | continue; | 
|  | 4454 | } | 
|  | 4455 |  | 
| Robert Carr | edd1360 | 2020-04-13 17:24:34 -0700 | [diff] [blame] | 4456 | if ((oldHandlesById.find(handle->getId()) != oldHandlesById.end()) && | 
|  | 4457 | (oldHandlesById.at(handle->getId())->getToken() == handle->getToken())) { | 
| chaviw | af87b3e | 2019-10-01 16:59:28 -0700 | [diff] [blame] | 4458 | const sp<InputWindowHandle>& oldHandle = oldHandlesById.at(handle->getId()); | 
| Siarhei Vishniakou | b3ad35c | 2019-04-05 10:50:52 -0700 | [diff] [blame] | 4459 | oldHandle->updateFrom(handle); | 
|  | 4460 | newHandles.push_back(oldHandle); | 
|  | 4461 | } else { | 
|  | 4462 | newHandles.push_back(handle); | 
|  | 4463 | } | 
|  | 4464 | } | 
|  | 4465 |  | 
|  | 4466 | // Insert or replace | 
|  | 4467 | mWindowHandlesByDisplay[displayId] = newHandles; | 
|  | 4468 | } | 
|  | 4469 |  | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4470 | void InputDispatcher::setInputWindows( | 
|  | 4471 | const std::unordered_map<int32_t, std::vector<sp<InputWindowHandle>>>& handlesPerDisplay) { | 
|  | 4472 | { // acquire lock | 
|  | 4473 | std::scoped_lock _l(mLock); | 
| Siarhei Vishniakou | 2508b87 | 2020-12-03 16:33:53 -1000 | [diff] [blame] | 4474 | for (const auto& [displayId, handles] : handlesPerDisplay) { | 
|  | 4475 | setInputWindowsLocked(handles, displayId); | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4476 | } | 
|  | 4477 | } | 
|  | 4478 | // Wake up poll loop since it may need to make new input dispatching choices. | 
|  | 4479 | mLooper->wake(); | 
|  | 4480 | } | 
|  | 4481 |  | 
| Arthur Hung | b92218b | 2018-08-14 12:00:21 +0800 | [diff] [blame] | 4482 | /** | 
|  | 4483 | * Called from InputManagerService, update window handle list by displayId that can receive input. | 
|  | 4484 | * A window handle contains information about InputChannel, Touch Region, Types, Focused,... | 
|  | 4485 | * If set an empty list, remove all handles from the specific display. | 
|  | 4486 | * For focused handle, check if need to change and send a cancel event to previous one. | 
|  | 4487 | * For removed handle, check if need to send a cancel event if already in touch. | 
|  | 4488 | */ | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4489 | void InputDispatcher::setInputWindowsLocked( | 
|  | 4490 | const std::vector<sp<InputWindowHandle>>& inputWindowHandles, int32_t displayId) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4491 | if (DEBUG_FOCUS) { | 
|  | 4492 | std::string windowList; | 
|  | 4493 | for (const sp<InputWindowHandle>& iwh : inputWindowHandles) { | 
|  | 4494 | windowList += iwh->getName() + " "; | 
|  | 4495 | } | 
|  | 4496 | ALOGD("setInputWindows displayId=%" PRId32 " %s", displayId, windowList.c_str()); | 
|  | 4497 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4498 |  | 
| Siarhei Vishniakou | a2862a0 | 2020-07-20 16:36:46 -0500 | [diff] [blame] | 4499 | // Ensure all tokens are null if the window has feature NO_INPUT_CHANNEL | 
|  | 4500 | for (const sp<InputWindowHandle>& window : inputWindowHandles) { | 
|  | 4501 | const bool noInputWindow = | 
|  | 4502 | window->getInfo()->inputFeatures.test(InputWindowInfo::Feature::NO_INPUT_CHANNEL); | 
|  | 4503 | if (noInputWindow && window->getToken() != nullptr) { | 
|  | 4504 | ALOGE("%s has feature NO_INPUT_WINDOW, but a non-null token. Clearing", | 
|  | 4505 | window->getName().c_str()); | 
|  | 4506 | window->releaseChannel(); | 
|  | 4507 | } | 
|  | 4508 | } | 
|  | 4509 |  | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4510 | // Copy old handles for release if they are no longer present. | 
|  | 4511 | const std::vector<sp<InputWindowHandle>> oldWindowHandles = getWindowHandlesLocked(displayId); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4512 |  | 
| Prabir Pradhan | 93a0f91 | 2021-04-21 13:47:42 -0700 | [diff] [blame] | 4513 | // Save the old windows' orientation by ID before it gets updated. | 
|  | 4514 | std::unordered_map<int32_t, uint32_t> oldWindowOrientations; | 
|  | 4515 | for (const sp<InputWindowHandle>& handle : oldWindowHandles) { | 
|  | 4516 | oldWindowOrientations.emplace(handle->getId(), | 
|  | 4517 | handle->getInfo()->transform.getOrientation()); | 
|  | 4518 | } | 
|  | 4519 |  | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4520 | updateWindowHandlesForDisplayLocked(inputWindowHandles, displayId); | 
| Siarhei Vishniakou | b3ad35c | 2019-04-05 10:50:52 -0700 | [diff] [blame] | 4521 |  | 
| Vishnu Nair | 958da93 | 2020-08-21 17:12:37 -0700 | [diff] [blame] | 4522 | const std::vector<sp<InputWindowHandle>>& windowHandles = getWindowHandlesLocked(displayId); | 
|  | 4523 | if (mLastHoverWindowHandle && | 
|  | 4524 | std::find(windowHandles.begin(), windowHandles.end(), mLastHoverWindowHandle) == | 
|  | 4525 | windowHandles.end()) { | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4526 | mLastHoverWindowHandle = nullptr; | 
|  | 4527 | } | 
|  | 4528 |  | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 4529 | std::optional<FocusResolver::FocusChanges> changes = | 
|  | 4530 | mFocusResolver.setInputWindows(displayId, windowHandles); | 
|  | 4531 | if (changes) { | 
|  | 4532 | onFocusChangedLocked(*changes); | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4533 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4534 |  | 
| Siarhei Vishniakou | 4700f82 | 2020-03-24 19:05:54 -0700 | [diff] [blame] | 4535 | std::unordered_map<int32_t, TouchState>::iterator stateIt = | 
|  | 4536 | mTouchStatesByDisplay.find(displayId); | 
|  | 4537 | if (stateIt != mTouchStatesByDisplay.end()) { | 
|  | 4538 | TouchState& state = stateIt->second; | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4539 | for (size_t i = 0; i < state.windows.size();) { | 
|  | 4540 | TouchedWindow& touchedWindow = state.windows[i]; | 
| Prabir Pradhan | 6a9a831 | 2021-04-23 11:59:31 -0700 | [diff] [blame] | 4541 | if (getWindowHandleLocked(touchedWindow.windowHandle) == nullptr) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4542 | if (DEBUG_FOCUS) { | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4543 | ALOGD("Touched window was removed: %s in display %" PRId32, | 
|  | 4544 | touchedWindow.windowHandle->getName().c_str(), displayId); | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4545 | } | 
| Siarhei Vishniakou | ce5ab08 | 2020-07-09 17:03:21 -0500 | [diff] [blame] | 4546 | std::shared_ptr<InputChannel> touchedInputChannel = | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4547 | getInputChannelLocked(touchedWindow.windowHandle->getToken()); | 
|  | 4548 | if (touchedInputChannel != nullptr) { | 
|  | 4549 | CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS, | 
|  | 4550 | "touched window was removed"); | 
|  | 4551 | synthesizeCancelationEventsForInputChannelLocked(touchedInputChannel, options); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4552 | } | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4553 | state.windows.erase(state.windows.begin() + i); | 
|  | 4554 | } else { | 
|  | 4555 | ++i; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4556 | } | 
|  | 4557 | } | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 4558 |  | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 4559 | // If drag window is gone, it would receive a cancel event and broadcast the DRAG_END. We | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 4560 | // could just clear the state here. | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 4561 | if (mDragState && | 
|  | 4562 | std::find(windowHandles.begin(), windowHandles.end(), mDragState->dragWindow) == | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 4563 | windowHandles.end()) { | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 4564 | mDragState.reset(); | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 4565 | } | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4566 | } | 
| Arthur Hung | 25e2af1 | 2020-03-26 12:58:37 +0000 | [diff] [blame] | 4567 |  | 
| Prabir Pradhan | 93a0f91 | 2021-04-21 13:47:42 -0700 | [diff] [blame] | 4568 | if (isPerWindowInputRotationEnabled()) { | 
|  | 4569 | // Determine if the orientation of any of the input windows have changed, and cancel all | 
|  | 4570 | // pointer events if necessary. | 
|  | 4571 | for (const sp<InputWindowHandle>& oldWindowHandle : oldWindowHandles) { | 
|  | 4572 | const sp<InputWindowHandle> newWindowHandle = getWindowHandleLocked(oldWindowHandle); | 
|  | 4573 | if (newWindowHandle != nullptr && | 
|  | 4574 | newWindowHandle->getInfo()->transform.getOrientation() != | 
|  | 4575 | oldWindowOrientations[oldWindowHandle->getId()]) { | 
|  | 4576 | std::shared_ptr<InputChannel> inputChannel = | 
|  | 4577 | getInputChannelLocked(newWindowHandle->getToken()); | 
|  | 4578 | if (inputChannel != nullptr) { | 
|  | 4579 | CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS, | 
|  | 4580 | "touched window's orientation changed"); | 
|  | 4581 | synthesizeCancelationEventsForInputChannelLocked(inputChannel, options); | 
|  | 4582 | } | 
|  | 4583 | } | 
|  | 4584 | } | 
|  | 4585 | } | 
|  | 4586 |  | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4587 | // Release information for windows that are no longer present. | 
|  | 4588 | // This ensures that unused input channels are released promptly. | 
|  | 4589 | // Otherwise, they might stick around until the window handle is destroyed | 
|  | 4590 | // which might not happen until the next GC. | 
|  | 4591 | for (const sp<InputWindowHandle>& oldWindowHandle : oldWindowHandles) { | 
| Prabir Pradhan | 6a9a831 | 2021-04-23 11:59:31 -0700 | [diff] [blame] | 4592 | if (getWindowHandleLocked(oldWindowHandle) == nullptr) { | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4593 | if (DEBUG_FOCUS) { | 
|  | 4594 | ALOGD("Window went away: %s", oldWindowHandle->getName().c_str()); | 
| Arthur Hung | 25e2af1 | 2020-03-26 12:58:37 +0000 | [diff] [blame] | 4595 | } | 
| Arthur Hung | 72d8dc3 | 2020-03-28 00:48:39 +0000 | [diff] [blame] | 4596 | oldWindowHandle->releaseChannel(); | 
| Siarhei Vishniakou | 2508b87 | 2020-12-03 16:33:53 -1000 | [diff] [blame] | 4597 | // To avoid making too many calls into the compat framework, only | 
|  | 4598 | // check for window flags when windows are going away. | 
|  | 4599 | // TODO(b/157929241) : delete this. This is only needed temporarily | 
|  | 4600 | // in order to gather some data about the flag usage | 
|  | 4601 | if (oldWindowHandle->getInfo()->flags.test(InputWindowInfo::Flag::SLIPPERY)) { | 
|  | 4602 | ALOGW("%s has FLAG_SLIPPERY. Please report this in b/157929241", | 
|  | 4603 | oldWindowHandle->getName().c_str()); | 
|  | 4604 | if (mCompatService != nullptr) { | 
|  | 4605 | mCompatService->reportChangeByUid(IInputConstants::BLOCK_FLAG_SLIPPERY, | 
|  | 4606 | oldWindowHandle->getInfo()->ownerUid); | 
|  | 4607 | } | 
|  | 4608 | } | 
| Arthur Hung | 25e2af1 | 2020-03-26 12:58:37 +0000 | [diff] [blame] | 4609 | } | 
| chaviw | 291d88a | 2019-02-14 10:33:58 -0800 | [diff] [blame] | 4610 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4611 | } | 
|  | 4612 |  | 
|  | 4613 | void InputDispatcher::setFocusedApplication( | 
| Chris Ye | a209fde | 2020-07-22 13:54:51 -0700 | [diff] [blame] | 4614 | int32_t displayId, const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4615 | if (DEBUG_FOCUS) { | 
|  | 4616 | ALOGD("setFocusedApplication displayId=%" PRId32 " %s", displayId, | 
|  | 4617 | inputApplicationHandle ? inputApplicationHandle->getName().c_str() : "<nullptr>"); | 
|  | 4618 | } | 
| Siarhei Vishniakou | e41c451 | 2020-09-08 19:35:58 -0500 | [diff] [blame] | 4619 | { // acquire lock | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 4620 | std::scoped_lock _l(mLock); | 
| Vishnu Nair | 599f141 | 2021-06-21 10:39:58 -0700 | [diff] [blame] | 4621 | setFocusedApplicationLocked(displayId, inputApplicationHandle); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4622 | } // release lock | 
|  | 4623 |  | 
|  | 4624 | // Wake up poll loop since it may need to make new input dispatching choices. | 
|  | 4625 | mLooper->wake(); | 
|  | 4626 | } | 
|  | 4627 |  | 
| Vishnu Nair | 599f141 | 2021-06-21 10:39:58 -0700 | [diff] [blame] | 4628 | void InputDispatcher::setFocusedApplicationLocked( | 
|  | 4629 | int32_t displayId, const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) { | 
|  | 4630 | std::shared_ptr<InputApplicationHandle> oldFocusedApplicationHandle = | 
|  | 4631 | getValueByKey(mFocusedApplicationHandlesByDisplay, displayId); | 
|  | 4632 |  | 
|  | 4633 | if (sharedPointersEqual(oldFocusedApplicationHandle, inputApplicationHandle)) { | 
|  | 4634 | return; // This application is already focused. No need to wake up or change anything. | 
|  | 4635 | } | 
|  | 4636 |  | 
|  | 4637 | // Set the new application handle. | 
|  | 4638 | if (inputApplicationHandle != nullptr) { | 
|  | 4639 | mFocusedApplicationHandlesByDisplay[displayId] = inputApplicationHandle; | 
|  | 4640 | } else { | 
|  | 4641 | mFocusedApplicationHandlesByDisplay.erase(displayId); | 
|  | 4642 | } | 
|  | 4643 |  | 
|  | 4644 | // No matter what the old focused application was, stop waiting on it because it is | 
|  | 4645 | // no longer focused. | 
|  | 4646 | resetNoFocusedWindowTimeoutLocked(); | 
|  | 4647 | } | 
|  | 4648 |  | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4649 | /** | 
|  | 4650 | * Sets the focused display, which is responsible for receiving focus-dispatched input events where | 
|  | 4651 | * the display not specified. | 
|  | 4652 | * | 
|  | 4653 | * We track any unreleased events for each window. If a window loses the ability to receive the | 
|  | 4654 | * released event, we will send a cancel event to it. So when the focused display is changed, we | 
|  | 4655 | * cancel all the unreleased display-unspecified events for the focused window on the old focused | 
|  | 4656 | * display. The display-specified events won't be affected. | 
|  | 4657 | */ | 
|  | 4658 | void InputDispatcher::setFocusedDisplay(int32_t displayId) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4659 | if (DEBUG_FOCUS) { | 
|  | 4660 | ALOGD("setFocusedDisplay displayId=%" PRId32, displayId); | 
|  | 4661 | } | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4662 | { // acquire lock | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 4663 | std::scoped_lock _l(mLock); | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4664 |  | 
|  | 4665 | if (mFocusedDisplayId != displayId) { | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 4666 | sp<IBinder> oldFocusedWindowToken = | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 4667 | mFocusResolver.getFocusedWindowToken(mFocusedDisplayId); | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 4668 | if (oldFocusedWindowToken != nullptr) { | 
| Siarhei Vishniakou | ce5ab08 | 2020-07-09 17:03:21 -0500 | [diff] [blame] | 4669 | std::shared_ptr<InputChannel> inputChannel = | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 4670 | getInputChannelLocked(oldFocusedWindowToken); | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4671 | if (inputChannel != nullptr) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4672 | CancelationOptions | 
|  | 4673 | options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, | 
|  | 4674 | "The display which contains this window no longer has focus."); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 4675 | options.displayId = ADISPLAY_ID_NONE; | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4676 | synthesizeCancelationEventsForInputChannelLocked(inputChannel, options); | 
|  | 4677 | } | 
|  | 4678 | } | 
|  | 4679 | mFocusedDisplayId = displayId; | 
|  | 4680 |  | 
| Chris Ye | 3c2d6f5 | 2020-08-09 10:39:48 -0700 | [diff] [blame] | 4681 | // Find new focused window and validate | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 4682 | sp<IBinder> newFocusedWindowToken = mFocusResolver.getFocusedWindowToken(displayId); | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 4683 | notifyFocusChangedLocked(oldFocusedWindowToken, newFocusedWindowToken); | 
| Robert Carr | f759f16 | 2018-11-13 12:57:11 -0800 | [diff] [blame] | 4684 |  | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 4685 | if (newFocusedWindowToken == nullptr) { | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4686 | ALOGW("Focused display #%" PRId32 " does not have a focused window.", displayId); | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 4687 | if (mFocusResolver.hasFocusedWindowTokens()) { | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 4688 | ALOGE("But another display has a focused window\n%s", | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 4689 | mFocusResolver.dumpFocusedWindows().c_str()); | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4690 | } | 
|  | 4691 | } | 
|  | 4692 | } | 
|  | 4693 |  | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4694 | if (DEBUG_FOCUS) { | 
|  | 4695 | logDispatchStateLocked(); | 
|  | 4696 | } | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4697 | } // release lock | 
|  | 4698 |  | 
|  | 4699 | // Wake up poll loop since it may need to make new input dispatching choices. | 
|  | 4700 | mLooper->wake(); | 
|  | 4701 | } | 
|  | 4702 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4703 | void InputDispatcher::setInputDispatchMode(bool enabled, bool frozen) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4704 | if (DEBUG_FOCUS) { | 
|  | 4705 | ALOGD("setInputDispatchMode: enabled=%d, frozen=%d", enabled, frozen); | 
|  | 4706 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4707 |  | 
|  | 4708 | bool changed; | 
|  | 4709 | { // acquire lock | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 4710 | std::scoped_lock _l(mLock); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4711 |  | 
|  | 4712 | if (mDispatchEnabled != enabled || mDispatchFrozen != frozen) { | 
|  | 4713 | if (mDispatchFrozen && !frozen) { | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 4714 | resetNoFocusedWindowTimeoutLocked(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4715 | } | 
|  | 4716 |  | 
|  | 4717 | if (mDispatchEnabled && !enabled) { | 
|  | 4718 | resetAndDropEverythingLocked("dispatcher is being disabled"); | 
|  | 4719 | } | 
|  | 4720 |  | 
|  | 4721 | mDispatchEnabled = enabled; | 
|  | 4722 | mDispatchFrozen = frozen; | 
|  | 4723 | changed = true; | 
|  | 4724 | } else { | 
|  | 4725 | changed = false; | 
|  | 4726 | } | 
|  | 4727 |  | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4728 | if (DEBUG_FOCUS) { | 
|  | 4729 | logDispatchStateLocked(); | 
|  | 4730 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4731 | } // release lock | 
|  | 4732 |  | 
|  | 4733 | if (changed) { | 
|  | 4734 | // Wake up poll loop since it may need to make new input dispatching choices. | 
|  | 4735 | mLooper->wake(); | 
|  | 4736 | } | 
|  | 4737 | } | 
|  | 4738 |  | 
|  | 4739 | void InputDispatcher::setInputFilterEnabled(bool enabled) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4740 | if (DEBUG_FOCUS) { | 
|  | 4741 | ALOGD("setInputFilterEnabled: enabled=%d", enabled); | 
|  | 4742 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4743 |  | 
|  | 4744 | { // acquire lock | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 4745 | std::scoped_lock _l(mLock); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4746 |  | 
|  | 4747 | if (mInputFilterEnabled == enabled) { | 
|  | 4748 | return; | 
|  | 4749 | } | 
|  | 4750 |  | 
|  | 4751 | mInputFilterEnabled = enabled; | 
|  | 4752 | resetAndDropEverythingLocked("input filter is being enabled or disabled"); | 
|  | 4753 | } // release lock | 
|  | 4754 |  | 
|  | 4755 | // Wake up poll loop since there might be work to do to drop everything. | 
|  | 4756 | mLooper->wake(); | 
|  | 4757 | } | 
|  | 4758 |  | 
| Siarhei Vishniakou | f3bc1aa | 2019-11-25 13:48:53 -0800 | [diff] [blame] | 4759 | void InputDispatcher::setInTouchMode(bool inTouchMode) { | 
|  | 4760 | std::scoped_lock lock(mLock); | 
|  | 4761 | mInTouchMode = inTouchMode; | 
|  | 4762 | } | 
|  | 4763 |  | 
| Bernardo Rufino | ea97d18 | 2020-08-19 14:43:14 +0100 | [diff] [blame] | 4764 | void InputDispatcher::setMaximumObscuringOpacityForTouch(float opacity) { | 
|  | 4765 | if (opacity < 0 || opacity > 1) { | 
|  | 4766 | LOG_ALWAYS_FATAL("Maximum obscuring opacity for touch should be >= 0 and <= 1"); | 
|  | 4767 | return; | 
|  | 4768 | } | 
|  | 4769 |  | 
|  | 4770 | std::scoped_lock lock(mLock); | 
|  | 4771 | mMaximumObscuringOpacityForTouch = opacity; | 
|  | 4772 | } | 
|  | 4773 |  | 
|  | 4774 | void InputDispatcher::setBlockUntrustedTouchesMode(BlockUntrustedTouchesMode mode) { | 
|  | 4775 | std::scoped_lock lock(mLock); | 
|  | 4776 | mBlockUntrustedTouchesMode = mode; | 
|  | 4777 | } | 
|  | 4778 |  | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 4779 | bool InputDispatcher::transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken, | 
|  | 4780 | bool isDragDrop) { | 
| chaviw | fbe5d9c | 2018-12-26 12:23:37 -0800 | [diff] [blame] | 4781 | if (fromToken == toToken) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4782 | if (DEBUG_FOCUS) { | 
|  | 4783 | ALOGD("Trivial transfer to same window."); | 
|  | 4784 | } | 
| chaviw | fbe5d9c | 2018-12-26 12:23:37 -0800 | [diff] [blame] | 4785 | return true; | 
|  | 4786 | } | 
|  | 4787 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4788 | { // acquire lock | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 4789 | std::scoped_lock _l(mLock); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4790 |  | 
| chaviw | fbe5d9c | 2018-12-26 12:23:37 -0800 | [diff] [blame] | 4791 | sp<InputWindowHandle> fromWindowHandle = getWindowHandleLocked(fromToken); | 
|  | 4792 | sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(toToken); | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 4793 | if (fromWindowHandle == nullptr || toWindowHandle == nullptr) { | 
| chaviw | fbe5d9c | 2018-12-26 12:23:37 -0800 | [diff] [blame] | 4794 | ALOGW("Cannot transfer focus because from or to window not found."); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4795 | return false; | 
|  | 4796 | } | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4797 | if (DEBUG_FOCUS) { | 
|  | 4798 | ALOGD("transferTouchFocus: fromWindowHandle=%s, toWindowHandle=%s", | 
|  | 4799 | fromWindowHandle->getName().c_str(), toWindowHandle->getName().c_str()); | 
|  | 4800 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4801 | if (fromWindowHandle->getInfo()->displayId != toWindowHandle->getInfo()->displayId) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4802 | if (DEBUG_FOCUS) { | 
|  | 4803 | ALOGD("Cannot transfer focus because windows are on different displays."); | 
|  | 4804 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4805 | return false; | 
|  | 4806 | } | 
|  | 4807 |  | 
|  | 4808 | bool found = false; | 
| Siarhei Vishniakou | 4700f82 | 2020-03-24 19:05:54 -0700 | [diff] [blame] | 4809 | for (std::pair<const int32_t, TouchState>& pair : mTouchStatesByDisplay) { | 
|  | 4810 | TouchState& state = pair.second; | 
| Jeff Brown | f086ddb | 2014-02-11 14:28:48 -0800 | [diff] [blame] | 4811 | for (size_t i = 0; i < state.windows.size(); i++) { | 
|  | 4812 | const TouchedWindow& touchedWindow = state.windows[i]; | 
|  | 4813 | if (touchedWindow.windowHandle == fromWindowHandle) { | 
|  | 4814 | int32_t oldTargetFlags = touchedWindow.targetFlags; | 
|  | 4815 | BitSet32 pointerIds = touchedWindow.pointerIds; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4816 |  | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 4817 | state.windows.erase(state.windows.begin() + i); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4818 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4819 | int32_t newTargetFlags = oldTargetFlags & | 
|  | 4820 | (InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_SPLIT | | 
|  | 4821 | InputTarget::FLAG_DISPATCH_AS_IS); | 
| Jeff Brown | f086ddb | 2014-02-11 14:28:48 -0800 | [diff] [blame] | 4822 | state.addOrUpdateWindow(toWindowHandle, newTargetFlags, pointerIds); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4823 |  | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 4824 | // Store the dragging window. | 
|  | 4825 | if (isDragDrop) { | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 4826 | mDragState = std::make_unique<DragState>(toWindowHandle); | 
| arthurhung | b89ccb0 | 2020-12-30 16:19:01 +0800 | [diff] [blame] | 4827 | } | 
|  | 4828 |  | 
| Jeff Brown | f086ddb | 2014-02-11 14:28:48 -0800 | [diff] [blame] | 4829 | found = true; | 
|  | 4830 | goto Found; | 
|  | 4831 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4832 | } | 
|  | 4833 | } | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4834 | Found: | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4835 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4836 | if (!found) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4837 | if (DEBUG_FOCUS) { | 
|  | 4838 | ALOGD("Focus transfer failed because from window did not have focus."); | 
|  | 4839 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4840 | return false; | 
|  | 4841 | } | 
|  | 4842 |  | 
| Siarhei Vishniakou | d0d71b6 | 2019-10-14 14:50:45 -0700 | [diff] [blame] | 4843 | sp<Connection> fromConnection = getConnectionLocked(fromToken); | 
|  | 4844 | sp<Connection> toConnection = getConnectionLocked(toToken); | 
| Siarhei Vishniakou | 146ecfd | 2019-07-29 16:04:31 -0700 | [diff] [blame] | 4845 | if (fromConnection != nullptr && toConnection != nullptr) { | 
| Svet Ganov | 5d3bc37 | 2020-01-26 23:11:07 -0800 | [diff] [blame] | 4846 | fromConnection->inputState.mergePointerStateTo(toConnection->inputState); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4847 | CancelationOptions | 
|  | 4848 | options(CancelationOptions::CANCEL_POINTER_EVENTS, | 
|  | 4849 | "transferring touch focus from this window to another window"); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4850 | synthesizeCancelationEventsForConnectionLocked(fromConnection, options); | 
| Svet Ganov | 5d3bc37 | 2020-01-26 23:11:07 -0800 | [diff] [blame] | 4851 | synthesizePointerDownEventsForConnectionLocked(toConnection); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4852 | } | 
|  | 4853 |  | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4854 | if (DEBUG_FOCUS) { | 
|  | 4855 | logDispatchStateLocked(); | 
|  | 4856 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4857 | } // release lock | 
|  | 4858 |  | 
|  | 4859 | // Wake up poll loop since it may need to make new input dispatching choices. | 
|  | 4860 | mLooper->wake(); | 
|  | 4861 | return true; | 
|  | 4862 | } | 
|  | 4863 |  | 
| Siarhei Vishniakou | d0c6bc8 | 2021-03-13 03:14:52 +0000 | [diff] [blame] | 4864 | // Binder call | 
|  | 4865 | bool InputDispatcher::transferTouch(const sp<IBinder>& destChannelToken) { | 
|  | 4866 | sp<IBinder> fromToken; | 
|  | 4867 | { // acquire lock | 
|  | 4868 | std::scoped_lock _l(mLock); | 
|  | 4869 |  | 
|  | 4870 | sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(destChannelToken); | 
|  | 4871 | if (toWindowHandle == nullptr) { | 
|  | 4872 | ALOGW("Could not find window associated with token=%p", destChannelToken.get()); | 
|  | 4873 | return false; | 
|  | 4874 | } | 
|  | 4875 |  | 
|  | 4876 | const int32_t displayId = toWindowHandle->getInfo()->displayId; | 
|  | 4877 |  | 
|  | 4878 | auto touchStateIt = mTouchStatesByDisplay.find(displayId); | 
|  | 4879 | if (touchStateIt == mTouchStatesByDisplay.end()) { | 
|  | 4880 | ALOGD("Could not transfer touch because the display %" PRId32 " is not being touched", | 
|  | 4881 | displayId); | 
|  | 4882 | return false; | 
|  | 4883 | } | 
|  | 4884 |  | 
|  | 4885 | TouchState& state = touchStateIt->second; | 
|  | 4886 | if (state.windows.size() != 1) { | 
|  | 4887 | ALOGW("Cannot transfer touch state because there are %zu windows being touched", | 
|  | 4888 | state.windows.size()); | 
|  | 4889 | return false; | 
|  | 4890 | } | 
|  | 4891 | const TouchedWindow& touchedWindow = state.windows[0]; | 
|  | 4892 | fromToken = touchedWindow.windowHandle->getToken(); | 
|  | 4893 | } // release lock | 
|  | 4894 |  | 
|  | 4895 | return transferTouchFocus(fromToken, destChannelToken); | 
|  | 4896 | } | 
|  | 4897 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4898 | void InputDispatcher::resetAndDropEverythingLocked(const char* reason) { | 
| Siarhei Vishniakou | 8658728 | 2019-09-09 18:20:15 +0100 | [diff] [blame] | 4899 | if (DEBUG_FOCUS) { | 
|  | 4900 | ALOGD("Resetting and dropping all events (%s).", reason); | 
|  | 4901 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4902 |  | 
|  | 4903 | CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS, reason); | 
|  | 4904 | synthesizeCancelationEventsForAllConnectionsLocked(options); | 
|  | 4905 |  | 
|  | 4906 | resetKeyRepeatLocked(); | 
|  | 4907 | releasePendingEventLocked(); | 
|  | 4908 | drainInboundQueueLocked(); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 4909 | resetNoFocusedWindowTimeoutLocked(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4910 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 4911 | mAnrTracker.clear(); | 
| Jeff Brown | f086ddb | 2014-02-11 14:28:48 -0800 | [diff] [blame] | 4912 | mTouchStatesByDisplay.clear(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4913 | mLastHoverWindowHandle.clear(); | 
| Michael Wright | 78f2444 | 2014-08-06 15:55:28 -0700 | [diff] [blame] | 4914 | mReplacedKeys.clear(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4915 | } | 
|  | 4916 |  | 
|  | 4917 | void InputDispatcher::logDispatchStateLocked() { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 4918 | std::string dump; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4919 | dumpDispatchStateLocked(dump); | 
|  | 4920 |  | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 4921 | std::istringstream stream(dump); | 
|  | 4922 | std::string line; | 
|  | 4923 |  | 
|  | 4924 | while (std::getline(stream, line, '\n')) { | 
|  | 4925 | ALOGD("%s", line.c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4926 | } | 
|  | 4927 | } | 
|  | 4928 |  | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 4929 | std::string InputDispatcher::dumpPointerCaptureStateLocked() { | 
|  | 4930 | std::string dump; | 
|  | 4931 |  | 
|  | 4932 | dump += StringPrintf(INDENT "FocusedWindowRequestedPointerCapture: %s\n", | 
|  | 4933 | toString(mFocusedWindowRequestedPointerCapture)); | 
|  | 4934 |  | 
|  | 4935 | std::string windowName = "None"; | 
|  | 4936 | if (mWindowTokenWithPointerCapture) { | 
|  | 4937 | const sp<InputWindowHandle> captureWindowHandle = | 
|  | 4938 | getWindowHandleLocked(mWindowTokenWithPointerCapture); | 
|  | 4939 | windowName = captureWindowHandle ? captureWindowHandle->getName().c_str() | 
|  | 4940 | : "token has capture without window"; | 
|  | 4941 | } | 
|  | 4942 | dump += StringPrintf(INDENT "CurrentWindowWithPointerCapture: %s\n", windowName.c_str()); | 
|  | 4943 |  | 
|  | 4944 | return dump; | 
|  | 4945 | } | 
|  | 4946 |  | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 4947 | void InputDispatcher::dumpDispatchStateLocked(std::string& dump) { | 
| Siarhei Vishniakou | 043a3ec | 2019-05-01 11:30:46 -0700 | [diff] [blame] | 4948 | dump += StringPrintf(INDENT "DispatchEnabled: %s\n", toString(mDispatchEnabled)); | 
|  | 4949 | dump += StringPrintf(INDENT "DispatchFrozen: %s\n", toString(mDispatchFrozen)); | 
|  | 4950 | dump += StringPrintf(INDENT "InputFilterEnabled: %s\n", toString(mInputFilterEnabled)); | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4951 | dump += StringPrintf(INDENT "FocusedDisplayId: %" PRId32 "\n", mFocusedDisplayId); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4952 |  | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4953 | if (!mFocusedApplicationHandlesByDisplay.empty()) { | 
|  | 4954 | dump += StringPrintf(INDENT "FocusedApplications:\n"); | 
|  | 4955 | for (auto& it : mFocusedApplicationHandlesByDisplay) { | 
|  | 4956 | const int32_t displayId = it.first; | 
| Chris Ye | a209fde | 2020-07-22 13:54:51 -0700 | [diff] [blame] | 4957 | const std::shared_ptr<InputApplicationHandle>& applicationHandle = it.second; | 
| Siarhei Vishniakou | 7062295 | 2020-07-30 11:17:23 -0500 | [diff] [blame] | 4958 | const std::chrono::duration timeout = | 
|  | 4959 | applicationHandle->getDispatchingTimeout(DEFAULT_INPUT_DISPATCHING_TIMEOUT); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4960 | dump += StringPrintf(INDENT2 "displayId=%" PRId32 | 
| Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 4961 | ", name='%s', dispatchingTimeout=%" PRId64 "ms\n", | 
| Siarhei Vishniakou | 7062295 | 2020-07-30 11:17:23 -0500 | [diff] [blame] | 4962 | displayId, applicationHandle->getName().c_str(), millis(timeout)); | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4963 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4964 | } else { | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4965 | dump += StringPrintf(INDENT "FocusedApplications: <none>\n"); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4966 | } | 
| Tiger Huang | 721e26f | 2018-07-24 22:26:19 +0800 | [diff] [blame] | 4967 |  | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 4968 | dump += mFocusResolver.dump(); | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 4969 | dump += dumpPointerCaptureStateLocked(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4970 |  | 
| Siarhei Vishniakou | 4700f82 | 2020-03-24 19:05:54 -0700 | [diff] [blame] | 4971 | if (!mTouchStatesByDisplay.empty()) { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 4972 | dump += StringPrintf(INDENT "TouchStatesByDisplay:\n"); | 
| Siarhei Vishniakou | 4700f82 | 2020-03-24 19:05:54 -0700 | [diff] [blame] | 4973 | for (const std::pair<int32_t, TouchState>& pair : mTouchStatesByDisplay) { | 
|  | 4974 | const TouchState& state = pair.second; | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 4975 | dump += StringPrintf(INDENT2 "%d: down=%s, split=%s, deviceId=%d, source=0x%08x\n", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4976 | state.displayId, toString(state.down), toString(state.split), | 
|  | 4977 | state.deviceId, state.source); | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 4978 | if (!state.windows.empty()) { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 4979 | dump += INDENT3 "Windows:\n"; | 
| Jeff Brown | f086ddb | 2014-02-11 14:28:48 -0800 | [diff] [blame] | 4980 | for (size_t i = 0; i < state.windows.size(); i++) { | 
|  | 4981 | const TouchedWindow& touchedWindow = state.windows[i]; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4982 | dump += StringPrintf(INDENT4 | 
|  | 4983 | "%zu: name='%s', pointerIds=0x%0x, targetFlags=0x%x\n", | 
|  | 4984 | i, touchedWindow.windowHandle->getName().c_str(), | 
|  | 4985 | touchedWindow.pointerIds.value, touchedWindow.targetFlags); | 
| Jeff Brown | f086ddb | 2014-02-11 14:28:48 -0800 | [diff] [blame] | 4986 | } | 
|  | 4987 | } else { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 4988 | dump += INDENT3 "Windows: <none>\n"; | 
| Jeff Brown | f086ddb | 2014-02-11 14:28:48 -0800 | [diff] [blame] | 4989 | } | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 4990 | if (!state.portalWindows.empty()) { | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 4991 | dump += INDENT3 "Portal windows:\n"; | 
|  | 4992 | for (size_t i = 0; i < state.portalWindows.size(); i++) { | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 4993 | const sp<InputWindowHandle> portalWindowHandle = state.portalWindows[i]; | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 4994 | dump += StringPrintf(INDENT4 "%zu: name='%s'\n", i, | 
|  | 4995 | portalWindowHandle->getName().c_str()); | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 4996 | } | 
|  | 4997 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 4998 | } | 
|  | 4999 | } else { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5000 | dump += INDENT "TouchStates: <no displays touched>\n"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5001 | } | 
|  | 5002 |  | 
| arthurhung | 6d4bed9 | 2021-03-17 11:59:33 +0800 | [diff] [blame] | 5003 | if (mDragState) { | 
|  | 5004 | dump += StringPrintf(INDENT "DragState:\n"); | 
|  | 5005 | mDragState->dump(dump, INDENT2); | 
|  | 5006 | } | 
|  | 5007 |  | 
| Arthur Hung | b92218b | 2018-08-14 12:00:21 +0800 | [diff] [blame] | 5008 | if (!mWindowHandlesByDisplay.empty()) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5009 | for (auto& it : mWindowHandlesByDisplay) { | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 5010 | const std::vector<sp<InputWindowHandle>> windowHandles = it.second; | 
| Arthur Hung | 3b413f2 | 2018-10-26 18:05:34 +0800 | [diff] [blame] | 5011 | dump += StringPrintf(INDENT "Display: %" PRId32 "\n", it.first); | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 5012 | if (!windowHandles.empty()) { | 
| Arthur Hung | b92218b | 2018-08-14 12:00:21 +0800 | [diff] [blame] | 5013 | dump += INDENT2 "Windows:\n"; | 
|  | 5014 | for (size_t i = 0; i < windowHandles.size(); i++) { | 
| Arthur Hung | 7c3ae9c | 2019-03-11 11:23:03 +0800 | [diff] [blame] | 5015 | const sp<InputWindowHandle>& windowHandle = windowHandles[i]; | 
| Arthur Hung | b92218b | 2018-08-14 12:00:21 +0800 | [diff] [blame] | 5016 | const InputWindowInfo* windowInfo = windowHandle->getInfo(); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5017 |  | 
| Bernardo Rufino | 0f6a36e | 2020-11-11 10:10:59 +0000 | [diff] [blame] | 5018 | dump += StringPrintf(INDENT3 "%zu: name='%s', id=%" PRId32 ", displayId=%d, " | 
| Vishnu Nair | 47074b8 | 2020-08-14 11:54:47 -0700 | [diff] [blame] | 5019 | "portalToDisplayId=%d, paused=%s, focusable=%s, " | 
| Bernardo Rufino | 0f6a36e | 2020-11-11 10:10:59 +0000 | [diff] [blame] | 5020 | "hasWallpaper=%s, visible=%s, alpha=%.2f, " | 
| Bernardo Rufino | 5fd822d | 2020-11-13 16:11:39 +0000 | [diff] [blame] | 5021 | "flags=%s, type=%s, " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5022 | "frame=[%d,%d][%d,%d], globalScale=%f, " | 
| Bernardo Rufino | 49d99e4 | 2021-01-18 15:16:59 +0000 | [diff] [blame] | 5023 | "applicationInfo.name=%s, " | 
|  | 5024 | "applicationInfo.token=%s, " | 
| chaviw | 1ff3d1e | 2020-07-01 15:53:47 -0700 | [diff] [blame] | 5025 | "touchableRegion=", | 
| Bernardo Rufino | 0f6a36e | 2020-11-11 10:10:59 +0000 | [diff] [blame] | 5026 | i, windowInfo->name.c_str(), windowInfo->id, | 
|  | 5027 | windowInfo->displayId, windowInfo->portalToDisplayId, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5028 | toString(windowInfo->paused), | 
| Vishnu Nair | 47074b8 | 2020-08-14 11:54:47 -0700 | [diff] [blame] | 5029 | toString(windowInfo->focusable), | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5030 | toString(windowInfo->hasWallpaper), | 
| Bernardo Rufino | 0f6a36e | 2020-11-11 10:10:59 +0000 | [diff] [blame] | 5031 | toString(windowInfo->visible), windowInfo->alpha, | 
| Michael Wright | 8759d67 | 2020-07-21 00:46:45 +0100 | [diff] [blame] | 5032 | windowInfo->flags.string().c_str(), | 
| Bernardo Rufino | 5fd822d | 2020-11-13 16:11:39 +0000 | [diff] [blame] | 5033 | NamedEnum::string(windowInfo->type).c_str(), | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 5034 | windowInfo->frameLeft, windowInfo->frameTop, | 
|  | 5035 | windowInfo->frameRight, windowInfo->frameBottom, | 
| Siarhei Vishniakou | e41c451 | 2020-09-08 19:35:58 -0500 | [diff] [blame] | 5036 | windowInfo->globalScaleFactor, | 
| Bernardo Rufino | 49d99e4 | 2021-01-18 15:16:59 +0000 | [diff] [blame] | 5037 | windowInfo->applicationInfo.name.c_str(), | 
|  | 5038 | toString(windowInfo->applicationInfo.token).c_str()); | 
| Bernardo Rufino | 53fc31e | 2020-11-03 11:01:07 +0000 | [diff] [blame] | 5039 | dump += dumpRegion(windowInfo->touchableRegion); | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 5040 | dump += StringPrintf(", inputFeatures=%s", | 
|  | 5041 | windowInfo->inputFeatures.string().c_str()); | 
| Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 5042 | dump += StringPrintf(", ownerPid=%d, ownerUid=%d, dispatchingTimeout=%" PRId64 | 
| Bernardo Rufino | 5fd822d | 2020-11-13 16:11:39 +0000 | [diff] [blame] | 5043 | "ms, trustedOverlay=%s, hasToken=%s, " | 
|  | 5044 | "touchOcclusionMode=%s\n", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5045 | windowInfo->ownerPid, windowInfo->ownerUid, | 
| Bernardo Rufino | c2f1fad | 2020-11-04 17:30:57 +0000 | [diff] [blame] | 5046 | millis(windowInfo->dispatchingTimeout), | 
|  | 5047 | toString(windowInfo->trustedOverlay), | 
| Bernardo Rufino | 5fd822d | 2020-11-13 16:11:39 +0000 | [diff] [blame] | 5048 | toString(windowInfo->token != nullptr), | 
|  | 5049 | toString(windowInfo->touchOcclusionMode).c_str()); | 
| chaviw | 85b4420 | 2020-07-24 11:46:21 -0700 | [diff] [blame] | 5050 | windowInfo->transform.dump(dump, "transform", INDENT4); | 
| Arthur Hung | b92218b | 2018-08-14 12:00:21 +0800 | [diff] [blame] | 5051 | } | 
|  | 5052 | } else { | 
|  | 5053 | dump += INDENT2 "Windows: <none>\n"; | 
|  | 5054 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5055 | } | 
|  | 5056 | } else { | 
| Arthur Hung | b92218b | 2018-08-14 12:00:21 +0800 | [diff] [blame] | 5057 | dump += INDENT "Displays: <none>\n"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5058 | } | 
|  | 5059 |  | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5060 | if (!mGlobalMonitorsByDisplay.empty() || !mGestureMonitorsByDisplay.empty()) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5061 | for (auto& it : mGlobalMonitorsByDisplay) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5062 | const std::vector<Monitor>& monitors = it.second; | 
|  | 5063 | dump += StringPrintf(INDENT "Global monitors in display %" PRId32 ":\n", it.first); | 
|  | 5064 | dumpMonitors(dump, monitors); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5065 | } | 
|  | 5066 | for (auto& it : mGestureMonitorsByDisplay) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5067 | const std::vector<Monitor>& monitors = it.second; | 
|  | 5068 | dump += StringPrintf(INDENT "Gesture monitors in display %" PRId32 ":\n", it.first); | 
|  | 5069 | dumpMonitors(dump, monitors); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5070 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5071 | } else { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5072 | dump += INDENT "Monitors: <none>\n"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5073 | } | 
|  | 5074 |  | 
|  | 5075 | nsecs_t currentTime = now(); | 
|  | 5076 |  | 
|  | 5077 | // Dump recently dispatched or dropped events from oldest to newest. | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 5078 | if (!mRecentQueue.empty()) { | 
|  | 5079 | dump += StringPrintf(INDENT "RecentQueue: length=%zu\n", mRecentQueue.size()); | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5080 | for (std::shared_ptr<EventEntry>& entry : mRecentQueue) { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5081 | dump += INDENT2; | 
| Siarhei Vishniakou | 14411c9 | 2020-09-18 21:15:05 -0500 | [diff] [blame] | 5082 | dump += entry->getDescription(); | 
| Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 5083 | dump += StringPrintf(", age=%" PRId64 "ms\n", ns2ms(currentTime - entry->eventTime)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5084 | } | 
|  | 5085 | } else { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5086 | dump += INDENT "RecentQueue: <empty>\n"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5087 | } | 
|  | 5088 |  | 
|  | 5089 | // Dump event currently being dispatched. | 
|  | 5090 | if (mPendingEvent) { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5091 | dump += INDENT "PendingEvent:\n"; | 
|  | 5092 | dump += INDENT2; | 
| Siarhei Vishniakou | 14411c9 | 2020-09-18 21:15:05 -0500 | [diff] [blame] | 5093 | dump += mPendingEvent->getDescription(); | 
| Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 5094 | dump += StringPrintf(", age=%" PRId64 "ms\n", | 
|  | 5095 | ns2ms(currentTime - mPendingEvent->eventTime)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5096 | } else { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5097 | dump += INDENT "PendingEvent: <none>\n"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5098 | } | 
|  | 5099 |  | 
|  | 5100 | // Dump inbound events from oldest to newest. | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 5101 | if (!mInboundQueue.empty()) { | 
|  | 5102 | dump += StringPrintf(INDENT "InboundQueue: length=%zu\n", mInboundQueue.size()); | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5103 | for (std::shared_ptr<EventEntry>& entry : mInboundQueue) { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5104 | dump += INDENT2; | 
| Siarhei Vishniakou | 14411c9 | 2020-09-18 21:15:05 -0500 | [diff] [blame] | 5105 | dump += entry->getDescription(); | 
| Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 5106 | dump += StringPrintf(", age=%" PRId64 "ms\n", ns2ms(currentTime - entry->eventTime)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5107 | } | 
|  | 5108 | } else { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5109 | dump += INDENT "InboundQueue: <empty>\n"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5110 | } | 
|  | 5111 |  | 
| Siarhei Vishniakou | 4700f82 | 2020-03-24 19:05:54 -0700 | [diff] [blame] | 5112 | if (!mReplacedKeys.empty()) { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5113 | dump += INDENT "ReplacedKeys:\n"; | 
| Siarhei Vishniakou | 4700f82 | 2020-03-24 19:05:54 -0700 | [diff] [blame] | 5114 | for (const std::pair<KeyReplacement, int32_t>& pair : mReplacedKeys) { | 
|  | 5115 | const KeyReplacement& replacement = pair.first; | 
|  | 5116 | int32_t newKeyCode = pair.second; | 
|  | 5117 | dump += StringPrintf(INDENT2 "originalKeyCode=%d, deviceId=%d -> newKeyCode=%d\n", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5118 | replacement.keyCode, replacement.deviceId, newKeyCode); | 
| Michael Wright | 78f2444 | 2014-08-06 15:55:28 -0700 | [diff] [blame] | 5119 | } | 
|  | 5120 | } else { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5121 | dump += INDENT "ReplacedKeys: <empty>\n"; | 
| Michael Wright | 78f2444 | 2014-08-06 15:55:28 -0700 | [diff] [blame] | 5122 | } | 
|  | 5123 |  | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5124 | if (!mConnectionsByToken.empty()) { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5125 | dump += INDENT "Connections:\n"; | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5126 | for (const auto& [token, connection] : mConnectionsByToken) { | 
| Siarhei Vishniakou | 146ecfd | 2019-07-29 16:04:31 -0700 | [diff] [blame] | 5127 | dump += StringPrintf(INDENT2 "%i: channelName='%s', windowName='%s', " | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5128 | "status=%s, monitor=%s, responsive=%s\n", | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5129 | connection->inputChannel->getFd().get(), | 
|  | 5130 | connection->getInputChannelName().c_str(), | 
| Siarhei Vishniakou | 146ecfd | 2019-07-29 16:04:31 -0700 | [diff] [blame] | 5131 | connection->getWindowName().c_str(), connection->getStatusLabel(), | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5132 | toString(connection->monitor), toString(connection->responsive)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5133 |  | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 5134 | if (!connection->outboundQueue.empty()) { | 
|  | 5135 | dump += StringPrintf(INDENT3 "OutboundQueue: length=%zu\n", | 
|  | 5136 | connection->outboundQueue.size()); | 
| Siarhei Vishniakou | 14411c9 | 2020-09-18 21:15:05 -0500 | [diff] [blame] | 5137 | dump += dumpQueue(connection->outboundQueue, currentTime); | 
|  | 5138 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5139 | } else { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5140 | dump += INDENT3 "OutboundQueue: <empty>\n"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5141 | } | 
|  | 5142 |  | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 5143 | if (!connection->waitQueue.empty()) { | 
|  | 5144 | dump += StringPrintf(INDENT3 "WaitQueue: length=%zu\n", | 
|  | 5145 | connection->waitQueue.size()); | 
| Siarhei Vishniakou | 14411c9 | 2020-09-18 21:15:05 -0500 | [diff] [blame] | 5146 | dump += dumpQueue(connection->waitQueue, currentTime); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5147 | } else { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5148 | dump += INDENT3 "WaitQueue: <empty>\n"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5149 | } | 
|  | 5150 | } | 
|  | 5151 | } else { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5152 | dump += INDENT "Connections: <none>\n"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5153 | } | 
|  | 5154 |  | 
|  | 5155 | if (isAppSwitchPendingLocked()) { | 
| Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 5156 | dump += StringPrintf(INDENT "AppSwitch: pending, due in %" PRId64 "ms\n", | 
|  | 5157 | ns2ms(mAppSwitchDueTime - now())); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5158 | } else { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5159 | dump += INDENT "AppSwitch: not pending\n"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5160 | } | 
|  | 5161 |  | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 5162 | dump += INDENT "Configuration:\n"; | 
| Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 5163 | dump += StringPrintf(INDENT2 "KeyRepeatDelay: %" PRId64 "ms\n", ns2ms(mConfig.keyRepeatDelay)); | 
|  | 5164 | dump += StringPrintf(INDENT2 "KeyRepeatTimeout: %" PRId64 "ms\n", | 
|  | 5165 | ns2ms(mConfig.keyRepeatTimeout)); | 
| Siarhei Vishniakou | f265212 | 2021-03-05 21:39:46 +0000 | [diff] [blame] | 5166 | dump += mLatencyTracker.dump(INDENT2); | 
| Siarhei Vishniakou | a04181f | 2021-03-26 05:56:49 +0000 | [diff] [blame] | 5167 | dump += mLatencyAggregator.dump(INDENT2); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5168 | } | 
|  | 5169 |  | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5170 | void InputDispatcher::dumpMonitors(std::string& dump, const std::vector<Monitor>& monitors) { | 
|  | 5171 | const size_t numMonitors = monitors.size(); | 
|  | 5172 | for (size_t i = 0; i < numMonitors; i++) { | 
|  | 5173 | const Monitor& monitor = monitors[i]; | 
| Siarhei Vishniakou | ce5ab08 | 2020-07-09 17:03:21 -0500 | [diff] [blame] | 5174 | const std::shared_ptr<InputChannel>& channel = monitor.inputChannel; | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5175 | dump += StringPrintf(INDENT2 "%zu: '%s', ", i, channel->getName().c_str()); | 
|  | 5176 | dump += "\n"; | 
|  | 5177 | } | 
|  | 5178 | } | 
|  | 5179 |  | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5180 | class LooperEventCallback : public LooperCallback { | 
|  | 5181 | public: | 
|  | 5182 | LooperEventCallback(std::function<int(int events)> callback) : mCallback(callback) {} | 
|  | 5183 | int handleEvent(int /*fd*/, int events, void* /*data*/) override { return mCallback(events); } | 
|  | 5184 |  | 
|  | 5185 | private: | 
|  | 5186 | std::function<int(int events)> mCallback; | 
|  | 5187 | }; | 
|  | 5188 |  | 
| Siarhei Vishniakou | eedd0fc | 2021-03-12 09:50:36 +0000 | [diff] [blame] | 5189 | Result<std::unique_ptr<InputChannel>> InputDispatcher::createInputChannel(const std::string& name) { | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5190 | #if DEBUG_CHANNEL_CREATION | 
|  | 5191 | ALOGD("channel '%s' ~ createInputChannel", name.c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5192 | #endif | 
|  | 5193 |  | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5194 | std::unique_ptr<InputChannel> serverChannel; | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5195 | std::unique_ptr<InputChannel> clientChannel; | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5196 | status_t result = InputChannel::openInputChannelPair(name, serverChannel, clientChannel); | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5197 |  | 
|  | 5198 | if (result) { | 
|  | 5199 | return base::Error(result) << "Failed to open input channel pair with name " << name; | 
|  | 5200 | } | 
|  | 5201 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5202 | { // acquire lock | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 5203 | std::scoped_lock _l(mLock); | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5204 | const sp<IBinder>& token = serverChannel->getConnectionToken(); | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5205 | int fd = serverChannel->getFd(); | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5206 | sp<Connection> connection = | 
|  | 5207 | new Connection(std::move(serverChannel), false /*monitor*/, mIdGenerator); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5208 |  | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5209 | if (mConnectionsByToken.find(token) != mConnectionsByToken.end()) { | 
|  | 5210 | ALOGE("Created a new connection, but the token %p is already known", token.get()); | 
|  | 5211 | } | 
|  | 5212 | mConnectionsByToken.emplace(token, connection); | 
|  | 5213 |  | 
|  | 5214 | std::function<int(int events)> callback = std::bind(&InputDispatcher::handleReceiveCallback, | 
|  | 5215 | this, std::placeholders::_1, token); | 
|  | 5216 |  | 
|  | 5217 | mLooper->addFd(fd, 0, ALOOPER_EVENT_INPUT, new LooperEventCallback(callback), nullptr); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5218 | } // release lock | 
|  | 5219 |  | 
|  | 5220 | // Wake the looper because some connections have changed. | 
|  | 5221 | mLooper->wake(); | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5222 | return clientChannel; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5223 | } | 
|  | 5224 |  | 
| Siarhei Vishniakou | eedd0fc | 2021-03-12 09:50:36 +0000 | [diff] [blame] | 5225 | Result<std::unique_ptr<InputChannel>> InputDispatcher::createInputMonitor(int32_t displayId, | 
|  | 5226 | bool isGestureMonitor, | 
|  | 5227 | const std::string& name, | 
|  | 5228 | int32_t pid) { | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5229 | std::shared_ptr<InputChannel> serverChannel; | 
|  | 5230 | std::unique_ptr<InputChannel> clientChannel; | 
|  | 5231 | status_t result = openInputChannelPair(name, serverChannel, clientChannel); | 
|  | 5232 | if (result) { | 
|  | 5233 | return base::Error(result) << "Failed to open input channel pair with name " << name; | 
|  | 5234 | } | 
|  | 5235 |  | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5236 | { // acquire lock | 
|  | 5237 | std::scoped_lock _l(mLock); | 
|  | 5238 |  | 
|  | 5239 | if (displayId < 0) { | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5240 | return base::Error(BAD_VALUE) << "Attempted to create input monitor with name " << name | 
|  | 5241 | << " without a specified display."; | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5242 | } | 
|  | 5243 |  | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5244 | sp<Connection> connection = new Connection(serverChannel, true /*monitor*/, mIdGenerator); | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5245 | const sp<IBinder>& token = serverChannel->getConnectionToken(); | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5246 | const int fd = serverChannel->getFd(); | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5247 |  | 
|  | 5248 | if (mConnectionsByToken.find(token) != mConnectionsByToken.end()) { | 
|  | 5249 | ALOGE("Created a new connection, but the token %p is already known", token.get()); | 
|  | 5250 | } | 
|  | 5251 | mConnectionsByToken.emplace(token, connection); | 
|  | 5252 | std::function<int(int events)> callback = std::bind(&InputDispatcher::handleReceiveCallback, | 
|  | 5253 | this, std::placeholders::_1, token); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5254 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5255 | auto& monitorsByDisplay = | 
|  | 5256 | isGestureMonitor ? mGestureMonitorsByDisplay : mGlobalMonitorsByDisplay; | 
| Siarhei Vishniakou | 58cfc60 | 2020-12-14 23:21:30 +0000 | [diff] [blame] | 5257 | monitorsByDisplay[displayId].emplace_back(serverChannel, pid); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5258 |  | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5259 | mLooper->addFd(fd, 0, ALOOPER_EVENT_INPUT, new LooperEventCallback(callback), nullptr); | 
| Siarhei Vishniakou | c961c74 | 2021-05-19 19:16:59 +0000 | [diff] [blame] | 5260 | ALOGI("Created monitor %s for display %" PRId32 ", gesture=%s, pid=%" PRId32, name.c_str(), | 
|  | 5261 | displayId, toString(isGestureMonitor), pid); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5262 | } | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5263 |  | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5264 | // Wake the looper because some connections have changed. | 
|  | 5265 | mLooper->wake(); | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5266 | return clientChannel; | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5267 | } | 
|  | 5268 |  | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5269 | status_t InputDispatcher::removeInputChannel(const sp<IBinder>& connectionToken) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5270 | { // acquire lock | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 5271 | std::scoped_lock _l(mLock); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5272 |  | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5273 | status_t status = removeInputChannelLocked(connectionToken, false /*notify*/); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5274 | if (status) { | 
|  | 5275 | return status; | 
|  | 5276 | } | 
|  | 5277 | } // release lock | 
|  | 5278 |  | 
|  | 5279 | // Wake the poll loop because removing the connection may have changed the current | 
|  | 5280 | // synchronization state. | 
|  | 5281 | mLooper->wake(); | 
|  | 5282 | return OK; | 
|  | 5283 | } | 
|  | 5284 |  | 
| Garfield Tan | 1560166 | 2020-09-22 15:32:38 -0700 | [diff] [blame] | 5285 | status_t InputDispatcher::removeInputChannelLocked(const sp<IBinder>& connectionToken, | 
|  | 5286 | bool notify) { | 
| Siarhei Vishniakou | adefc3e | 2020-09-02 22:28:29 -0500 | [diff] [blame] | 5287 | sp<Connection> connection = getConnectionLocked(connectionToken); | 
| Siarhei Vishniakou | 146ecfd | 2019-07-29 16:04:31 -0700 | [diff] [blame] | 5288 | if (connection == nullptr) { | 
| Siarhei Vishniakou | d706a28 | 2021-02-13 00:08:48 +0000 | [diff] [blame] | 5289 | // Connection can be removed via socket hang up or an explicit call to 'removeInputChannel' | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5290 | return BAD_VALUE; | 
|  | 5291 | } | 
|  | 5292 |  | 
| Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 5293 | removeConnectionLocked(connection); | 
| Robert Carr | 5c8a026 | 2018-10-03 16:30:44 -0700 | [diff] [blame] | 5294 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5295 | if (connection->monitor) { | 
| Siarhei Vishniakou | adefc3e | 2020-09-02 22:28:29 -0500 | [diff] [blame] | 5296 | removeMonitorChannelLocked(connectionToken); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5297 | } | 
|  | 5298 |  | 
| Siarhei Vishniakou | adefc3e | 2020-09-02 22:28:29 -0500 | [diff] [blame] | 5299 | mLooper->removeFd(connection->inputChannel->getFd()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5300 |  | 
|  | 5301 | nsecs_t currentTime = now(); | 
|  | 5302 | abortBrokenDispatchCycleLocked(currentTime, connection, notify); | 
|  | 5303 |  | 
|  | 5304 | connection->status = Connection::STATUS_ZOMBIE; | 
|  | 5305 | return OK; | 
|  | 5306 | } | 
|  | 5307 |  | 
| Siarhei Vishniakou | adefc3e | 2020-09-02 22:28:29 -0500 | [diff] [blame] | 5308 | void InputDispatcher::removeMonitorChannelLocked(const sp<IBinder>& connectionToken) { | 
|  | 5309 | removeMonitorChannelLocked(connectionToken, mGlobalMonitorsByDisplay); | 
|  | 5310 | removeMonitorChannelLocked(connectionToken, mGestureMonitorsByDisplay); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5311 | } | 
|  | 5312 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5313 | void InputDispatcher::removeMonitorChannelLocked( | 
| Siarhei Vishniakou | adefc3e | 2020-09-02 22:28:29 -0500 | [diff] [blame] | 5314 | const sp<IBinder>& connectionToken, | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5315 | std::unordered_map<int32_t, std::vector<Monitor>>& monitorsByDisplay) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5316 | for (auto it = monitorsByDisplay.begin(); it != monitorsByDisplay.end();) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5317 | std::vector<Monitor>& monitors = it->second; | 
|  | 5318 | const size_t numMonitors = monitors.size(); | 
|  | 5319 | for (size_t i = 0; i < numMonitors; i++) { | 
| Siarhei Vishniakou | adefc3e | 2020-09-02 22:28:29 -0500 | [diff] [blame] | 5320 | if (monitors[i].inputChannel->getConnectionToken() == connectionToken) { | 
| Siarhei Vishniakou | 59a9f29 | 2021-04-22 18:43:28 +0000 | [diff] [blame] | 5321 | ALOGI("Erasing monitor %s on display %" PRId32 ", pid=%" PRId32, | 
|  | 5322 | monitors[i].inputChannel->getName().c_str(), it->first, monitors[i].pid); | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5323 | monitors.erase(monitors.begin() + i); | 
|  | 5324 | break; | 
|  | 5325 | } | 
| Arthur Hung | 2fbf37f | 2018-09-13 18:16:41 +0800 | [diff] [blame] | 5326 | } | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5327 | if (monitors.empty()) { | 
|  | 5328 | it = monitorsByDisplay.erase(it); | 
| Arthur Hung | 2fbf37f | 2018-09-13 18:16:41 +0800 | [diff] [blame] | 5329 | } else { | 
|  | 5330 | ++it; | 
|  | 5331 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5332 | } | 
|  | 5333 | } | 
|  | 5334 |  | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5335 | status_t InputDispatcher::pilferPointers(const sp<IBinder>& token) { | 
|  | 5336 | { // acquire lock | 
|  | 5337 | std::scoped_lock _l(mLock); | 
|  | 5338 | std::optional<int32_t> foundDisplayId = findGestureMonitorDisplayByTokenLocked(token); | 
|  | 5339 |  | 
|  | 5340 | if (!foundDisplayId) { | 
|  | 5341 | ALOGW("Attempted to pilfer pointers from an un-registered monitor or invalid token"); | 
|  | 5342 | return BAD_VALUE; | 
|  | 5343 | } | 
|  | 5344 | int32_t displayId = foundDisplayId.value(); | 
|  | 5345 |  | 
| Siarhei Vishniakou | 4700f82 | 2020-03-24 19:05:54 -0700 | [diff] [blame] | 5346 | std::unordered_map<int32_t, TouchState>::iterator stateIt = | 
|  | 5347 | mTouchStatesByDisplay.find(displayId); | 
|  | 5348 | if (stateIt == mTouchStatesByDisplay.end()) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5349 | ALOGW("Failed to pilfer pointers: no pointers on display %" PRId32 ".", displayId); | 
|  | 5350 | return BAD_VALUE; | 
|  | 5351 | } | 
|  | 5352 |  | 
| Siarhei Vishniakou | 4700f82 | 2020-03-24 19:05:54 -0700 | [diff] [blame] | 5353 | TouchState& state = stateIt->second; | 
| Siarhei Vishniakou | d706a28 | 2021-02-13 00:08:48 +0000 | [diff] [blame] | 5354 | std::shared_ptr<InputChannel> requestingChannel; | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5355 | std::optional<int32_t> foundDeviceId; | 
|  | 5356 | for (const TouchedMonitor& touchedMonitor : state.gestureMonitors) { | 
| Siarhei Vishniakou | 26d3cfb | 2019-10-15 17:02:32 -0700 | [diff] [blame] | 5357 | if (touchedMonitor.monitor.inputChannel->getConnectionToken() == token) { | 
| Siarhei Vishniakou | d706a28 | 2021-02-13 00:08:48 +0000 | [diff] [blame] | 5358 | requestingChannel = touchedMonitor.monitor.inputChannel; | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5359 | foundDeviceId = state.deviceId; | 
|  | 5360 | } | 
|  | 5361 | } | 
|  | 5362 | if (!foundDeviceId || !state.down) { | 
|  | 5363 | ALOGW("Attempted to pilfer points from a monitor without any on-going pointer streams." | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5364 | " Ignoring."); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5365 | return BAD_VALUE; | 
|  | 5366 | } | 
|  | 5367 | int32_t deviceId = foundDeviceId.value(); | 
|  | 5368 |  | 
|  | 5369 | // Send cancel events to all the input channels we're stealing from. | 
|  | 5370 | CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5371 | "gesture monitor stole pointer stream"); | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5372 | options.deviceId = deviceId; | 
|  | 5373 | options.displayId = displayId; | 
| Siarhei Vishniakou | d706a28 | 2021-02-13 00:08:48 +0000 | [diff] [blame] | 5374 | std::string canceledWindows = "["; | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5375 | for (const TouchedWindow& window : state.windows) { | 
| Siarhei Vishniakou | ce5ab08 | 2020-07-09 17:03:21 -0500 | [diff] [blame] | 5376 | std::shared_ptr<InputChannel> channel = | 
|  | 5377 | getInputChannelLocked(window.windowHandle->getToken()); | 
| Michael Wright | 3a240c4 | 2019-12-10 20:53:41 +0000 | [diff] [blame] | 5378 | if (channel != nullptr) { | 
|  | 5379 | synthesizeCancelationEventsForInputChannelLocked(channel, options); | 
| Siarhei Vishniakou | d706a28 | 2021-02-13 00:08:48 +0000 | [diff] [blame] | 5380 | canceledWindows += channel->getName() + ", "; | 
| Michael Wright | 3a240c4 | 2019-12-10 20:53:41 +0000 | [diff] [blame] | 5381 | } | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5382 | } | 
| Siarhei Vishniakou | d706a28 | 2021-02-13 00:08:48 +0000 | [diff] [blame] | 5383 | canceledWindows += "]"; | 
|  | 5384 | ALOGI("Monitor %s is stealing touch from %s", requestingChannel->getName().c_str(), | 
|  | 5385 | canceledWindows.c_str()); | 
|  | 5386 |  | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5387 | // Then clear the current touch state so we stop dispatching to them as well. | 
|  | 5388 | state.filterNonMonitors(); | 
|  | 5389 | } | 
|  | 5390 | return OK; | 
|  | 5391 | } | 
|  | 5392 |  | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 5393 | void InputDispatcher::requestPointerCapture(const sp<IBinder>& windowToken, bool enabled) { | 
|  | 5394 | { // acquire lock | 
|  | 5395 | std::scoped_lock _l(mLock); | 
|  | 5396 | if (DEBUG_FOCUS) { | 
|  | 5397 | const sp<InputWindowHandle> windowHandle = getWindowHandleLocked(windowToken); | 
|  | 5398 | ALOGI("Request to %s Pointer Capture from: %s.", enabled ? "enable" : "disable", | 
|  | 5399 | windowHandle != nullptr ? windowHandle->getName().c_str() | 
|  | 5400 | : "token without window"); | 
|  | 5401 | } | 
|  | 5402 |  | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 5403 | const sp<IBinder> focusedToken = mFocusResolver.getFocusedWindowToken(mFocusedDisplayId); | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 5404 | if (focusedToken != windowToken) { | 
|  | 5405 | ALOGW("Ignoring request to %s Pointer Capture: window does not have focus.", | 
|  | 5406 | enabled ? "enable" : "disable"); | 
|  | 5407 | return; | 
|  | 5408 | } | 
|  | 5409 |  | 
|  | 5410 | if (enabled == mFocusedWindowRequestedPointerCapture) { | 
|  | 5411 | ALOGW("Ignoring request to %s Pointer Capture: " | 
|  | 5412 | "window has %s requested pointer capture.", | 
|  | 5413 | enabled ? "enable" : "disable", enabled ? "already" : "not"); | 
|  | 5414 | return; | 
|  | 5415 | } | 
|  | 5416 |  | 
|  | 5417 | mFocusedWindowRequestedPointerCapture = enabled; | 
|  | 5418 | setPointerCaptureLocked(enabled); | 
|  | 5419 | } // release lock | 
|  | 5420 |  | 
|  | 5421 | // Wake the thread to process command entries. | 
|  | 5422 | mLooper->wake(); | 
|  | 5423 | } | 
|  | 5424 |  | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5425 | std::optional<int32_t> InputDispatcher::findGestureMonitorDisplayByTokenLocked( | 
|  | 5426 | const sp<IBinder>& token) { | 
|  | 5427 | for (const auto& it : mGestureMonitorsByDisplay) { | 
|  | 5428 | const std::vector<Monitor>& monitors = it.second; | 
|  | 5429 | for (const Monitor& monitor : monitors) { | 
| Siarhei Vishniakou | 26d3cfb | 2019-10-15 17:02:32 -0700 | [diff] [blame] | 5430 | if (monitor.inputChannel->getConnectionToken() == token) { | 
| Michael Wright | 3dd60e2 | 2019-03-27 22:06:44 +0000 | [diff] [blame] | 5431 | return it.first; | 
|  | 5432 | } | 
|  | 5433 | } | 
|  | 5434 | } | 
|  | 5435 | return std::nullopt; | 
|  | 5436 | } | 
|  | 5437 |  | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5438 | std::optional<int32_t> InputDispatcher::findMonitorPidByTokenLocked(const sp<IBinder>& token) { | 
|  | 5439 | std::optional<int32_t> gesturePid = findMonitorPidByToken(mGestureMonitorsByDisplay, token); | 
|  | 5440 | if (gesturePid.has_value()) { | 
|  | 5441 | return gesturePid; | 
|  | 5442 | } | 
|  | 5443 | return findMonitorPidByToken(mGlobalMonitorsByDisplay, token); | 
|  | 5444 | } | 
|  | 5445 |  | 
| Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 5446 | sp<Connection> InputDispatcher::getConnectionLocked(const sp<IBinder>& inputConnectionToken) const { | 
| Siarhei Vishniakou | d0d71b6 | 2019-10-14 14:50:45 -0700 | [diff] [blame] | 5447 | if (inputConnectionToken == nullptr) { | 
| Siarhei Vishniakou | 146ecfd | 2019-07-29 16:04:31 -0700 | [diff] [blame] | 5448 | return nullptr; | 
| Arthur Hung | 3b413f2 | 2018-10-26 18:05:34 +0800 | [diff] [blame] | 5449 | } | 
|  | 5450 |  | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5451 | for (const auto& [token, connection] : mConnectionsByToken) { | 
|  | 5452 | if (token == inputConnectionToken) { | 
| Siarhei Vishniakou | 146ecfd | 2019-07-29 16:04:31 -0700 | [diff] [blame] | 5453 | return connection; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5454 | } | 
|  | 5455 | } | 
| Robert Carr | 4e670e5 | 2018-08-15 13:26:12 -0700 | [diff] [blame] | 5456 |  | 
| Siarhei Vishniakou | 146ecfd | 2019-07-29 16:04:31 -0700 | [diff] [blame] | 5457 | return nullptr; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5458 | } | 
|  | 5459 |  | 
| Siarhei Vishniakou | ad99140 | 2020-10-28 11:40:09 -0500 | [diff] [blame] | 5460 | std::string InputDispatcher::getConnectionNameLocked(const sp<IBinder>& connectionToken) const { | 
|  | 5461 | sp<Connection> connection = getConnectionLocked(connectionToken); | 
|  | 5462 | if (connection == nullptr) { | 
|  | 5463 | return "<nullptr>"; | 
|  | 5464 | } | 
|  | 5465 | return connection->getInputChannelName(); | 
|  | 5466 | } | 
|  | 5467 |  | 
| Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 5468 | void InputDispatcher::removeConnectionLocked(const sp<Connection>& connection) { | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5469 | mAnrTracker.eraseToken(connection->inputChannel->getConnectionToken()); | 
| Siarhei Vishniakou | ae02a1f | 2021-05-01 23:14:04 +0000 | [diff] [blame] | 5470 | mConnectionsByToken.erase(connection->inputChannel->getConnectionToken()); | 
| Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 5471 | } | 
|  | 5472 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5473 | void InputDispatcher::onDispatchCycleFinishedLocked(nsecs_t currentTime, | 
|  | 5474 | const sp<Connection>& connection, uint32_t seq, | 
| Siarhei Vishniakou | 3531ae7 | 2021-02-02 12:12:27 -1000 | [diff] [blame] | 5475 | bool handled, nsecs_t consumeTime) { | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 5476 | std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( | 
|  | 5477 | &InputDispatcher::doDispatchCycleFinishedLockedInterruptible); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5478 | commandEntry->connection = connection; | 
|  | 5479 | commandEntry->eventTime = currentTime; | 
|  | 5480 | commandEntry->seq = seq; | 
|  | 5481 | commandEntry->handled = handled; | 
| Siarhei Vishniakou | 3531ae7 | 2021-02-02 12:12:27 -1000 | [diff] [blame] | 5482 | commandEntry->consumeTime = consumeTime; | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 5483 | postCommandLocked(std::move(commandEntry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5484 | } | 
|  | 5485 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5486 | void InputDispatcher::onDispatchCycleBrokenLocked(nsecs_t currentTime, | 
|  | 5487 | const sp<Connection>& connection) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5488 | ALOGE("channel '%s' ~ Channel is unrecoverably broken and will be disposed!", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5489 | connection->getInputChannelName().c_str()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5490 |  | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 5491 | std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( | 
|  | 5492 | &InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5493 | commandEntry->connection = connection; | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 5494 | postCommandLocked(std::move(commandEntry)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5495 | } | 
|  | 5496 |  | 
| Vishnu Nair | ad321cd | 2020-08-20 16:40:21 -0700 | [diff] [blame] | 5497 | void InputDispatcher::notifyFocusChangedLocked(const sp<IBinder>& oldToken, | 
|  | 5498 | const sp<IBinder>& newToken) { | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 5499 | std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( | 
|  | 5500 | &InputDispatcher::doNotifyFocusChangedLockedInterruptible); | 
| chaviw | 0c06c6e | 2019-01-09 13:27:07 -0800 | [diff] [blame] | 5501 | commandEntry->oldToken = oldToken; | 
|  | 5502 | commandEntry->newToken = newToken; | 
| Siarhei Vishniakou | e7c94b9 | 2019-07-29 09:17:54 -0700 | [diff] [blame] | 5503 | postCommandLocked(std::move(commandEntry)); | 
| Robert Carr | f759f16 | 2018-11-13 12:57:11 -0800 | [diff] [blame] | 5504 | } | 
|  | 5505 |  | 
| arthurhung | f452d0b | 2021-01-06 00:19:52 +0800 | [diff] [blame] | 5506 | void InputDispatcher::notifyDropWindowLocked(const sp<IBinder>& token, float x, float y) { | 
|  | 5507 | std::unique_ptr<CommandEntry> commandEntry = | 
|  | 5508 | std::make_unique<CommandEntry>(&InputDispatcher::doNotifyDropWindowLockedInterruptible); | 
|  | 5509 | commandEntry->newToken = token; | 
|  | 5510 | commandEntry->x = x; | 
|  | 5511 | commandEntry->y = y; | 
|  | 5512 | postCommandLocked(std::move(commandEntry)); | 
|  | 5513 | } | 
|  | 5514 |  | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5515 | void InputDispatcher::onAnrLocked(const sp<Connection>& connection) { | 
|  | 5516 | if (connection == nullptr) { | 
|  | 5517 | LOG_ALWAYS_FATAL("Caller must check for nullness"); | 
|  | 5518 | } | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5519 | // Since we are allowing the policy to extend the timeout, maybe the waitQueue | 
|  | 5520 | // is already healthy again. Don't raise ANR in this situation | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5521 | if (connection->waitQueue.empty()) { | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5522 | ALOGI("Not raising ANR because the connection %s has recovered", | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5523 | connection->inputChannel->getName().c_str()); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5524 | return; | 
|  | 5525 | } | 
|  | 5526 | /** | 
|  | 5527 | * The "oldestEntry" is the entry that was first sent to the application. That entry, however, | 
|  | 5528 | * may not be the one that caused the timeout to occur. One possibility is that window timeout | 
|  | 5529 | * has changed. This could cause newer entries to time out before the already dispatched | 
|  | 5530 | * entries. In that situation, the newest entries caused ANR. But in all likelihood, the app | 
|  | 5531 | * processes the events linearly. So providing information about the oldest entry seems to be | 
|  | 5532 | * most useful. | 
|  | 5533 | */ | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5534 | DispatchEntry* oldestEntry = *connection->waitQueue.begin(); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5535 | const nsecs_t currentWait = now() - oldestEntry->deliveryTime; | 
|  | 5536 | std::string reason = | 
|  | 5537 | android::base::StringPrintf("%s is not responding. Waited %" PRId64 "ms for %s", | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5538 | connection->inputChannel->getName().c_str(), | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5539 | ns2ms(currentWait), | 
|  | 5540 | oldestEntry->eventEntry->getDescription().c_str()); | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5541 | sp<IBinder> connectionToken = connection->inputChannel->getConnectionToken(); | 
| Siarhei Vishniakou | 2b4782c | 2020-11-07 01:51:18 -0600 | [diff] [blame] | 5542 | updateLastAnrStateLocked(getWindowHandleLocked(connectionToken), reason); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5543 |  | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5544 | processConnectionUnresponsiveLocked(*connection, std::move(reason)); | 
|  | 5545 |  | 
|  | 5546 | // Stop waking up for events on this connection, it is already unresponsive | 
|  | 5547 | cancelEventsForAnrLocked(connection); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5548 | } | 
|  | 5549 |  | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 5550 | void InputDispatcher::onAnrLocked(std::shared_ptr<InputApplicationHandle> application) { | 
|  | 5551 | std::string reason = | 
|  | 5552 | StringPrintf("%s does not have a focused window", application->getName().c_str()); | 
|  | 5553 | updateLastAnrStateLocked(*application, reason); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5554 |  | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 5555 | std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( | 
|  | 5556 | &InputDispatcher::doNotifyNoFocusedWindowAnrLockedInterruptible); | 
|  | 5557 | commandEntry->inputApplicationHandle = std::move(application); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5558 | postCommandLocked(std::move(commandEntry)); | 
|  | 5559 | } | 
|  | 5560 |  | 
| Bernardo Rufino | 2e1f651 | 2020-10-08 13:42:07 +0000 | [diff] [blame] | 5561 | void InputDispatcher::onUntrustedTouchLocked(const std::string& obscuringPackage) { | 
|  | 5562 | std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( | 
|  | 5563 | &InputDispatcher::doNotifyUntrustedTouchLockedInterruptible); | 
|  | 5564 | commandEntry->obscuringPackage = obscuringPackage; | 
|  | 5565 | postCommandLocked(std::move(commandEntry)); | 
|  | 5566 | } | 
|  | 5567 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5568 | void InputDispatcher::updateLastAnrStateLocked(const sp<InputWindowHandle>& window, | 
|  | 5569 | const std::string& reason) { | 
|  | 5570 | const std::string windowLabel = getApplicationWindowLabel(nullptr, window); | 
|  | 5571 | updateLastAnrStateLocked(windowLabel, reason); | 
|  | 5572 | } | 
|  | 5573 |  | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 5574 | void InputDispatcher::updateLastAnrStateLocked(const InputApplicationHandle& application, | 
|  | 5575 | const std::string& reason) { | 
|  | 5576 | const std::string windowLabel = getApplicationWindowLabel(&application, nullptr); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5577 | updateLastAnrStateLocked(windowLabel, reason); | 
|  | 5578 | } | 
|  | 5579 |  | 
|  | 5580 | void InputDispatcher::updateLastAnrStateLocked(const std::string& windowLabel, | 
|  | 5581 | const std::string& reason) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5582 | // Capture a record of the InputDispatcher state at the time of the ANR. | 
| Yi Kong | 9b14ac6 | 2018-07-17 13:48:38 -0700 | [diff] [blame] | 5583 | time_t t = time(nullptr); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5584 | struct tm tm; | 
|  | 5585 | localtime_r(&t, &tm); | 
|  | 5586 | char timestr[64]; | 
|  | 5587 | strftime(timestr, sizeof(timestr), "%F %T", &tm); | 
| Siarhei Vishniakou | b1a1627 | 2020-05-06 16:09:19 -0700 | [diff] [blame] | 5588 | mLastAnrState.clear(); | 
|  | 5589 | mLastAnrState += INDENT "ANR:\n"; | 
|  | 5590 | mLastAnrState += StringPrintf(INDENT2 "Time: %s\n", timestr); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5591 | mLastAnrState += StringPrintf(INDENT2 "Reason: %s\n", reason.c_str()); | 
|  | 5592 | mLastAnrState += StringPrintf(INDENT2 "Window: %s\n", windowLabel.c_str()); | 
| Siarhei Vishniakou | b1a1627 | 2020-05-06 16:09:19 -0700 | [diff] [blame] | 5593 | dumpDispatchStateLocked(mLastAnrState); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5594 | } | 
|  | 5595 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5596 | void InputDispatcher::doNotifyConfigurationChangedLockedInterruptible(CommandEntry* commandEntry) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5597 | mLock.unlock(); | 
|  | 5598 |  | 
|  | 5599 | mPolicy->notifyConfigurationChanged(commandEntry->eventTime); | 
|  | 5600 |  | 
|  | 5601 | mLock.lock(); | 
|  | 5602 | } | 
|  | 5603 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5604 | void InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible(CommandEntry* commandEntry) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5605 | sp<Connection> connection = commandEntry->connection; | 
|  | 5606 |  | 
|  | 5607 | if (connection->status != Connection::STATUS_ZOMBIE) { | 
|  | 5608 | mLock.unlock(); | 
|  | 5609 |  | 
| Siarhei Vishniakou | 26d3cfb | 2019-10-15 17:02:32 -0700 | [diff] [blame] | 5610 | mPolicy->notifyInputChannelBroken(connection->inputChannel->getConnectionToken()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5611 |  | 
|  | 5612 | mLock.lock(); | 
|  | 5613 | } | 
|  | 5614 | } | 
|  | 5615 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5616 | void InputDispatcher::doNotifyFocusChangedLockedInterruptible(CommandEntry* commandEntry) { | 
| chaviw | 0c06c6e | 2019-01-09 13:27:07 -0800 | [diff] [blame] | 5617 | sp<IBinder> oldToken = commandEntry->oldToken; | 
|  | 5618 | sp<IBinder> newToken = commandEntry->newToken; | 
| Robert Carr | f759f16 | 2018-11-13 12:57:11 -0800 | [diff] [blame] | 5619 | mLock.unlock(); | 
| chaviw | 0c06c6e | 2019-01-09 13:27:07 -0800 | [diff] [blame] | 5620 | mPolicy->notifyFocusChanged(oldToken, newToken); | 
| Robert Carr | f759f16 | 2018-11-13 12:57:11 -0800 | [diff] [blame] | 5621 | mLock.lock(); | 
|  | 5622 | } | 
|  | 5623 |  | 
| arthurhung | f452d0b | 2021-01-06 00:19:52 +0800 | [diff] [blame] | 5624 | void InputDispatcher::doNotifyDropWindowLockedInterruptible(CommandEntry* commandEntry) { | 
|  | 5625 | sp<IBinder> newToken = commandEntry->newToken; | 
|  | 5626 | mLock.unlock(); | 
|  | 5627 | mPolicy->notifyDropWindow(newToken, commandEntry->x, commandEntry->y); | 
|  | 5628 | mLock.lock(); | 
|  | 5629 | } | 
|  | 5630 |  | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 5631 | void InputDispatcher::doNotifyNoFocusedWindowAnrLockedInterruptible(CommandEntry* commandEntry) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5632 | mLock.unlock(); | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 5633 |  | 
|  | 5634 | mPolicy->notifyNoFocusedWindowAnr(commandEntry->inputApplicationHandle); | 
|  | 5635 |  | 
|  | 5636 | mLock.lock(); | 
|  | 5637 | } | 
|  | 5638 |  | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5639 | void InputDispatcher::doNotifyWindowUnresponsiveLockedInterruptible(CommandEntry* commandEntry) { | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 5640 | mLock.unlock(); | 
|  | 5641 |  | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5642 | mPolicy->notifyWindowUnresponsive(commandEntry->connectionToken, commandEntry->reason); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5643 |  | 
|  | 5644 | mLock.lock(); | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 5645 | } | 
|  | 5646 |  | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5647 | void InputDispatcher::doNotifyMonitorUnresponsiveLockedInterruptible(CommandEntry* commandEntry) { | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 5648 | mLock.unlock(); | 
|  | 5649 |  | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5650 | mPolicy->notifyMonitorUnresponsive(commandEntry->pid, commandEntry->reason); | 
|  | 5651 |  | 
|  | 5652 | mLock.lock(); | 
|  | 5653 | } | 
|  | 5654 |  | 
|  | 5655 | void InputDispatcher::doNotifyWindowResponsiveLockedInterruptible(CommandEntry* commandEntry) { | 
|  | 5656 | mLock.unlock(); | 
|  | 5657 |  | 
|  | 5658 | mPolicy->notifyWindowResponsive(commandEntry->connectionToken); | 
|  | 5659 |  | 
|  | 5660 | mLock.lock(); | 
|  | 5661 | } | 
|  | 5662 |  | 
|  | 5663 | void InputDispatcher::doNotifyMonitorResponsiveLockedInterruptible(CommandEntry* commandEntry) { | 
|  | 5664 | mLock.unlock(); | 
|  | 5665 |  | 
|  | 5666 | mPolicy->notifyMonitorResponsive(commandEntry->pid); | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 5667 |  | 
|  | 5668 | mLock.lock(); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5669 | } | 
|  | 5670 |  | 
| Bernardo Rufino | 2e1f651 | 2020-10-08 13:42:07 +0000 | [diff] [blame] | 5671 | void InputDispatcher::doNotifyUntrustedTouchLockedInterruptible(CommandEntry* commandEntry) { | 
|  | 5672 | mLock.unlock(); | 
|  | 5673 |  | 
|  | 5674 | mPolicy->notifyUntrustedTouch(commandEntry->obscuringPackage); | 
|  | 5675 |  | 
|  | 5676 | mLock.lock(); | 
|  | 5677 | } | 
|  | 5678 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5679 | void InputDispatcher::doInterceptKeyBeforeDispatchingLockedInterruptible( | 
|  | 5680 | CommandEntry* commandEntry) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5681 | KeyEntry& entry = *(commandEntry->keyEntry); | 
|  | 5682 | KeyEvent event = createKeyEvent(entry); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5683 |  | 
|  | 5684 | mLock.unlock(); | 
|  | 5685 |  | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 5686 | android::base::Timer t; | 
| Siarhei Vishniakou | 2b4782c | 2020-11-07 01:51:18 -0600 | [diff] [blame] | 5687 | const sp<IBinder>& token = commandEntry->connectionToken; | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5688 | nsecs_t delay = mPolicy->interceptKeyBeforeDispatching(token, &event, entry.policyFlags); | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 5689 | if (t.duration() > SLOW_INTERCEPTION_THRESHOLD) { | 
|  | 5690 | ALOGW("Excessive delay in interceptKeyBeforeDispatching; took %s ms", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5691 | std::to_string(t.duration().count()).c_str()); | 
| Michael Wright | 2b3c330 | 2018-03-02 17:19:13 +0000 | [diff] [blame] | 5692 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5693 |  | 
|  | 5694 | mLock.lock(); | 
|  | 5695 |  | 
|  | 5696 | if (delay < 0) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5697 | entry.interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_SKIP; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5698 | } else if (!delay) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5699 | entry.interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5700 | } else { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5701 | entry.interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER; | 
|  | 5702 | entry.interceptKeyWakeupTime = now() + delay; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5703 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5704 | } | 
|  | 5705 |  | 
| chaviw | fd6d351 | 2019-03-25 13:23:49 -0700 | [diff] [blame] | 5706 | void InputDispatcher::doOnPointerDownOutsideFocusLockedInterruptible(CommandEntry* commandEntry) { | 
|  | 5707 | mLock.unlock(); | 
|  | 5708 | mPolicy->onPointerDownOutsideFocus(commandEntry->newToken); | 
|  | 5709 | mLock.lock(); | 
|  | 5710 | } | 
|  | 5711 |  | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5712 | /** | 
|  | 5713 | * Connection is responsive if it has no events in the waitQueue that are older than the | 
|  | 5714 | * current time. | 
|  | 5715 | */ | 
|  | 5716 | static bool isConnectionResponsive(const Connection& connection) { | 
|  | 5717 | const nsecs_t currentTime = now(); | 
|  | 5718 | for (const DispatchEntry* entry : connection.waitQueue) { | 
|  | 5719 | if (entry->timeoutTime < currentTime) { | 
|  | 5720 | return false; | 
|  | 5721 | } | 
|  | 5722 | } | 
|  | 5723 | return true; | 
|  | 5724 | } | 
|  | 5725 |  | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5726 | void InputDispatcher::doDispatchCycleFinishedLockedInterruptible(CommandEntry* commandEntry) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5727 | sp<Connection> connection = commandEntry->connection; | 
| Siarhei Vishniakou | 4e68fbf | 2019-07-31 14:00:52 -0700 | [diff] [blame] | 5728 | const nsecs_t finishTime = commandEntry->eventTime; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5729 | uint32_t seq = commandEntry->seq; | 
| Siarhei Vishniakou | 4e68fbf | 2019-07-31 14:00:52 -0700 | [diff] [blame] | 5730 | const bool handled = commandEntry->handled; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5731 |  | 
|  | 5732 | // Handle post-event policy actions. | 
| Garfield Tan | e84e6f9 | 2019-08-29 17:28:41 -0700 | [diff] [blame] | 5733 | std::deque<DispatchEntry*>::iterator dispatchEntryIt = connection->findWaitQueueEntry(seq); | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 5734 | if (dispatchEntryIt == connection->waitQueue.end()) { | 
| Siarhei Vishniakou | 4e68fbf | 2019-07-31 14:00:52 -0700 | [diff] [blame] | 5735 | return; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5736 | } | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 5737 | DispatchEntry* dispatchEntry = *dispatchEntryIt; | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 5738 | const nsecs_t eventDuration = finishTime - dispatchEntry->deliveryTime; | 
| Siarhei Vishniakou | 4e68fbf | 2019-07-31 14:00:52 -0700 | [diff] [blame] | 5739 | if (eventDuration > SLOW_EVENT_PROCESSING_WARNING_TIMEOUT) { | 
| Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 5740 | ALOGI("%s spent %" PRId64 "ms processing %s", connection->getWindowName().c_str(), | 
|  | 5741 | ns2ms(eventDuration), dispatchEntry->eventEntry->getDescription().c_str()); | 
| Siarhei Vishniakou | 4e68fbf | 2019-07-31 14:00:52 -0700 | [diff] [blame] | 5742 | } | 
| Siarhei Vishniakou | f265212 | 2021-03-05 21:39:46 +0000 | [diff] [blame] | 5743 | if (shouldReportFinishedEvent(*dispatchEntry, *connection)) { | 
|  | 5744 | mLatencyTracker.trackFinishedEvent(dispatchEntry->eventEntry->id, | 
|  | 5745 | connection->inputChannel->getConnectionToken(), | 
|  | 5746 | dispatchEntry->deliveryTime, commandEntry->consumeTime, | 
|  | 5747 | finishTime); | 
|  | 5748 | } | 
| Siarhei Vishniakou | 4e68fbf | 2019-07-31 14:00:52 -0700 | [diff] [blame] | 5749 |  | 
|  | 5750 | bool restartEvent; | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 5751 | if (dispatchEntry->eventEntry->type == EventEntry::Type::KEY) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5752 | KeyEntry& keyEntry = static_cast<KeyEntry&>(*(dispatchEntry->eventEntry)); | 
| Siarhei Vishniakou | 4e68fbf | 2019-07-31 14:00:52 -0700 | [diff] [blame] | 5753 | restartEvent = | 
|  | 5754 | afterKeyEventLockedInterruptible(connection, dispatchEntry, keyEntry, handled); | 
| Siarhei Vishniakou | 4948327 | 2019-10-22 13:13:47 -0700 | [diff] [blame] | 5755 | } else if (dispatchEntry->eventEntry->type == EventEntry::Type::MOTION) { | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5756 | MotionEntry& motionEntry = static_cast<MotionEntry&>(*(dispatchEntry->eventEntry)); | 
| Siarhei Vishniakou | 4e68fbf | 2019-07-31 14:00:52 -0700 | [diff] [blame] | 5757 | restartEvent = afterMotionEventLockedInterruptible(connection, dispatchEntry, motionEntry, | 
|  | 5758 | handled); | 
|  | 5759 | } else { | 
|  | 5760 | restartEvent = false; | 
|  | 5761 | } | 
|  | 5762 |  | 
|  | 5763 | // Dequeue the event and start the next cycle. | 
| Siarhei Vishniakou | 850ce12 | 2020-05-26 22:39:43 -0700 | [diff] [blame] | 5764 | // Because the lock might have been released, it is possible that the | 
| Siarhei Vishniakou | 4e68fbf | 2019-07-31 14:00:52 -0700 | [diff] [blame] | 5765 | // contents of the wait queue to have been drained, so we need to double-check | 
|  | 5766 | // a few things. | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 5767 | dispatchEntryIt = connection->findWaitQueueEntry(seq); | 
|  | 5768 | if (dispatchEntryIt != connection->waitQueue.end()) { | 
|  | 5769 | dispatchEntry = *dispatchEntryIt; | 
|  | 5770 | connection->waitQueue.erase(dispatchEntryIt); | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 5771 | const sp<IBinder>& connectionToken = connection->inputChannel->getConnectionToken(); | 
|  | 5772 | mAnrTracker.erase(dispatchEntry->timeoutTime, connectionToken); | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5773 | if (!connection->responsive) { | 
|  | 5774 | connection->responsive = isConnectionResponsive(*connection); | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 5775 | if (connection->responsive) { | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5776 | // The connection was unresponsive, and now it's responsive. | 
|  | 5777 | processConnectionResponsiveLocked(*connection); | 
| Siarhei Vishniakou | 234129c | 2020-10-22 22:28:12 -0500 | [diff] [blame] | 5778 | } | 
| Siarhei Vishniakou | d44dddf | 2020-03-25 16:16:40 -0700 | [diff] [blame] | 5779 | } | 
| Siarhei Vishniakou | 060a727 | 2021-02-03 19:40:10 +0000 | [diff] [blame] | 5780 | traceWaitQueueLength(*connection); | 
| Siarhei Vishniakou | 4e68fbf | 2019-07-31 14:00:52 -0700 | [diff] [blame] | 5781 | if (restartEvent && connection->status == Connection::STATUS_NORMAL) { | 
| Siarhei Vishniakou | 13bda6c | 2019-07-29 08:34:33 -0700 | [diff] [blame] | 5782 | connection->outboundQueue.push_front(dispatchEntry); | 
| Siarhei Vishniakou | 060a727 | 2021-02-03 19:40:10 +0000 | [diff] [blame] | 5783 | traceOutboundQueueLength(*connection); | 
| Siarhei Vishniakou | 4e68fbf | 2019-07-31 14:00:52 -0700 | [diff] [blame] | 5784 | } else { | 
|  | 5785 | releaseDispatchEntry(dispatchEntry); | 
|  | 5786 | } | 
|  | 5787 | } | 
|  | 5788 |  | 
|  | 5789 | // Start the next dispatch cycle for this connection. | 
|  | 5790 | startDispatchCycleLocked(now(), connection); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5791 | } | 
|  | 5792 |  | 
| Siarhei Vishniakou | 3c63fa4 | 2020-12-15 02:59:54 +0000 | [diff] [blame] | 5793 | void InputDispatcher::sendMonitorUnresponsiveCommandLocked(int32_t pid, std::string reason) { | 
|  | 5794 | std::unique_ptr<CommandEntry> monitorUnresponsiveCommand = std::make_unique<CommandEntry>( | 
|  | 5795 | &InputDispatcher::doNotifyMonitorUnresponsiveLockedInterruptible); | 
|  | 5796 | monitorUnresponsiveCommand->pid = pid; | 
|  | 5797 | monitorUnresponsiveCommand->reason = std::move(reason); | 
|  | 5798 | postCommandLocked(std::move(monitorUnresponsiveCommand)); | 
|  | 5799 | } | 
|  | 5800 |  | 
|  | 5801 | void InputDispatcher::sendWindowUnresponsiveCommandLocked(sp<IBinder> connectionToken, | 
|  | 5802 | std::string reason) { | 
|  | 5803 | std::unique_ptr<CommandEntry> windowUnresponsiveCommand = std::make_unique<CommandEntry>( | 
|  | 5804 | &InputDispatcher::doNotifyWindowUnresponsiveLockedInterruptible); | 
|  | 5805 | windowUnresponsiveCommand->connectionToken = std::move(connectionToken); | 
|  | 5806 | windowUnresponsiveCommand->reason = std::move(reason); | 
|  | 5807 | postCommandLocked(std::move(windowUnresponsiveCommand)); | 
|  | 5808 | } | 
|  | 5809 |  | 
|  | 5810 | void InputDispatcher::sendMonitorResponsiveCommandLocked(int32_t pid) { | 
|  | 5811 | std::unique_ptr<CommandEntry> monitorResponsiveCommand = std::make_unique<CommandEntry>( | 
|  | 5812 | &InputDispatcher::doNotifyMonitorResponsiveLockedInterruptible); | 
|  | 5813 | monitorResponsiveCommand->pid = pid; | 
|  | 5814 | postCommandLocked(std::move(monitorResponsiveCommand)); | 
|  | 5815 | } | 
|  | 5816 |  | 
|  | 5817 | void InputDispatcher::sendWindowResponsiveCommandLocked(sp<IBinder> connectionToken) { | 
|  | 5818 | std::unique_ptr<CommandEntry> windowResponsiveCommand = std::make_unique<CommandEntry>( | 
|  | 5819 | &InputDispatcher::doNotifyWindowResponsiveLockedInterruptible); | 
|  | 5820 | windowResponsiveCommand->connectionToken = std::move(connectionToken); | 
|  | 5821 | postCommandLocked(std::move(windowResponsiveCommand)); | 
|  | 5822 | } | 
|  | 5823 |  | 
|  | 5824 | /** | 
|  | 5825 | * Tell the policy that a connection has become unresponsive so that it can start ANR. | 
|  | 5826 | * Check whether the connection of interest is a monitor or a window, and add the corresponding | 
|  | 5827 | * command entry to the command queue. | 
|  | 5828 | */ | 
|  | 5829 | void InputDispatcher::processConnectionUnresponsiveLocked(const Connection& connection, | 
|  | 5830 | std::string reason) { | 
|  | 5831 | const sp<IBinder>& connectionToken = connection.inputChannel->getConnectionToken(); | 
|  | 5832 | if (connection.monitor) { | 
|  | 5833 | ALOGW("Monitor %s is unresponsive: %s", connection.inputChannel->getName().c_str(), | 
|  | 5834 | reason.c_str()); | 
|  | 5835 | std::optional<int32_t> pid = findMonitorPidByTokenLocked(connectionToken); | 
|  | 5836 | if (!pid.has_value()) { | 
|  | 5837 | ALOGE("Could not find unresponsive monitor for connection %s", | 
|  | 5838 | connection.inputChannel->getName().c_str()); | 
|  | 5839 | return; | 
|  | 5840 | } | 
|  | 5841 | sendMonitorUnresponsiveCommandLocked(pid.value(), std::move(reason)); | 
|  | 5842 | return; | 
|  | 5843 | } | 
|  | 5844 | // If not a monitor, must be a window | 
|  | 5845 | ALOGW("Window %s is unresponsive: %s", connection.inputChannel->getName().c_str(), | 
|  | 5846 | reason.c_str()); | 
|  | 5847 | sendWindowUnresponsiveCommandLocked(connectionToken, std::move(reason)); | 
|  | 5848 | } | 
|  | 5849 |  | 
|  | 5850 | /** | 
|  | 5851 | * Tell the policy that a connection has become responsive so that it can stop ANR. | 
|  | 5852 | */ | 
|  | 5853 | void InputDispatcher::processConnectionResponsiveLocked(const Connection& connection) { | 
|  | 5854 | const sp<IBinder>& connectionToken = connection.inputChannel->getConnectionToken(); | 
|  | 5855 | if (connection.monitor) { | 
|  | 5856 | std::optional<int32_t> pid = findMonitorPidByTokenLocked(connectionToken); | 
|  | 5857 | if (!pid.has_value()) { | 
|  | 5858 | ALOGE("Could not find responsive monitor for connection %s", | 
|  | 5859 | connection.inputChannel->getName().c_str()); | 
|  | 5860 | return; | 
|  | 5861 | } | 
|  | 5862 | sendMonitorResponsiveCommandLocked(pid.value()); | 
|  | 5863 | return; | 
|  | 5864 | } | 
|  | 5865 | // If not a monitor, must be a window | 
|  | 5866 | sendWindowResponsiveCommandLocked(connectionToken); | 
|  | 5867 | } | 
|  | 5868 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5869 | bool InputDispatcher::afterKeyEventLockedInterruptible(const sp<Connection>& connection, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5870 | DispatchEntry* dispatchEntry, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5871 | KeyEntry& keyEntry, bool handled) { | 
|  | 5872 | if (keyEntry.flags & AKEY_EVENT_FLAG_FALLBACK) { | 
| Prabir Pradhan | f93562f | 2018-11-29 12:13:37 -0800 | [diff] [blame] | 5873 | if (!handled) { | 
|  | 5874 | // Report the key as unhandled, since the fallback was not handled. | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5875 | mReporter->reportUnhandledKey(keyEntry.id); | 
| Prabir Pradhan | f93562f | 2018-11-29 12:13:37 -0800 | [diff] [blame] | 5876 | } | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5877 | return false; | 
|  | 5878 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5879 |  | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5880 | // Get the fallback key state. | 
|  | 5881 | // Clear it out after dispatching the UP. | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5882 | int32_t originalKeyCode = keyEntry.keyCode; | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5883 | int32_t fallbackKeyCode = connection->inputState.getFallbackKey(originalKeyCode); | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5884 | if (keyEntry.action == AKEY_EVENT_ACTION_UP) { | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5885 | connection->inputState.removeFallbackKey(originalKeyCode); | 
|  | 5886 | } | 
|  | 5887 |  | 
|  | 5888 | if (handled || !dispatchEntry->hasForegroundTarget()) { | 
|  | 5889 | // If the application handles the original key for which we previously | 
|  | 5890 | // generated a fallback or if the window is not a foreground window, | 
|  | 5891 | // then cancel the associated fallback key, if any. | 
|  | 5892 | if (fallbackKeyCode != -1) { | 
|  | 5893 | // Dispatch the unhandled key to the policy with the cancel flag. | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5894 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5895 | ALOGD("Unhandled key event: Asking policy to cancel fallback action.  " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5896 | "keyCode=%d, action=%d, repeatCount=%d, policyFlags=0x%08x", | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5897 | keyEntry.keyCode, keyEntry.action, keyEntry.repeatCount, keyEntry.policyFlags); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5898 | #endif | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5899 | KeyEvent event = createKeyEvent(keyEntry); | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5900 | event.setFlags(event.getFlags() | AKEY_EVENT_FLAG_CANCELED); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5901 |  | 
|  | 5902 | mLock.unlock(); | 
|  | 5903 |  | 
| Siarhei Vishniakou | 26d3cfb | 2019-10-15 17:02:32 -0700 | [diff] [blame] | 5904 | mPolicy->dispatchUnhandledKey(connection->inputChannel->getConnectionToken(), &event, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5905 | keyEntry.policyFlags, &event); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5906 |  | 
|  | 5907 | mLock.lock(); | 
|  | 5908 |  | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5909 | // Cancel the fallback key. | 
|  | 5910 | if (fallbackKeyCode != AKEYCODE_UNKNOWN) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5911 | CancelationOptions options(CancelationOptions::CANCEL_FALLBACK_EVENTS, | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5912 | "application handled the original non-fallback key " | 
|  | 5913 | "or is no longer a foreground target, " | 
|  | 5914 | "canceling previously dispatched fallback key"); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5915 | options.keyCode = fallbackKeyCode; | 
|  | 5916 | synthesizeCancelationEventsForConnectionLocked(connection, options); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5917 | } | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5918 | connection->inputState.removeFallbackKey(originalKeyCode); | 
|  | 5919 | } | 
|  | 5920 | } else { | 
|  | 5921 | // If the application did not handle a non-fallback key, first check | 
|  | 5922 | // that we are in a good state to perform unhandled key event processing | 
|  | 5923 | // Then ask the policy what to do with it. | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5924 | bool initialDown = keyEntry.action == AKEY_EVENT_ACTION_DOWN && keyEntry.repeatCount == 0; | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5925 | if (fallbackKeyCode == -1 && !initialDown) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5926 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5927 | ALOGD("Unhandled key event: Skipping unhandled key event processing " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5928 | "since this is not an initial down.  " | 
|  | 5929 | "keyCode=%d, action=%d, repeatCount=%d, policyFlags=0x%08x", | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5930 | originalKeyCode, keyEntry.action, keyEntry.repeatCount, keyEntry.policyFlags); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5931 | #endif | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5932 | return false; | 
|  | 5933 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5934 |  | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5935 | // Dispatch the unhandled key to the policy. | 
|  | 5936 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
|  | 5937 | ALOGD("Unhandled key event: Asking policy to perform fallback action.  " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5938 | "keyCode=%d, action=%d, repeatCount=%d, policyFlags=0x%08x", | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5939 | keyEntry.keyCode, keyEntry.action, keyEntry.repeatCount, keyEntry.policyFlags); | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5940 | #endif | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5941 | KeyEvent event = createKeyEvent(keyEntry); | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5942 |  | 
|  | 5943 | mLock.unlock(); | 
|  | 5944 |  | 
| Siarhei Vishniakou | 26d3cfb | 2019-10-15 17:02:32 -0700 | [diff] [blame] | 5945 | bool fallback = | 
|  | 5946 | mPolicy->dispatchUnhandledKey(connection->inputChannel->getConnectionToken(), | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5947 | &event, keyEntry.policyFlags, &event); | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5948 |  | 
|  | 5949 | mLock.lock(); | 
|  | 5950 |  | 
|  | 5951 | if (connection->status != Connection::STATUS_NORMAL) { | 
|  | 5952 | connection->inputState.removeFallbackKey(originalKeyCode); | 
|  | 5953 | return false; | 
|  | 5954 | } | 
|  | 5955 |  | 
|  | 5956 | // Latch the fallback keycode for this key on an initial down. | 
|  | 5957 | // The fallback keycode cannot change at any other point in the lifecycle. | 
|  | 5958 | if (initialDown) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5959 | if (fallback) { | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5960 | fallbackKeyCode = event.getKeyCode(); | 
|  | 5961 | } else { | 
|  | 5962 | fallbackKeyCode = AKEYCODE_UNKNOWN; | 
|  | 5963 | } | 
|  | 5964 | connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode); | 
|  | 5965 | } | 
|  | 5966 |  | 
|  | 5967 | ALOG_ASSERT(fallbackKeyCode != -1); | 
|  | 5968 |  | 
|  | 5969 | // Cancel the fallback key if the policy decides not to send it anymore. | 
|  | 5970 | // We will continue to dispatch the key to the policy but we will no | 
|  | 5971 | // longer dispatch a fallback key to the application. | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5972 | if (fallbackKeyCode != AKEYCODE_UNKNOWN && | 
|  | 5973 | (!fallback || fallbackKeyCode != event.getKeyCode())) { | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5974 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
|  | 5975 | if (fallback) { | 
|  | 5976 | ALOGD("Unhandled key event: Policy requested to send key %d" | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5977 | "as a fallback for %d, but on the DOWN it had requested " | 
|  | 5978 | "to send %d instead.  Fallback canceled.", | 
|  | 5979 | event.getKeyCode(), originalKeyCode, fallbackKeyCode); | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5980 | } else { | 
|  | 5981 | ALOGD("Unhandled key event: Policy did not request fallback for %d, " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5982 | "but on the DOWN it had requested to send %d.  " | 
|  | 5983 | "Fallback canceled.", | 
|  | 5984 | originalKeyCode, fallbackKeyCode); | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5985 | } | 
|  | 5986 | #endif | 
|  | 5987 |  | 
|  | 5988 | CancelationOptions options(CancelationOptions::CANCEL_FALLBACK_EVENTS, | 
|  | 5989 | "canceling fallback, policy no longer desires it"); | 
|  | 5990 | options.keyCode = fallbackKeyCode; | 
|  | 5991 | synthesizeCancelationEventsForConnectionLocked(connection, options); | 
|  | 5992 |  | 
|  | 5993 | fallback = false; | 
|  | 5994 | fallbackKeyCode = AKEYCODE_UNKNOWN; | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 5995 | if (keyEntry.action != AKEY_EVENT_ACTION_UP) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 5996 | connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode); | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 5997 | } | 
|  | 5998 | } | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 5999 |  | 
|  | 6000 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 6001 | { | 
|  | 6002 | std::string msg; | 
|  | 6003 | const KeyedVector<int32_t, int32_t>& fallbackKeys = | 
|  | 6004 | connection->inputState.getFallbackKeys(); | 
|  | 6005 | for (size_t i = 0; i < fallbackKeys.size(); i++) { | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 6006 | msg += StringPrintf(", %d->%d", fallbackKeys.keyAt(i), fallbackKeys.valueAt(i)); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6007 | } | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 6008 | ALOGD("Unhandled key event: %zu currently tracked fallback keys%s.", | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 6009 | fallbackKeys.size(), msg.c_str()); | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 6010 | } | 
|  | 6011 | #endif | 
|  | 6012 |  | 
|  | 6013 | if (fallback) { | 
|  | 6014 | // Restart the dispatch cycle using the fallback key. | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 6015 | keyEntry.eventTime = event.getEventTime(); | 
|  | 6016 | keyEntry.deviceId = event.getDeviceId(); | 
|  | 6017 | keyEntry.source = event.getSource(); | 
|  | 6018 | keyEntry.displayId = event.getDisplayId(); | 
|  | 6019 | keyEntry.flags = event.getFlags() | AKEY_EVENT_FLAG_FALLBACK; | 
|  | 6020 | keyEntry.keyCode = fallbackKeyCode; | 
|  | 6021 | keyEntry.scanCode = event.getScanCode(); | 
|  | 6022 | keyEntry.metaState = event.getMetaState(); | 
|  | 6023 | keyEntry.repeatCount = event.getRepeatCount(); | 
|  | 6024 | keyEntry.downTime = event.getDownTime(); | 
|  | 6025 | keyEntry.syntheticRepeat = false; | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 6026 |  | 
|  | 6027 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
|  | 6028 | ALOGD("Unhandled key event: Dispatching fallback key.  " | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 6029 | "originalKeyCode=%d, fallbackKeyCode=%d, fallbackMetaState=%08x", | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 6030 | originalKeyCode, fallbackKeyCode, keyEntry.metaState); | 
| Prabir Pradhan | f557dcf | 2018-12-18 16:38:14 -0800 | [diff] [blame] | 6031 | #endif | 
|  | 6032 | return true; // restart the event | 
|  | 6033 | } else { | 
|  | 6034 | #if DEBUG_OUTBOUND_EVENT_DETAILS | 
|  | 6035 | ALOGD("Unhandled key event: No fallback key."); | 
|  | 6036 | #endif | 
| Prabir Pradhan | f93562f | 2018-11-29 12:13:37 -0800 | [diff] [blame] | 6037 |  | 
|  | 6038 | // Report the key as unhandled, since there is no fallback key. | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 6039 | mReporter->reportUnhandledKey(keyEntry.id); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6040 | } | 
|  | 6041 | } | 
|  | 6042 | return false; | 
|  | 6043 | } | 
|  | 6044 |  | 
|  | 6045 | bool InputDispatcher::afterMotionEventLockedInterruptible(const sp<Connection>& connection, | 
| Garfield Tan | 0fc2fa7 | 2019-08-29 17:22:15 -0700 | [diff] [blame] | 6046 | DispatchEntry* dispatchEntry, | 
| Siarhei Vishniakou | a9a7ee8 | 2019-10-14 16:28:19 -0700 | [diff] [blame] | 6047 | MotionEntry& motionEntry, bool handled) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6048 | return false; | 
|  | 6049 | } | 
|  | 6050 |  | 
|  | 6051 | void InputDispatcher::doPokeUserActivityLockedInterruptible(CommandEntry* commandEntry) { | 
|  | 6052 | mLock.unlock(); | 
|  | 6053 |  | 
| Sean Stout | b4e0a59 | 2021-02-23 07:34:53 -0800 | [diff] [blame] | 6054 | mPolicy->pokeUserActivity(commandEntry->eventTime, commandEntry->userActivityEventType, | 
|  | 6055 | commandEntry->displayId); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6056 |  | 
|  | 6057 | mLock.lock(); | 
|  | 6058 | } | 
|  | 6059 |  | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6060 | void InputDispatcher::traceInboundQueueLengthLocked() { | 
|  | 6061 | if (ATRACE_ENABLED()) { | 
| Siarhei Vishniakou | 44a2aed | 2019-07-29 08:59:52 -0700 | [diff] [blame] | 6062 | ATRACE_INT("iq", mInboundQueue.size()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6063 | } | 
|  | 6064 | } | 
|  | 6065 |  | 
| Siarhei Vishniakou | 060a727 | 2021-02-03 19:40:10 +0000 | [diff] [blame] | 6066 | void InputDispatcher::traceOutboundQueueLength(const Connection& connection) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6067 | if (ATRACE_ENABLED()) { | 
|  | 6068 | char counterName[40]; | 
| Siarhei Vishniakou | 060a727 | 2021-02-03 19:40:10 +0000 | [diff] [blame] | 6069 | snprintf(counterName, sizeof(counterName), "oq:%s", connection.getWindowName().c_str()); | 
|  | 6070 | ATRACE_INT(counterName, connection.outboundQueue.size()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6071 | } | 
|  | 6072 | } | 
|  | 6073 |  | 
| Siarhei Vishniakou | 060a727 | 2021-02-03 19:40:10 +0000 | [diff] [blame] | 6074 | void InputDispatcher::traceWaitQueueLength(const Connection& connection) { | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6075 | if (ATRACE_ENABLED()) { | 
|  | 6076 | char counterName[40]; | 
| Siarhei Vishniakou | 060a727 | 2021-02-03 19:40:10 +0000 | [diff] [blame] | 6077 | snprintf(counterName, sizeof(counterName), "wq:%s", connection.getWindowName().c_str()); | 
|  | 6078 | ATRACE_INT(counterName, connection.waitQueue.size()); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6079 | } | 
|  | 6080 | } | 
|  | 6081 |  | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 6082 | void InputDispatcher::dump(std::string& dump) { | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 6083 | std::scoped_lock _l(mLock); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6084 |  | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 6085 | dump += "Input Dispatcher State:\n"; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6086 | dumpDispatchStateLocked(dump); | 
|  | 6087 |  | 
| Siarhei Vishniakou | b1a1627 | 2020-05-06 16:09:19 -0700 | [diff] [blame] | 6088 | if (!mLastAnrState.empty()) { | 
| Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 6089 | dump += "\nInput Dispatcher State at time of last ANR:\n"; | 
| Siarhei Vishniakou | b1a1627 | 2020-05-06 16:09:19 -0700 | [diff] [blame] | 6090 | dump += mLastAnrState; | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6091 | } | 
|  | 6092 | } | 
|  | 6093 |  | 
|  | 6094 | void InputDispatcher::monitor() { | 
|  | 6095 | // Acquire and release the lock to ensure that the dispatcher has not deadlocked. | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 6096 | std::unique_lock _l(mLock); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6097 | mLooper->wake(); | 
| Siarhei Vishniakou | 443ad90 | 2019-03-06 17:25:41 -0800 | [diff] [blame] | 6098 | mDispatcherIsAlive.wait(_l); | 
| Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 6099 | } | 
|  | 6100 |  | 
| Siarhei Vishniakou | 2bfa905 | 2019-11-21 18:10:54 -0800 | [diff] [blame] | 6101 | /** | 
|  | 6102 | * Wake up the dispatcher and wait until it processes all events and commands. | 
|  | 6103 | * The notification of mDispatcherEnteredIdle is guaranteed to happen after wake(), so | 
|  | 6104 | * this method can be safely called from any thread, as long as you've ensured that | 
|  | 6105 | * the work you are interested in completing has already been queued. | 
|  | 6106 | */ | 
|  | 6107 | bool InputDispatcher::waitForIdle() { | 
|  | 6108 | /** | 
|  | 6109 | * Timeout should represent the longest possible time that a device might spend processing | 
|  | 6110 | * events and commands. | 
|  | 6111 | */ | 
|  | 6112 | constexpr std::chrono::duration TIMEOUT = 100ms; | 
|  | 6113 | std::unique_lock lock(mLock); | 
|  | 6114 | mLooper->wake(); | 
|  | 6115 | std::cv_status result = mDispatcherEnteredIdle.wait_for(lock, TIMEOUT); | 
|  | 6116 | return result == std::cv_status::no_timeout; | 
|  | 6117 | } | 
|  | 6118 |  | 
| Vishnu Nair | e798b47 | 2020-07-23 13:52:21 -0700 | [diff] [blame] | 6119 | /** | 
|  | 6120 | * Sets focus to the window identified by the token. This must be called | 
|  | 6121 | * after updating any input window handles. | 
|  | 6122 | * | 
|  | 6123 | * Params: | 
|  | 6124 | *  request.token - input channel token used to identify the window that should gain focus. | 
|  | 6125 | *  request.focusedToken - the token that the caller expects currently to be focused. If the | 
|  | 6126 | *  specified token does not match the currently focused window, this request will be dropped. | 
|  | 6127 | *  If the specified focused token matches the currently focused window, the call will succeed. | 
|  | 6128 | *  Set this to "null" if this call should succeed no matter what the currently focused token is. | 
|  | 6129 | *  request.timestamp - SYSTEM_TIME_MONOTONIC timestamp in nanos set by the client (wm) | 
|  | 6130 | *  when requesting the focus change. This determines which request gets | 
|  | 6131 | *  precedence if there is a focus change request from another source such as pointer down. | 
|  | 6132 | */ | 
| Vishnu Nair | 958da93 | 2020-08-21 17:12:37 -0700 | [diff] [blame] | 6133 | void InputDispatcher::setFocusedWindow(const FocusRequest& request) { | 
|  | 6134 | { // acquire lock | 
|  | 6135 | std::scoped_lock _l(mLock); | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 6136 | std::optional<FocusResolver::FocusChanges> changes = | 
|  | 6137 | mFocusResolver.setFocusedWindow(request, getWindowHandlesLocked(request.displayId)); | 
|  | 6138 | if (changes) { | 
|  | 6139 | onFocusChangedLocked(*changes); | 
| Vishnu Nair | 958da93 | 2020-08-21 17:12:37 -0700 | [diff] [blame] | 6140 | } | 
|  | 6141 | } // release lock | 
|  | 6142 | // Wake up poll loop since it may need to make new input dispatching choices. | 
|  | 6143 | mLooper->wake(); | 
|  | 6144 | } | 
|  | 6145 |  | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 6146 | void InputDispatcher::onFocusChangedLocked(const FocusResolver::FocusChanges& changes) { | 
|  | 6147 | if (changes.oldFocus) { | 
|  | 6148 | std::shared_ptr<InputChannel> focusedInputChannel = getInputChannelLocked(changes.oldFocus); | 
| Vishnu Nair | 7d3d00d | 2020-08-03 11:20:42 -0700 | [diff] [blame] | 6149 | if (focusedInputChannel) { | 
|  | 6150 | CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, | 
|  | 6151 | "focus left window"); | 
|  | 6152 | synthesizeCancelationEventsForInputChannelLocked(focusedInputChannel, options); | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 6153 | enqueueFocusEventLocked(changes.oldFocus, false /*hasFocus*/, changes.reason); | 
| Vishnu Nair | 7d3d00d | 2020-08-03 11:20:42 -0700 | [diff] [blame] | 6154 | } | 
| Vishnu Nair | 7d3d00d | 2020-08-03 11:20:42 -0700 | [diff] [blame] | 6155 | } | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 6156 | if (changes.newFocus) { | 
|  | 6157 | enqueueFocusEventLocked(changes.newFocus, true /*hasFocus*/, changes.reason); | 
| Vishnu Nair | 7d3d00d | 2020-08-03 11:20:42 -0700 | [diff] [blame] | 6158 | } | 
|  | 6159 |  | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 6160 | // If a window has pointer capture, then it must have focus. We need to ensure that this | 
|  | 6161 | // contract is upheld when pointer capture is being disabled due to a loss of window focus. | 
|  | 6162 | // If the window loses focus before it loses pointer capture, then the window can be in a state | 
|  | 6163 | // where it has pointer capture but not focus, violating the contract. Therefore we must | 
|  | 6164 | // dispatch the pointer capture event before the focus event. Since focus events are added to | 
|  | 6165 | // the front of the queue (above), we add the pointer capture event to the front of the queue | 
|  | 6166 | // after the focus events are added. This ensures the pointer capture event ends up at the | 
|  | 6167 | // front. | 
|  | 6168 | disablePointerCaptureForcedLocked(); | 
|  | 6169 |  | 
| Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 6170 | if (mFocusedDisplayId == changes.displayId) { | 
|  | 6171 | notifyFocusChangedLocked(changes.oldFocus, changes.newFocus); | 
| Vishnu Nair | 7d3d00d | 2020-08-03 11:20:42 -0700 | [diff] [blame] | 6172 | } | 
|  | 6173 | } | 
| Vishnu Nair | 958da93 | 2020-08-21 17:12:37 -0700 | [diff] [blame] | 6174 |  | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 6175 | void InputDispatcher::disablePointerCaptureForcedLocked() { | 
|  | 6176 | if (!mFocusedWindowRequestedPointerCapture && !mWindowTokenWithPointerCapture) { | 
|  | 6177 | return; | 
|  | 6178 | } | 
|  | 6179 |  | 
|  | 6180 | ALOGD_IF(DEBUG_FOCUS, "Disabling Pointer Capture because the window lost focus."); | 
|  | 6181 |  | 
|  | 6182 | if (mFocusedWindowRequestedPointerCapture) { | 
|  | 6183 | mFocusedWindowRequestedPointerCapture = false; | 
|  | 6184 | setPointerCaptureLocked(false); | 
|  | 6185 | } | 
|  | 6186 |  | 
|  | 6187 | if (!mWindowTokenWithPointerCapture) { | 
|  | 6188 | // No need to send capture changes because no window has capture. | 
|  | 6189 | return; | 
|  | 6190 | } | 
|  | 6191 |  | 
|  | 6192 | if (mPendingEvent != nullptr) { | 
|  | 6193 | // Move the pending event to the front of the queue. This will give the chance | 
|  | 6194 | // for the pending event to be dropped if it is a captured event. | 
|  | 6195 | mInboundQueue.push_front(mPendingEvent); | 
|  | 6196 | mPendingEvent = nullptr; | 
|  | 6197 | } | 
|  | 6198 |  | 
|  | 6199 | auto entry = std::make_unique<PointerCaptureChangedEntry>(mIdGenerator.nextId(), now(), | 
|  | 6200 | false /* hasCapture */); | 
|  | 6201 | mInboundQueue.push_front(std::move(entry)); | 
|  | 6202 | } | 
|  | 6203 |  | 
| Prabir Pradhan | 9998771 | 2020-11-10 18:43:05 -0800 | [diff] [blame] | 6204 | void InputDispatcher::setPointerCaptureLocked(bool enabled) { | 
|  | 6205 | std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( | 
|  | 6206 | &InputDispatcher::doSetPointerCaptureLockedInterruptible); | 
|  | 6207 | commandEntry->enabled = enabled; | 
|  | 6208 | postCommandLocked(std::move(commandEntry)); | 
|  | 6209 | } | 
|  | 6210 |  | 
|  | 6211 | void InputDispatcher::doSetPointerCaptureLockedInterruptible( | 
|  | 6212 | android::inputdispatcher::CommandEntry* commandEntry) { | 
|  | 6213 | mLock.unlock(); | 
|  | 6214 |  | 
|  | 6215 | mPolicy->setPointerCapture(commandEntry->enabled); | 
|  | 6216 |  | 
|  | 6217 | mLock.lock(); | 
|  | 6218 | } | 
|  | 6219 |  | 
| Vishnu Nair | 599f141 | 2021-06-21 10:39:58 -0700 | [diff] [blame] | 6220 | void InputDispatcher::displayRemoved(int32_t displayId) { | 
|  | 6221 | { // acquire lock | 
|  | 6222 | std::scoped_lock _l(mLock); | 
|  | 6223 | // Set an empty list to remove all handles from the specific display. | 
|  | 6224 | setInputWindowsLocked(/* window handles */ {}, displayId); | 
|  | 6225 | setFocusedApplicationLocked(displayId, nullptr); | 
|  | 6226 | // Call focus resolver to clean up stale requests. This must be called after input windows | 
|  | 6227 | // have been removed for the removed display. | 
|  | 6228 | mFocusResolver.displayRemoved(displayId); | 
|  | 6229 | } // release lock | 
|  | 6230 |  | 
|  | 6231 | // Wake up poll loop since it may need to make new input dispatching choices. | 
|  | 6232 | mLooper->wake(); | 
|  | 6233 | } | 
|  | 6234 |  | 
| Garfield Tan | e84e6f9 | 2019-08-29 17:28:41 -0700 | [diff] [blame] | 6235 | } // namespace android::inputdispatcher |