| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright (C) 2005 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 |  | 
| Jason Parks | dcd3958 | 2009-11-03 12:14:38 -0800 | [diff] [blame] | 17 | #define LOG_TAG "IPCThreadState" | 
 | 18 |  | 
| Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 19 | #include <binder/IPCThreadState.h> | 
| Jayant Chowdhary | dac6dc8 | 2018-10-01 22:52:44 +0000 | [diff] [blame] | 20 | #include <binderthreadstate/IPCThreadStateBase.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 21 |  | 
| Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 22 | #include <binder/Binder.h> | 
 | 23 | #include <binder/BpBinder.h> | 
| Mathias Agopian | 002e1e5 | 2013-05-06 20:20:50 -0700 | [diff] [blame] | 24 | #include <binder/TextOutput.h> | 
 | 25 |  | 
| Steven Moreland | 7732a09 | 2019-01-02 17:54:16 -0800 | [diff] [blame] | 26 | #include <android-base/macros.h> | 
| Glenn Kasten | a26e1cf | 2012-03-16 07:15:23 -0700 | [diff] [blame] | 27 | #include <cutils/sched_policy.h> | 
| Steven Moreland | 7732a09 | 2019-01-02 17:54:16 -0800 | [diff] [blame] | 28 | #include <utils/CallStack.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 29 | #include <utils/Log.h> | 
| Colin Cross | 96e8322 | 2016-04-15 14:29:55 -0700 | [diff] [blame] | 30 | #include <utils/SystemClock.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 31 | #include <utils/threads.h> | 
 | 32 |  | 
| Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 33 | #include <private/binder/binder_module.h> | 
 | 34 | #include <private/binder/Static.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 35 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 36 | #include <errno.h> | 
| Colin Cross | 96e8322 | 2016-04-15 14:29:55 -0700 | [diff] [blame] | 37 | #include <inttypes.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 38 | #include <pthread.h> | 
 | 39 | #include <sched.h> | 
| Yabin Cui | 8fb2d25 | 2015-01-26 19:45:47 -0800 | [diff] [blame] | 40 | #include <signal.h> | 
 | 41 | #include <stdio.h> | 
 | 42 | #include <sys/ioctl.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 43 | #include <sys/resource.h> | 
| Yabin Cui | 8fb2d25 | 2015-01-26 19:45:47 -0800 | [diff] [blame] | 44 | #include <unistd.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 45 |  | 
 | 46 | #if LOG_NDEBUG | 
 | 47 |  | 
 | 48 | #define IF_LOG_TRANSACTIONS() if (false) | 
 | 49 | #define IF_LOG_COMMANDS() if (false) | 
 | 50 | #define LOG_REMOTEREFS(...)  | 
 | 51 | #define IF_LOG_REMOTEREFS() if (false) | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 52 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 53 | #define LOG_THREADPOOL(...)  | 
 | 54 | #define LOG_ONEWAY(...)  | 
 | 55 |  | 
 | 56 | #else | 
 | 57 |  | 
| Steve Block | 9f76015 | 2011-10-12 17:27:03 +0100 | [diff] [blame] | 58 | #define IF_LOG_TRANSACTIONS() IF_ALOG(LOG_VERBOSE, "transact") | 
 | 59 | #define IF_LOG_COMMANDS() IF_ALOG(LOG_VERBOSE, "ipc") | 
 | 60 | #define LOG_REMOTEREFS(...) ALOG(LOG_DEBUG, "remoterefs", __VA_ARGS__) | 
 | 61 | #define IF_LOG_REMOTEREFS() IF_ALOG(LOG_DEBUG, "remoterefs") | 
 | 62 | #define LOG_THREADPOOL(...) ALOG(LOG_DEBUG, "threadpool", __VA_ARGS__) | 
 | 63 | #define LOG_ONEWAY(...) ALOG(LOG_DEBUG, "ipc", __VA_ARGS__) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 64 |  | 
 | 65 | #endif | 
 | 66 |  | 
 | 67 | // --------------------------------------------------------------------------- | 
 | 68 |  | 
 | 69 | namespace android { | 
 | 70 |  | 
| Chih-Hung Hsieh | 8e5337d | 2014-10-24 14:10:09 -0700 | [diff] [blame] | 71 | // Static const and functions will be optimized out if not used, | 
 | 72 | // when LOG_NDEBUG and references in IF_LOG_COMMANDS() are optimized out. | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 73 | static const char *kReturnStrings[] = { | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 74 |     "BR_ERROR", | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 75 |     "BR_OK", | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 76 |     "BR_TRANSACTION", | 
 | 77 |     "BR_REPLY", | 
 | 78 |     "BR_ACQUIRE_RESULT", | 
 | 79 |     "BR_DEAD_REPLY", | 
 | 80 |     "BR_TRANSACTION_COMPLETE", | 
 | 81 |     "BR_INCREFS", | 
 | 82 |     "BR_ACQUIRE", | 
 | 83 |     "BR_RELEASE", | 
 | 84 |     "BR_DECREFS", | 
 | 85 |     "BR_ATTEMPT_ACQUIRE", | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 86 |     "BR_NOOP", | 
 | 87 |     "BR_SPAWN_LOOPER", | 
 | 88 |     "BR_FINISHED", | 
 | 89 |     "BR_DEAD_BINDER", | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 90 |     "BR_CLEAR_DEATH_NOTIFICATION_DONE", | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 91 |     "BR_FAILED_REPLY", | 
 | 92 |     "BR_TRANSACTION_SEC_CTX", | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 93 | }; | 
 | 94 |  | 
 | 95 | static const char *kCommandStrings[] = { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 96 |     "BC_TRANSACTION", | 
 | 97 |     "BC_REPLY", | 
 | 98 |     "BC_ACQUIRE_RESULT", | 
 | 99 |     "BC_FREE_BUFFER", | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 100 |     "BC_INCREFS", | 
 | 101 |     "BC_ACQUIRE", | 
 | 102 |     "BC_RELEASE", | 
 | 103 |     "BC_DECREFS", | 
 | 104 |     "BC_INCREFS_DONE", | 
 | 105 |     "BC_ACQUIRE_DONE", | 
 | 106 |     "BC_ATTEMPT_ACQUIRE", | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 107 |     "BC_REGISTER_LOOPER", | 
 | 108 |     "BC_ENTER_LOOPER", | 
 | 109 |     "BC_EXIT_LOOPER", | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 110 |     "BC_REQUEST_DEATH_NOTIFICATION", | 
 | 111 |     "BC_CLEAR_DEATH_NOTIFICATION", | 
 | 112 |     "BC_DEAD_BINDER_DONE" | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 113 | }; | 
 | 114 |  | 
| Olivier Gaillard | 91a0480 | 2018-11-14 17:32:41 +0000 | [diff] [blame] | 115 | static const int64_t kWorkSourcePropagatedBitIndex = 32; | 
| Olivier Gaillard | 0e0f1de | 2018-08-16 14:04:09 +0100 | [diff] [blame] | 116 |  | 
| songjinshi | 73a7dde | 2016-10-18 21:05:56 +0800 | [diff] [blame] | 117 | static const char* getReturnString(uint32_t cmd) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 118 | { | 
| songjinshi | 73a7dde | 2016-10-18 21:05:56 +0800 | [diff] [blame] | 119 |     size_t idx = cmd & 0xff; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 120 |     if (idx < sizeof(kReturnStrings) / sizeof(kReturnStrings[0])) | 
 | 121 |         return kReturnStrings[idx]; | 
 | 122 |     else | 
 | 123 |         return "unknown"; | 
 | 124 | } | 
 | 125 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 126 | static const void* printBinderTransactionData(TextOutput& out, const void* data) | 
 | 127 | { | 
 | 128 |     const binder_transaction_data* btd = | 
 | 129 |         (const binder_transaction_data*)data; | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 130 |     if (btd->target.handle < 1024) { | 
 | 131 |         /* want to print descriptors in decimal; guess based on value */ | 
 | 132 |         out << "target.desc=" << btd->target.handle; | 
 | 133 |     } else { | 
 | 134 |         out << "target.ptr=" << btd->target.ptr; | 
 | 135 |     } | 
 | 136 |     out << " (cookie " << btd->cookie << ")" << endl | 
| Chih-Hung Hsieh | 8e5337d | 2014-10-24 14:10:09 -0700 | [diff] [blame] | 137 |         << "code=" << TypeCode(btd->code) << ", flags=" << (void*)(long)btd->flags << endl | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 138 |         << "data=" << btd->data.ptr.buffer << " (" << (void*)btd->data_size | 
 | 139 |         << " bytes)" << endl | 
 | 140 |         << "offsets=" << btd->data.ptr.offsets << " (" << (void*)btd->offsets_size | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 141 |         << " bytes)"; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 142 |     return btd+1; | 
 | 143 | } | 
 | 144 |  | 
 | 145 | static const void* printReturnCommand(TextOutput& out, const void* _cmd) | 
 | 146 | { | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 147 |     static const size_t N = sizeof(kReturnStrings)/sizeof(kReturnStrings[0]); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 148 |     const int32_t* cmd = (const int32_t*)_cmd; | 
| Bernhard Rosenkränzer | 74debb0 | 2014-11-25 21:55:33 +0100 | [diff] [blame] | 149 |     uint32_t code = (uint32_t)*cmd++; | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 150 |     size_t cmdIndex = code & 0xff; | 
| Bernhard Rosenkränzer | 74debb0 | 2014-11-25 21:55:33 +0100 | [diff] [blame] | 151 |     if (code == BR_ERROR) { | 
| Chih-Hung Hsieh | 8e5337d | 2014-10-24 14:10:09 -0700 | [diff] [blame] | 152 |         out << "BR_ERROR: " << (void*)(long)(*cmd++) << endl; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 153 |         return cmd; | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 154 |     } else if (cmdIndex >= N) { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 155 |         out << "Unknown reply: " << code << endl; | 
 | 156 |         return cmd; | 
 | 157 |     } | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 158 |     out << kReturnStrings[cmdIndex]; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 159 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 160 |     switch (code) { | 
 | 161 |         case BR_TRANSACTION: | 
 | 162 |         case BR_REPLY: { | 
 | 163 |             out << ": " << indent; | 
 | 164 |             cmd = (const int32_t *)printBinderTransactionData(out, cmd); | 
 | 165 |             out << dedent; | 
 | 166 |         } break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 167 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 168 |         case BR_ACQUIRE_RESULT: { | 
 | 169 |             const int32_t res = *cmd++; | 
 | 170 |             out << ": " << res << (res ? " (SUCCESS)" : " (FAILURE)"); | 
 | 171 |         } break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 172 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 173 |         case BR_INCREFS: | 
 | 174 |         case BR_ACQUIRE: | 
 | 175 |         case BR_RELEASE: | 
 | 176 |         case BR_DECREFS: { | 
 | 177 |             const int32_t b = *cmd++; | 
 | 178 |             const int32_t c = *cmd++; | 
| Chih-Hung Hsieh | 8e5337d | 2014-10-24 14:10:09 -0700 | [diff] [blame] | 179 |             out << ": target=" << (void*)(long)b << " (cookie " << (void*)(long)c << ")"; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 180 |         } break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 181 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 182 |         case BR_ATTEMPT_ACQUIRE: { | 
 | 183 |             const int32_t p = *cmd++; | 
 | 184 |             const int32_t b = *cmd++; | 
 | 185 |             const int32_t c = *cmd++; | 
| Chih-Hung Hsieh | 8e5337d | 2014-10-24 14:10:09 -0700 | [diff] [blame] | 186 |             out << ": target=" << (void*)(long)b << " (cookie " << (void*)(long)c | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 187 |                 << "), pri=" << p; | 
 | 188 |         } break; | 
 | 189 |  | 
 | 190 |         case BR_DEAD_BINDER: | 
 | 191 |         case BR_CLEAR_DEATH_NOTIFICATION_DONE: { | 
 | 192 |             const int32_t c = *cmd++; | 
| Chih-Hung Hsieh | 8e5337d | 2014-10-24 14:10:09 -0700 | [diff] [blame] | 193 |             out << ": death cookie " << (void*)(long)c; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 194 |         } break; | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 195 |  | 
 | 196 |         default: | 
 | 197 |             // no details to show for: BR_OK, BR_DEAD_REPLY, | 
 | 198 |             // BR_TRANSACTION_COMPLETE, BR_FINISHED | 
 | 199 |             break; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 200 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 201 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 202 |     out << endl; | 
 | 203 |     return cmd; | 
 | 204 | } | 
 | 205 |  | 
 | 206 | static const void* printCommand(TextOutput& out, const void* _cmd) | 
 | 207 | { | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 208 |     static const size_t N = sizeof(kCommandStrings)/sizeof(kCommandStrings[0]); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 209 |     const int32_t* cmd = (const int32_t*)_cmd; | 
| Bernhard Rosenkränzer | 74debb0 | 2014-11-25 21:55:33 +0100 | [diff] [blame] | 210 |     uint32_t code = (uint32_t)*cmd++; | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 211 |     size_t cmdIndex = code & 0xff; | 
 | 212 |  | 
 | 213 |     if (cmdIndex >= N) { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 214 |         out << "Unknown command: " << code << endl; | 
 | 215 |         return cmd; | 
 | 216 |     } | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 217 |     out << kCommandStrings[cmdIndex]; | 
 | 218 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 219 |     switch (code) { | 
 | 220 |         case BC_TRANSACTION: | 
 | 221 |         case BC_REPLY: { | 
 | 222 |             out << ": " << indent; | 
 | 223 |             cmd = (const int32_t *)printBinderTransactionData(out, cmd); | 
 | 224 |             out << dedent; | 
 | 225 |         } break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 226 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 227 |         case BC_ACQUIRE_RESULT: { | 
 | 228 |             const int32_t res = *cmd++; | 
 | 229 |             out << ": " << res << (res ? " (SUCCESS)" : " (FAILURE)"); | 
 | 230 |         } break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 231 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 232 |         case BC_FREE_BUFFER: { | 
 | 233 |             const int32_t buf = *cmd++; | 
| Chih-Hung Hsieh | 8e5337d | 2014-10-24 14:10:09 -0700 | [diff] [blame] | 234 |             out << ": buffer=" << (void*)(long)buf; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 235 |         } break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 236 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 237 |         case BC_INCREFS: | 
 | 238 |         case BC_ACQUIRE: | 
 | 239 |         case BC_RELEASE: | 
 | 240 |         case BC_DECREFS: { | 
 | 241 |             const int32_t d = *cmd++; | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 242 |             out << ": desc=" << d; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 243 |         } break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 244 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 245 |         case BC_INCREFS_DONE: | 
 | 246 |         case BC_ACQUIRE_DONE: { | 
 | 247 |             const int32_t b = *cmd++; | 
 | 248 |             const int32_t c = *cmd++; | 
| Chih-Hung Hsieh | 8e5337d | 2014-10-24 14:10:09 -0700 | [diff] [blame] | 249 |             out << ": target=" << (void*)(long)b << " (cookie " << (void*)(long)c << ")"; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 250 |         } break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 251 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 252 |         case BC_ATTEMPT_ACQUIRE: { | 
 | 253 |             const int32_t p = *cmd++; | 
 | 254 |             const int32_t d = *cmd++; | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 255 |             out << ": desc=" << d << ", pri=" << p; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 256 |         } break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 257 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 258 |         case BC_REQUEST_DEATH_NOTIFICATION: | 
 | 259 |         case BC_CLEAR_DEATH_NOTIFICATION: { | 
 | 260 |             const int32_t h = *cmd++; | 
 | 261 |             const int32_t c = *cmd++; | 
| Chih-Hung Hsieh | 8e5337d | 2014-10-24 14:10:09 -0700 | [diff] [blame] | 262 |             out << ": handle=" << h << " (death cookie " << (void*)(long)c << ")"; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 263 |         } break; | 
 | 264 |  | 
 | 265 |         case BC_DEAD_BINDER_DONE: { | 
 | 266 |             const int32_t c = *cmd++; | 
| Chih-Hung Hsieh | 8e5337d | 2014-10-24 14:10:09 -0700 | [diff] [blame] | 267 |             out << ": death cookie " << (void*)(long)c; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 268 |         } break; | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 269 |  | 
 | 270 |         default: | 
 | 271 |             // no details to show for: BC_REGISTER_LOOPER, BC_ENTER_LOOPER, | 
 | 272 |             // BC_EXIT_LOOPER | 
 | 273 |             break; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 274 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 275 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 276 |     out << endl; | 
 | 277 |     return cmd; | 
 | 278 | } | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 279 |  | 
 | 280 | static pthread_mutex_t gTLSMutex = PTHREAD_MUTEX_INITIALIZER; | 
 | 281 | static bool gHaveTLS = false; | 
 | 282 | static pthread_key_t gTLS = 0; | 
 | 283 | static bool gShutdown = false; | 
| Dianne Hackborn | 8c6cedc | 2009-12-07 17:59:37 -0800 | [diff] [blame] | 284 | static bool gDisableBackgroundScheduling = false; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 285 |  | 
 | 286 | IPCThreadState* IPCThreadState::self() | 
 | 287 | { | 
 | 288 |     if (gHaveTLS) { | 
 | 289 | restart: | 
 | 290 |         const pthread_key_t k = gTLS; | 
 | 291 |         IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k); | 
 | 292 |         if (st) return st; | 
 | 293 |         return new IPCThreadState; | 
 | 294 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 295 |  | 
| Andreas Gampe | f31a3eb | 2016-02-01 13:21:56 -0800 | [diff] [blame] | 296 |     if (gShutdown) { | 
 | 297 |         ALOGW("Calling IPCThreadState::self() during shutdown is dangerous, expect a crash.\n"); | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 298 |         return nullptr; | 
| Andreas Gampe | f31a3eb | 2016-02-01 13:21:56 -0800 | [diff] [blame] | 299 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 300 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 301 |     pthread_mutex_lock(&gTLSMutex); | 
 | 302 |     if (!gHaveTLS) { | 
| Andreas Gampe | f31a3eb | 2016-02-01 13:21:56 -0800 | [diff] [blame] | 303 |         int key_create_value = pthread_key_create(&gTLS, threadDestructor); | 
 | 304 |         if (key_create_value != 0) { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 305 |             pthread_mutex_unlock(&gTLSMutex); | 
| Andreas Gampe | f31a3eb | 2016-02-01 13:21:56 -0800 | [diff] [blame] | 306 |             ALOGW("IPCThreadState::self() unable to create TLS key, expect a crash: %s\n", | 
 | 307 |                     strerror(key_create_value)); | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 308 |             return nullptr; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 309 |         } | 
 | 310 |         gHaveTLS = true; | 
 | 311 |     } | 
 | 312 |     pthread_mutex_unlock(&gTLSMutex); | 
 | 313 |     goto restart; | 
 | 314 | } | 
 | 315 |  | 
| Brad Fitzpatrick | 1b60843 | 2010-12-13 16:52:35 -0800 | [diff] [blame] | 316 | IPCThreadState* IPCThreadState::selfOrNull() | 
 | 317 | { | 
 | 318 |     if (gHaveTLS) { | 
 | 319 |         const pthread_key_t k = gTLS; | 
 | 320 |         IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k); | 
 | 321 |         return st; | 
 | 322 |     } | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 323 |     return nullptr; | 
| Brad Fitzpatrick | 1b60843 | 2010-12-13 16:52:35 -0800 | [diff] [blame] | 324 | } | 
 | 325 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 326 | void IPCThreadState::shutdown() | 
 | 327 | { | 
 | 328 |     gShutdown = true; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 329 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 330 |     if (gHaveTLS) { | 
 | 331 |         // XXX Need to wait for all thread pool threads to exit! | 
 | 332 |         IPCThreadState* st = (IPCThreadState*)pthread_getspecific(gTLS); | 
 | 333 |         if (st) { | 
 | 334 |             delete st; | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 335 |             pthread_setspecific(gTLS, nullptr); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 336 |         } | 
| zhongjie | ff40578 | 2016-03-09 15:05:04 +0800 | [diff] [blame] | 337 |         pthread_key_delete(gTLS); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 338 |         gHaveTLS = false; | 
 | 339 |     } | 
 | 340 | } | 
 | 341 |  | 
| Dianne Hackborn | 8c6cedc | 2009-12-07 17:59:37 -0800 | [diff] [blame] | 342 | void IPCThreadState::disableBackgroundScheduling(bool disable) | 
 | 343 | { | 
 | 344 |     gDisableBackgroundScheduling = disable; | 
 | 345 | } | 
 | 346 |  | 
| Martijn Coenen | 2b63174 | 2017-05-05 11:16:59 -0700 | [diff] [blame] | 347 | bool IPCThreadState::backgroundSchedulingDisabled() | 
 | 348 | { | 
 | 349 |     return gDisableBackgroundScheduling; | 
 | 350 | } | 
 | 351 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 352 | sp<ProcessState> IPCThreadState::process() | 
 | 353 | { | 
 | 354 |     return mProcess; | 
 | 355 | } | 
 | 356 |  | 
 | 357 | status_t IPCThreadState::clearLastError() | 
 | 358 | { | 
 | 359 |     const status_t err = mLastError; | 
 | 360 |     mLastError = NO_ERROR; | 
 | 361 |     return err; | 
 | 362 | } | 
 | 363 |  | 
| Dan Stoza | 9c634fd | 2014-11-26 12:23:23 -0800 | [diff] [blame] | 364 | pid_t IPCThreadState::getCallingPid() const | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 365 | { | 
 | 366 |     return mCallingPid; | 
 | 367 | } | 
 | 368 |  | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 369 | const char* IPCThreadState::getCallingSid() const | 
 | 370 | { | 
 | 371 |     return mCallingSid; | 
 | 372 | } | 
 | 373 |  | 
| Dan Stoza | 9c634fd | 2014-11-26 12:23:23 -0800 | [diff] [blame] | 374 | uid_t IPCThreadState::getCallingUid() const | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 375 | { | 
 | 376 |     return mCallingUid; | 
 | 377 | } | 
 | 378 |  | 
 | 379 | int64_t IPCThreadState::clearCallingIdentity() | 
 | 380 | { | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 381 |     // ignore mCallingSid for legacy reasons | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 382 |     int64_t token = ((int64_t)mCallingUid<<32) | mCallingPid; | 
 | 383 |     clearCaller(); | 
 | 384 |     return token; | 
 | 385 | } | 
 | 386 |  | 
| Brad Fitzpatrick | 702ea9d | 2010-06-18 13:07:53 -0700 | [diff] [blame] | 387 | void IPCThreadState::setStrictModePolicy(int32_t policy) | 
 | 388 | { | 
 | 389 |     mStrictModePolicy = policy; | 
 | 390 | } | 
 | 391 |  | 
| Brad Fitzpatrick | a877cd8 | 2010-07-07 16:06:39 -0700 | [diff] [blame] | 392 | int32_t IPCThreadState::getStrictModePolicy() const | 
 | 393 | { | 
| Brad Fitzpatrick | 702ea9d | 2010-06-18 13:07:53 -0700 | [diff] [blame] | 394 |     return mStrictModePolicy; | 
 | 395 | } | 
 | 396 |  | 
| Olivier Gaillard | a8e7bf2 | 2018-11-14 15:35:50 +0000 | [diff] [blame] | 397 | int64_t IPCThreadState::setCallingWorkSourceUid(uid_t uid) | 
| Olivier Gaillard | 0e0f1de | 2018-08-16 14:04:09 +0100 | [diff] [blame] | 398 | { | 
| Olivier Gaillard | 91a0480 | 2018-11-14 17:32:41 +0000 | [diff] [blame] | 399 |     int64_t token = setCallingWorkSourceUidWithoutPropagation(uid); | 
 | 400 |     mPropagateWorkSource = true; | 
 | 401 |     return token; | 
 | 402 | } | 
 | 403 |  | 
 | 404 | int64_t IPCThreadState::setCallingWorkSourceUidWithoutPropagation(uid_t uid) | 
 | 405 | { | 
 | 406 |     const int64_t propagatedBit = ((int64_t)mPropagateWorkSource) << kWorkSourcePropagatedBitIndex; | 
 | 407 |     int64_t token = propagatedBit | mWorkSource; | 
| Olivier Gaillard | 0e0f1de | 2018-08-16 14:04:09 +0100 | [diff] [blame] | 408 |     mWorkSource = uid; | 
| Olivier Gaillard | a8e7bf2 | 2018-11-14 15:35:50 +0000 | [diff] [blame] | 409 |     return token; | 
| Olivier Gaillard | 0e0f1de | 2018-08-16 14:04:09 +0100 | [diff] [blame] | 410 | } | 
 | 411 |  | 
| Olivier Gaillard | 91a0480 | 2018-11-14 17:32:41 +0000 | [diff] [blame] | 412 | void IPCThreadState::clearPropagateWorkSource() | 
 | 413 | { | 
 | 414 |     mPropagateWorkSource = false; | 
 | 415 | } | 
 | 416 |  | 
 | 417 | bool IPCThreadState::shouldPropagateWorkSource() const | 
 | 418 | { | 
 | 419 |     return mPropagateWorkSource; | 
 | 420 | } | 
 | 421 |  | 
| Olivier Gaillard | a8e7bf2 | 2018-11-14 15:35:50 +0000 | [diff] [blame] | 422 | uid_t IPCThreadState::getCallingWorkSourceUid() const | 
| Olivier Gaillard | 0e0f1de | 2018-08-16 14:04:09 +0100 | [diff] [blame] | 423 | { | 
 | 424 |     return mWorkSource; | 
 | 425 | } | 
 | 426 |  | 
| Olivier Gaillard | a8e7bf2 | 2018-11-14 15:35:50 +0000 | [diff] [blame] | 427 | int64_t IPCThreadState::clearCallingWorkSource() | 
| Olivier Gaillard | 0e0f1de | 2018-08-16 14:04:09 +0100 | [diff] [blame] | 428 | { | 
| Olivier Gaillard | a8e7bf2 | 2018-11-14 15:35:50 +0000 | [diff] [blame] | 429 |     return setCallingWorkSourceUid(kUnsetWorkSource); | 
 | 430 | } | 
 | 431 |  | 
 | 432 | void IPCThreadState::restoreCallingWorkSource(int64_t token) | 
 | 433 | { | 
 | 434 |     uid_t uid = (int)token; | 
| Olivier Gaillard | 91a0480 | 2018-11-14 17:32:41 +0000 | [diff] [blame] | 435 |     setCallingWorkSourceUidWithoutPropagation(uid); | 
 | 436 |     mPropagateWorkSource = ((token >> kWorkSourcePropagatedBitIndex) & 1) == 1; | 
| Olivier Gaillard | 0e0f1de | 2018-08-16 14:04:09 +0100 | [diff] [blame] | 437 | } | 
 | 438 |  | 
| Brad Fitzpatrick | 5273603 | 2010-08-30 16:01:16 -0700 | [diff] [blame] | 439 | void IPCThreadState::setLastTransactionBinderFlags(int32_t flags) | 
 | 440 | { | 
 | 441 |     mLastTransactionBinderFlags = flags; | 
 | 442 | } | 
 | 443 |  | 
 | 444 | int32_t IPCThreadState::getLastTransactionBinderFlags() const | 
 | 445 | { | 
 | 446 |     return mLastTransactionBinderFlags; | 
 | 447 | } | 
 | 448 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 449 | void IPCThreadState::restoreCallingIdentity(int64_t token) | 
 | 450 | { | 
 | 451 |     mCallingUid = (int)(token>>32); | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 452 |     mCallingSid = nullptr;  // not enough data to restore | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 453 |     mCallingPid = (int)token; | 
 | 454 | } | 
 | 455 |  | 
 | 456 | void IPCThreadState::clearCaller() | 
 | 457 | { | 
| Marco Nelissen | d43b194 | 2009-07-17 07:59:17 -0700 | [diff] [blame] | 458 |     mCallingPid = getpid(); | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 459 |     mCallingSid = nullptr;  // expensive to lookup | 
| Marco Nelissen | d43b194 | 2009-07-17 07:59:17 -0700 | [diff] [blame] | 460 |     mCallingUid = getuid(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 461 | } | 
 | 462 |  | 
 | 463 | void IPCThreadState::flushCommands() | 
 | 464 | { | 
 | 465 |     if (mProcess->mDriverFD <= 0) | 
 | 466 |         return; | 
 | 467 |     talkWithDriver(false); | 
| Martijn Coenen | 7c170bb | 2018-05-04 17:28:55 -0700 | [diff] [blame] | 468 |     // The flush could have caused post-write refcount decrements to have | 
 | 469 |     // been executed, which in turn could result in BC_RELEASE/BC_DECREFS | 
 | 470 |     // being queued in mOut. So flush again, if we need to. | 
 | 471 |     if (mOut.dataSize() > 0) { | 
 | 472 |         talkWithDriver(false); | 
 | 473 |     } | 
 | 474 |     if (mOut.dataSize() > 0) { | 
 | 475 |         ALOGW("mOut.dataSize() > 0 after flushCommands()"); | 
 | 476 |     } | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 477 | } | 
 | 478 |  | 
| Wale Ogunwale | 376b822 | 2015-04-13 16:16:10 -0700 | [diff] [blame] | 479 | void IPCThreadState::blockUntilThreadAvailable() | 
 | 480 | { | 
 | 481 |     pthread_mutex_lock(&mProcess->mThreadCountLock); | 
 | 482 |     while (mProcess->mExecutingThreadsCount >= mProcess->mMaxThreads) { | 
| Wale Ogunwale | a3206e6 | 2015-04-21 12:29:50 -0700 | [diff] [blame] | 483 |         ALOGW("Waiting for thread to be free. mExecutingThreadsCount=%lu mMaxThreads=%lu\n", | 
 | 484 |                 static_cast<unsigned long>(mProcess->mExecutingThreadsCount), | 
 | 485 |                 static_cast<unsigned long>(mProcess->mMaxThreads)); | 
| Wale Ogunwale | 376b822 | 2015-04-13 16:16:10 -0700 | [diff] [blame] | 486 |         pthread_cond_wait(&mProcess->mThreadCountDecrement, &mProcess->mThreadCountLock); | 
 | 487 |     } | 
 | 488 |     pthread_mutex_unlock(&mProcess->mThreadCountLock); | 
 | 489 | } | 
 | 490 |  | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 491 | status_t IPCThreadState::getAndExecuteCommand() | 
 | 492 | { | 
 | 493 |     status_t result; | 
 | 494 |     int32_t cmd; | 
 | 495 |  | 
 | 496 |     result = talkWithDriver(); | 
 | 497 |     if (result >= NO_ERROR) { | 
 | 498 |         size_t IN = mIn.dataAvail(); | 
 | 499 |         if (IN < sizeof(int32_t)) return result; | 
 | 500 |         cmd = mIn.readInt32(); | 
 | 501 |         IF_LOG_COMMANDS() { | 
 | 502 |             alog << "Processing top-level Command: " | 
 | 503 |                  << getReturnString(cmd) << endl; | 
 | 504 |         } | 
 | 505 |  | 
| Wale Ogunwale | 376b822 | 2015-04-13 16:16:10 -0700 | [diff] [blame] | 506 |         pthread_mutex_lock(&mProcess->mThreadCountLock); | 
 | 507 |         mProcess->mExecutingThreadsCount++; | 
| Colin Cross | 96e8322 | 2016-04-15 14:29:55 -0700 | [diff] [blame] | 508 |         if (mProcess->mExecutingThreadsCount >= mProcess->mMaxThreads && | 
 | 509 |                 mProcess->mStarvationStartTimeMs == 0) { | 
 | 510 |             mProcess->mStarvationStartTimeMs = uptimeMillis(); | 
 | 511 |         } | 
| Wale Ogunwale | 376b822 | 2015-04-13 16:16:10 -0700 | [diff] [blame] | 512 |         pthread_mutex_unlock(&mProcess->mThreadCountLock); | 
 | 513 |  | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 514 |         result = executeCommand(cmd); | 
 | 515 |  | 
| Wale Ogunwale | 376b822 | 2015-04-13 16:16:10 -0700 | [diff] [blame] | 516 |         pthread_mutex_lock(&mProcess->mThreadCountLock); | 
 | 517 |         mProcess->mExecutingThreadsCount--; | 
| Colin Cross | 96e8322 | 2016-04-15 14:29:55 -0700 | [diff] [blame] | 518 |         if (mProcess->mExecutingThreadsCount < mProcess->mMaxThreads && | 
 | 519 |                 mProcess->mStarvationStartTimeMs != 0) { | 
 | 520 |             int64_t starvationTimeMs = uptimeMillis() - mProcess->mStarvationStartTimeMs; | 
 | 521 |             if (starvationTimeMs > 100) { | 
 | 522 |                 ALOGE("binder thread pool (%zu threads) starved for %" PRId64 " ms", | 
 | 523 |                       mProcess->mMaxThreads, starvationTimeMs); | 
 | 524 |             } | 
 | 525 |             mProcess->mStarvationStartTimeMs = 0; | 
 | 526 |         } | 
| Wale Ogunwale | 376b822 | 2015-04-13 16:16:10 -0700 | [diff] [blame] | 527 |         pthread_cond_broadcast(&mProcess->mThreadCountDecrement); | 
 | 528 |         pthread_mutex_unlock(&mProcess->mThreadCountLock); | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 529 |     } | 
 | 530 |  | 
 | 531 |     return result; | 
 | 532 | } | 
 | 533 |  | 
 | 534 | // When we've cleared the incoming command queue, process any pending derefs | 
 | 535 | void IPCThreadState::processPendingDerefs() | 
 | 536 | { | 
 | 537 |     if (mIn.dataPosition() >= mIn.dataSize()) { | 
| Martijn Coenen | 0791fbf | 2017-08-08 15:36:16 +0200 | [diff] [blame] | 538 |         /* | 
 | 539 |          * The decWeak()/decStrong() calls may cause a destructor to run, | 
 | 540 |          * which in turn could have initiated an outgoing transaction, | 
 | 541 |          * which in turn could cause us to add to the pending refs | 
 | 542 |          * vectors; so instead of simply iterating, loop until they're empty. | 
 | 543 |          * | 
 | 544 |          * We do this in an outer loop, because calling decStrong() | 
 | 545 |          * may result in something being added to mPendingWeakDerefs, | 
 | 546 |          * which could be delayed until the next incoming command | 
 | 547 |          * from the driver if we don't process it now. | 
 | 548 |          */ | 
 | 549 |         while (mPendingWeakDerefs.size() > 0 || mPendingStrongDerefs.size() > 0) { | 
 | 550 |             while (mPendingWeakDerefs.size() > 0) { | 
 | 551 |                 RefBase::weakref_type* refs = mPendingWeakDerefs[0]; | 
 | 552 |                 mPendingWeakDerefs.removeAt(0); | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 553 |                 refs->decWeak(mProcess.get()); | 
 | 554 |             } | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 555 |  | 
| Martijn Coenen | 0791fbf | 2017-08-08 15:36:16 +0200 | [diff] [blame] | 556 |             if (mPendingStrongDerefs.size() > 0) { | 
 | 557 |                 // We don't use while() here because we don't want to re-order | 
 | 558 |                 // strong and weak decs at all; if this decStrong() causes both a | 
 | 559 |                 // decWeak() and a decStrong() to be queued, we want to process | 
 | 560 |                 // the decWeak() first. | 
 | 561 |                 BBinder* obj = mPendingStrongDerefs[0]; | 
 | 562 |                 mPendingStrongDerefs.removeAt(0); | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 563 |                 obj->decStrong(mProcess.get()); | 
 | 564 |             } | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 565 |         } | 
 | 566 |     } | 
 | 567 | } | 
 | 568 |  | 
| Martijn Coenen | 7c170bb | 2018-05-04 17:28:55 -0700 | [diff] [blame] | 569 | void IPCThreadState::processPostWriteDerefs() | 
 | 570 | { | 
 | 571 |     for (size_t i = 0; i < mPostWriteWeakDerefs.size(); i++) { | 
 | 572 |         RefBase::weakref_type* refs = mPostWriteWeakDerefs[i]; | 
 | 573 |         refs->decWeak(mProcess.get()); | 
 | 574 |     } | 
 | 575 |     mPostWriteWeakDerefs.clear(); | 
 | 576 |  | 
 | 577 |     for (size_t i = 0; i < mPostWriteStrongDerefs.size(); i++) { | 
 | 578 |         RefBase* obj = mPostWriteStrongDerefs[i]; | 
 | 579 |         obj->decStrong(mProcess.get()); | 
 | 580 |     } | 
 | 581 |     mPostWriteStrongDerefs.clear(); | 
 | 582 | } | 
 | 583 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 584 | void IPCThreadState::joinThreadPool(bool isMain) | 
 | 585 | { | 
 | 586 |     LOG_THREADPOOL("**** THREAD %p (PID %d) IS JOINING THE THREAD POOL\n", (void*)pthread_self(), getpid()); | 
 | 587 |  | 
 | 588 |     mOut.writeInt32(isMain ? BC_ENTER_LOOPER : BC_REGISTER_LOOPER); | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 589 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 590 |     status_t result; | 
 | 591 |     do { | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 592 |         processPendingDerefs(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 593 |         // now get the next command to be processed, waiting if necessary | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 594 |         result = getAndExecuteCommand(); | 
| Jason Parks | dcd3958 | 2009-11-03 12:14:38 -0800 | [diff] [blame] | 595 |  | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 596 |         if (result < NO_ERROR && result != TIMED_OUT && result != -ECONNREFUSED && result != -EBADF) { | 
 | 597 |             ALOGE("getAndExecuteCommand(fd=%d) returned unexpected error %d, aborting", | 
| Jeff Tinker | ef07386 | 2013-06-11 11:30:21 -0700 | [diff] [blame] | 598 |                   mProcess->mDriverFD, result); | 
 | 599 |             abort(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 600 |         } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 601 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 602 |         // Let this thread exit the thread pool if it is no longer | 
 | 603 |         // needed and it is not the main process thread. | 
 | 604 |         if(result == TIMED_OUT && !isMain) { | 
 | 605 |             break; | 
 | 606 |         } | 
 | 607 |     } while (result != -ECONNREFUSED && result != -EBADF); | 
 | 608 |  | 
| Wei Wang | c734143 | 2016-10-19 10:23:59 -0700 | [diff] [blame] | 609 |     LOG_THREADPOOL("**** THREAD %p (PID %d) IS LEAVING THE THREAD POOL err=%d\n", | 
 | 610 |         (void*)pthread_self(), getpid(), result); | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 611 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 612 |     mOut.writeInt32(BC_EXIT_LOOPER); | 
 | 613 |     talkWithDriver(false); | 
 | 614 | } | 
 | 615 |  | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 616 | int IPCThreadState::setupPolling(int* fd) | 
 | 617 | { | 
 | 618 |     if (mProcess->mDriverFD <= 0) { | 
 | 619 |         return -EBADF; | 
 | 620 |     } | 
 | 621 |  | 
 | 622 |     mOut.writeInt32(BC_ENTER_LOOPER); | 
 | 623 |     *fd = mProcess->mDriverFD; | 
 | 624 |     return 0; | 
 | 625 | } | 
 | 626 |  | 
 | 627 | status_t IPCThreadState::handlePolledCommands() | 
 | 628 | { | 
 | 629 |     status_t result; | 
 | 630 |  | 
 | 631 |     do { | 
 | 632 |         result = getAndExecuteCommand(); | 
 | 633 |     } while (mIn.dataPosition() < mIn.dataSize()); | 
 | 634 |  | 
 | 635 |     processPendingDerefs(); | 
 | 636 |     flushCommands(); | 
 | 637 |     return result; | 
 | 638 | } | 
 | 639 |  | 
| Colin Cross | 6f4f3ab | 2014-02-05 17:42:44 -0800 | [diff] [blame] | 640 | void IPCThreadState::stopProcess(bool /*immediate*/) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 641 | { | 
| Steve Block | a19954a | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 642 |     //ALOGI("**** STOPPING PROCESS"); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 643 |     flushCommands(); | 
 | 644 |     int fd = mProcess->mDriverFD; | 
 | 645 |     mProcess->mDriverFD = -1; | 
 | 646 |     close(fd); | 
 | 647 |     //kill(getpid(), SIGKILL); | 
 | 648 | } | 
 | 649 |  | 
 | 650 | status_t IPCThreadState::transact(int32_t handle, | 
 | 651 |                                   uint32_t code, const Parcel& data, | 
 | 652 |                                   Parcel* reply, uint32_t flags) | 
 | 653 | { | 
| Ganesh Mahendran | 58e5daa | 2017-10-11 18:05:13 +0800 | [diff] [blame] | 654 |     status_t err; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 655 |  | 
 | 656 |     flags |= TF_ACCEPT_FDS; | 
 | 657 |  | 
 | 658 |     IF_LOG_TRANSACTIONS() { | 
 | 659 |         TextOutput::Bundle _b(alog); | 
 | 660 |         alog << "BC_TRANSACTION thr " << (void*)pthread_self() << " / hand " | 
 | 661 |             << handle << " / code " << TypeCode(code) << ": " | 
 | 662 |             << indent << data << dedent << endl; | 
 | 663 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 664 |  | 
| Ganesh Mahendran | 58e5daa | 2017-10-11 18:05:13 +0800 | [diff] [blame] | 665 |     LOG_ONEWAY(">>>> SEND from pid %d uid %d %s", getpid(), getuid(), | 
 | 666 |         (flags & TF_ONE_WAY) == 0 ? "READ REPLY" : "ONE WAY"); | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 667 |     err = writeTransactionData(BC_TRANSACTION, flags, handle, code, data, nullptr); | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 668 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 669 |     if (err != NO_ERROR) { | 
 | 670 |         if (reply) reply->setError(err); | 
 | 671 |         return (mLastError = err); | 
 | 672 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 673 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 674 |     if ((flags & TF_ONE_WAY) == 0) { | 
| Steven Moreland | 7732a09 | 2019-01-02 17:54:16 -0800 | [diff] [blame] | 675 |         if (UNLIKELY(mCallRestriction != ProcessState::CallRestriction::NONE)) { | 
 | 676 |             if (mCallRestriction == ProcessState::CallRestriction::ERROR_IF_NOT_ONEWAY) { | 
 | 677 |                 ALOGE("Process making non-oneway call but is restricted."); | 
 | 678 |                 CallStack::logStack("non-oneway call", CallStack::getCurrent(10).get(), | 
 | 679 |                     ANDROID_LOG_ERROR); | 
 | 680 |             } else /* FATAL_IF_NOT_ONEWAY */ { | 
 | 681 |                 LOG_ALWAYS_FATAL("Process may not make oneway calls."); | 
 | 682 |             } | 
 | 683 |         } | 
 | 684 |  | 
| Dianne Hackborn | 67f78c4 | 2010-09-24 11:16:23 -0700 | [diff] [blame] | 685 |         #if 0 | 
 | 686 |         if (code == 4) { // relayout | 
| Steve Block | a19954a | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 687 |             ALOGI(">>>>>> CALLING transaction 4"); | 
| Dianne Hackborn | 67f78c4 | 2010-09-24 11:16:23 -0700 | [diff] [blame] | 688 |         } else { | 
| Steve Block | a19954a | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 689 |             ALOGI(">>>>>> CALLING transaction %d", code); | 
| Dianne Hackborn | 67f78c4 | 2010-09-24 11:16:23 -0700 | [diff] [blame] | 690 |         } | 
 | 691 |         #endif | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 692 |         if (reply) { | 
 | 693 |             err = waitForResponse(reply); | 
 | 694 |         } else { | 
 | 695 |             Parcel fakeReply; | 
 | 696 |             err = waitForResponse(&fakeReply); | 
 | 697 |         } | 
| Dianne Hackborn | 67f78c4 | 2010-09-24 11:16:23 -0700 | [diff] [blame] | 698 |         #if 0 | 
 | 699 |         if (code == 4) { // relayout | 
| Steve Block | a19954a | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 700 |             ALOGI("<<<<<< RETURNING transaction 4"); | 
| Dianne Hackborn | 67f78c4 | 2010-09-24 11:16:23 -0700 | [diff] [blame] | 701 |         } else { | 
| Steve Block | a19954a | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 702 |             ALOGI("<<<<<< RETURNING transaction %d", code); | 
| Dianne Hackborn | 67f78c4 | 2010-09-24 11:16:23 -0700 | [diff] [blame] | 703 |         } | 
 | 704 |         #endif | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 705 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 706 |         IF_LOG_TRANSACTIONS() { | 
 | 707 |             TextOutput::Bundle _b(alog); | 
 | 708 |             alog << "BR_REPLY thr " << (void*)pthread_self() << " / hand " | 
 | 709 |                 << handle << ": "; | 
 | 710 |             if (reply) alog << indent << *reply << dedent << endl; | 
 | 711 |             else alog << "(none requested)" << endl; | 
 | 712 |         } | 
 | 713 |     } else { | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 714 |         err = waitForResponse(nullptr, nullptr); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 715 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 716 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 717 |     return err; | 
 | 718 | } | 
 | 719 |  | 
| Martijn Coenen | 7c170bb | 2018-05-04 17:28:55 -0700 | [diff] [blame] | 720 | void IPCThreadState::incStrongHandle(int32_t handle, BpBinder *proxy) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 721 | { | 
 | 722 |     LOG_REMOTEREFS("IPCThreadState::incStrongHandle(%d)\n", handle); | 
 | 723 |     mOut.writeInt32(BC_ACQUIRE); | 
 | 724 |     mOut.writeInt32(handle); | 
| Martijn Coenen | 7c170bb | 2018-05-04 17:28:55 -0700 | [diff] [blame] | 725 |     // Create a temp reference until the driver has handled this command. | 
 | 726 |     proxy->incStrong(mProcess.get()); | 
 | 727 |     mPostWriteStrongDerefs.push(proxy); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 728 | } | 
 | 729 |  | 
 | 730 | void IPCThreadState::decStrongHandle(int32_t handle) | 
 | 731 | { | 
 | 732 |     LOG_REMOTEREFS("IPCThreadState::decStrongHandle(%d)\n", handle); | 
 | 733 |     mOut.writeInt32(BC_RELEASE); | 
 | 734 |     mOut.writeInt32(handle); | 
 | 735 | } | 
 | 736 |  | 
| Martijn Coenen | 7c170bb | 2018-05-04 17:28:55 -0700 | [diff] [blame] | 737 | void IPCThreadState::incWeakHandle(int32_t handle, BpBinder *proxy) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 738 | { | 
 | 739 |     LOG_REMOTEREFS("IPCThreadState::incWeakHandle(%d)\n", handle); | 
 | 740 |     mOut.writeInt32(BC_INCREFS); | 
 | 741 |     mOut.writeInt32(handle); | 
| Martijn Coenen | 7c170bb | 2018-05-04 17:28:55 -0700 | [diff] [blame] | 742 |     // Create a temp reference until the driver has handled this command. | 
 | 743 |     proxy->getWeakRefs()->incWeak(mProcess.get()); | 
 | 744 |     mPostWriteWeakDerefs.push(proxy->getWeakRefs()); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 745 | } | 
 | 746 |  | 
 | 747 | void IPCThreadState::decWeakHandle(int32_t handle) | 
 | 748 | { | 
 | 749 |     LOG_REMOTEREFS("IPCThreadState::decWeakHandle(%d)\n", handle); | 
 | 750 |     mOut.writeInt32(BC_DECREFS); | 
 | 751 |     mOut.writeInt32(handle); | 
 | 752 | } | 
 | 753 |  | 
 | 754 | status_t IPCThreadState::attemptIncStrongHandle(int32_t handle) | 
 | 755 | { | 
| Arve Hjønnevåg | 11cfdcc | 2014-02-14 20:14:02 -0800 | [diff] [blame] | 756 | #if HAS_BC_ATTEMPT_ACQUIRE | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 757 |     LOG_REMOTEREFS("IPCThreadState::attemptIncStrongHandle(%d)\n", handle); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 758 |     mOut.writeInt32(BC_ATTEMPT_ACQUIRE); | 
 | 759 |     mOut.writeInt32(0); // xxx was thread priority | 
 | 760 |     mOut.writeInt32(handle); | 
 | 761 |     status_t result = UNKNOWN_ERROR; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 762 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 763 |     waitForResponse(NULL, &result); | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 764 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 765 | #if LOG_REFCOUNTS | 
| liangweikang | a43ee15 | 2016-10-25 16:37:54 +0800 | [diff] [blame] | 766 |     ALOGV("IPCThreadState::attemptIncStrongHandle(%ld) = %s\n", | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 767 |         handle, result == NO_ERROR ? "SUCCESS" : "FAILURE"); | 
 | 768 | #endif | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 769 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 770 |     return result; | 
| Arve Hjønnevåg | 11cfdcc | 2014-02-14 20:14:02 -0800 | [diff] [blame] | 771 | #else | 
 | 772 |     (void)handle; | 
 | 773 |     ALOGE("%s(%d): Not supported\n", __func__, handle); | 
 | 774 |     return INVALID_OPERATION; | 
 | 775 | #endif | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 776 | } | 
 | 777 |  | 
 | 778 | void IPCThreadState::expungeHandle(int32_t handle, IBinder* binder) | 
 | 779 | { | 
 | 780 | #if LOG_REFCOUNTS | 
| liangweikang | a43ee15 | 2016-10-25 16:37:54 +0800 | [diff] [blame] | 781 |     ALOGV("IPCThreadState::expungeHandle(%ld)\n", handle); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 782 | #endif | 
| Manoj Gupta | 9cec85b | 2017-09-19 16:34:29 -0700 | [diff] [blame] | 783 |     self()->mProcess->expungeHandle(handle, binder); // NOLINT | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 784 | } | 
 | 785 |  | 
 | 786 | status_t IPCThreadState::requestDeathNotification(int32_t handle, BpBinder* proxy) | 
 | 787 | { | 
 | 788 |     mOut.writeInt32(BC_REQUEST_DEATH_NOTIFICATION); | 
 | 789 |     mOut.writeInt32((int32_t)handle); | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 790 |     mOut.writePointer((uintptr_t)proxy); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 791 |     return NO_ERROR; | 
 | 792 | } | 
 | 793 |  | 
 | 794 | status_t IPCThreadState::clearDeathNotification(int32_t handle, BpBinder* proxy) | 
 | 795 | { | 
 | 796 |     mOut.writeInt32(BC_CLEAR_DEATH_NOTIFICATION); | 
 | 797 |     mOut.writeInt32((int32_t)handle); | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 798 |     mOut.writePointer((uintptr_t)proxy); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 799 |     return NO_ERROR; | 
 | 800 | } | 
 | 801 |  | 
 | 802 | IPCThreadState::IPCThreadState() | 
| Brad Fitzpatrick | 5273603 | 2010-08-30 16:01:16 -0700 | [diff] [blame] | 803 |     : mProcess(ProcessState::self()), | 
| Olivier Gaillard | 0e0f1de | 2018-08-16 14:04:09 +0100 | [diff] [blame] | 804 |       mWorkSource(kUnsetWorkSource), | 
| Olivier Gaillard | 91a0480 | 2018-11-14 17:32:41 +0000 | [diff] [blame] | 805 |       mPropagateWorkSource(false), | 
| Brad Fitzpatrick | 5273603 | 2010-08-30 16:01:16 -0700 | [diff] [blame] | 806 |       mStrictModePolicy(0), | 
| Steven Moreland | 7732a09 | 2019-01-02 17:54:16 -0800 | [diff] [blame] | 807 |       mLastTransactionBinderFlags(0), | 
 | 808 |       mCallRestriction(mProcess->mCallRestriction) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 809 | { | 
 | 810 |     pthread_setspecific(gTLS, this); | 
| Dianne Hackborn | 8c6cedc | 2009-12-07 17:59:37 -0800 | [diff] [blame] | 811 |     clearCaller(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 812 |     mIn.setDataCapacity(256); | 
 | 813 |     mOut.setDataCapacity(256); | 
| Jayant Chowdhary | dac6dc8 | 2018-10-01 22:52:44 +0000 | [diff] [blame] | 814 |     mIPCThreadStateBase = IPCThreadStateBase::self(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 815 | } | 
 | 816 |  | 
 | 817 | IPCThreadState::~IPCThreadState() | 
 | 818 | { | 
 | 819 | } | 
 | 820 |  | 
| Martijn Coenen | ea0090a | 2017-11-02 18:54:40 +0000 | [diff] [blame] | 821 | status_t IPCThreadState::sendReply(const Parcel& reply, uint32_t flags) | 
 | 822 | { | 
 | 823 |     status_t err; | 
 | 824 |     status_t statusBuffer; | 
 | 825 |     err = writeTransactionData(BC_REPLY, flags, -1, 0, reply, &statusBuffer); | 
 | 826 |     if (err < NO_ERROR) return err; | 
 | 827 |  | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 828 |     return waitForResponse(nullptr, nullptr); | 
| Martijn Coenen | ea0090a | 2017-11-02 18:54:40 +0000 | [diff] [blame] | 829 | } | 
 | 830 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 831 | status_t IPCThreadState::waitForResponse(Parcel *reply, status_t *acquireResult) | 
 | 832 | { | 
| Bernhard Rosenkränzer | 74debb0 | 2014-11-25 21:55:33 +0100 | [diff] [blame] | 833 |     uint32_t cmd; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 834 |     int32_t err; | 
 | 835 |  | 
 | 836 |     while (1) { | 
 | 837 |         if ((err=talkWithDriver()) < NO_ERROR) break; | 
 | 838 |         err = mIn.errorCheck(); | 
 | 839 |         if (err < NO_ERROR) break; | 
 | 840 |         if (mIn.dataAvail() == 0) continue; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 841 |  | 
| Bernhard Rosenkränzer | 74debb0 | 2014-11-25 21:55:33 +0100 | [diff] [blame] | 842 |         cmd = (uint32_t)mIn.readInt32(); | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 843 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 844 |         IF_LOG_COMMANDS() { | 
 | 845 |             alog << "Processing waitForResponse Command: " | 
 | 846 |                 << getReturnString(cmd) << endl; | 
 | 847 |         } | 
 | 848 |  | 
 | 849 |         switch (cmd) { | 
 | 850 |         case BR_TRANSACTION_COMPLETE: | 
 | 851 |             if (!reply && !acquireResult) goto finish; | 
 | 852 |             break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 853 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 854 |         case BR_DEAD_REPLY: | 
 | 855 |             err = DEAD_OBJECT; | 
 | 856 |             goto finish; | 
 | 857 |  | 
 | 858 |         case BR_FAILED_REPLY: | 
 | 859 |             err = FAILED_TRANSACTION; | 
 | 860 |             goto finish; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 861 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 862 |         case BR_ACQUIRE_RESULT: | 
 | 863 |             { | 
| Steve Block | 6726347 | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 864 |                 ALOG_ASSERT(acquireResult != NULL, "Unexpected brACQUIRE_RESULT"); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 865 |                 const int32_t result = mIn.readInt32(); | 
 | 866 |                 if (!acquireResult) continue; | 
 | 867 |                 *acquireResult = result ? NO_ERROR : INVALID_OPERATION; | 
 | 868 |             } | 
 | 869 |             goto finish; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 870 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 871 |         case BR_REPLY: | 
 | 872 |             { | 
 | 873 |                 binder_transaction_data tr; | 
 | 874 |                 err = mIn.read(&tr, sizeof(tr)); | 
| Steve Block | 6726347 | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 875 |                 ALOG_ASSERT(err == NO_ERROR, "Not enough command data for brREPLY"); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 876 |                 if (err != NO_ERROR) goto finish; | 
 | 877 |  | 
 | 878 |                 if (reply) { | 
 | 879 |                     if ((tr.flags & TF_STATUS_CODE) == 0) { | 
 | 880 |                         reply->ipcSetDataReference( | 
 | 881 |                             reinterpret_cast<const uint8_t*>(tr.data.ptr.buffer), | 
 | 882 |                             tr.data_size, | 
| Arve Hjønnevåg | 84e625a | 2014-01-28 20:12:59 -0800 | [diff] [blame] | 883 |                             reinterpret_cast<const binder_size_t*>(tr.data.ptr.offsets), | 
 | 884 |                             tr.offsets_size/sizeof(binder_size_t), | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 885 |                             freeBuffer, this); | 
 | 886 |                     } else { | 
| Arve Hjønnevåg | 84e625a | 2014-01-28 20:12:59 -0800 | [diff] [blame] | 887 |                         err = *reinterpret_cast<const status_t*>(tr.data.ptr.buffer); | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 888 |                         freeBuffer(nullptr, | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 889 |                             reinterpret_cast<const uint8_t*>(tr.data.ptr.buffer), | 
 | 890 |                             tr.data_size, | 
| Arve Hjønnevåg | 84e625a | 2014-01-28 20:12:59 -0800 | [diff] [blame] | 891 |                             reinterpret_cast<const binder_size_t*>(tr.data.ptr.offsets), | 
 | 892 |                             tr.offsets_size/sizeof(binder_size_t), this); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 893 |                     } | 
 | 894 |                 } else { | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 895 |                     freeBuffer(nullptr, | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 896 |                         reinterpret_cast<const uint8_t*>(tr.data.ptr.buffer), | 
 | 897 |                         tr.data_size, | 
| Arve Hjønnevåg | 84e625a | 2014-01-28 20:12:59 -0800 | [diff] [blame] | 898 |                         reinterpret_cast<const binder_size_t*>(tr.data.ptr.offsets), | 
 | 899 |                         tr.offsets_size/sizeof(binder_size_t), this); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 900 |                     continue; | 
 | 901 |                 } | 
 | 902 |             } | 
 | 903 |             goto finish; | 
 | 904 |  | 
 | 905 |         default: | 
 | 906 |             err = executeCommand(cmd); | 
 | 907 |             if (err != NO_ERROR) goto finish; | 
 | 908 |             break; | 
 | 909 |         } | 
 | 910 |     } | 
 | 911 |  | 
 | 912 | finish: | 
 | 913 |     if (err != NO_ERROR) { | 
 | 914 |         if (acquireResult) *acquireResult = err; | 
 | 915 |         if (reply) reply->setError(err); | 
 | 916 |         mLastError = err; | 
 | 917 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 918 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 919 |     return err; | 
 | 920 | } | 
 | 921 |  | 
 | 922 | status_t IPCThreadState::talkWithDriver(bool doReceive) | 
 | 923 | { | 
| Johannes Carlsson | db1597a | 2011-02-17 14:06:53 +0100 | [diff] [blame] | 924 |     if (mProcess->mDriverFD <= 0) { | 
 | 925 |         return -EBADF; | 
 | 926 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 927 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 928 |     binder_write_read bwr; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 929 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 930 |     // Is the read buffer empty? | 
 | 931 |     const bool needRead = mIn.dataPosition() >= mIn.dataSize(); | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 932 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 933 |     // We don't want to write anything if we are still reading | 
 | 934 |     // from data left in the input buffer and the caller | 
 | 935 |     // has requested to read the next data. | 
 | 936 |     const size_t outAvail = (!doReceive || needRead) ? mOut.dataSize() : 0; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 937 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 938 |     bwr.write_size = outAvail; | 
| Arve Hjønnevåg | 84e625a | 2014-01-28 20:12:59 -0800 | [diff] [blame] | 939 |     bwr.write_buffer = (uintptr_t)mOut.data(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 940 |  | 
 | 941 |     // This is what we'll read. | 
 | 942 |     if (doReceive && needRead) { | 
 | 943 |         bwr.read_size = mIn.dataCapacity(); | 
| Arve Hjønnevåg | 84e625a | 2014-01-28 20:12:59 -0800 | [diff] [blame] | 944 |         bwr.read_buffer = (uintptr_t)mIn.data(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 945 |     } else { | 
 | 946 |         bwr.read_size = 0; | 
| Ben Cheng | d640f89 | 2011-12-01 17:11:32 -0800 | [diff] [blame] | 947 |         bwr.read_buffer = 0; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 948 |     } | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 949 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 950 |     IF_LOG_COMMANDS() { | 
 | 951 |         TextOutput::Bundle _b(alog); | 
 | 952 |         if (outAvail != 0) { | 
 | 953 |             alog << "Sending commands to driver: " << indent; | 
 | 954 |             const void* cmds = (const void*)bwr.write_buffer; | 
 | 955 |             const void* end = ((const uint8_t*)cmds)+bwr.write_size; | 
 | 956 |             alog << HexDump(cmds, bwr.write_size) << endl; | 
 | 957 |             while (cmds < end) cmds = printCommand(alog, cmds); | 
 | 958 |             alog << dedent; | 
 | 959 |         } | 
 | 960 |         alog << "Size of receive buffer: " << bwr.read_size | 
 | 961 |             << ", needRead: " << needRead << ", doReceive: " << doReceive << endl; | 
 | 962 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 963 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 964 |     // Return immediately if there is nothing to do. | 
 | 965 |     if ((bwr.write_size == 0) && (bwr.read_size == 0)) return NO_ERROR; | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 966 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 967 |     bwr.write_consumed = 0; | 
 | 968 |     bwr.read_consumed = 0; | 
 | 969 |     status_t err; | 
 | 970 |     do { | 
 | 971 |         IF_LOG_COMMANDS() { | 
 | 972 |             alog << "About to read/write, write size = " << mOut.dataSize() << endl; | 
 | 973 |         } | 
| Elliott Hughes | 6071da7 | 2015-08-12 15:27:47 -0700 | [diff] [blame] | 974 | #if defined(__ANDROID__) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 975 |         if (ioctl(mProcess->mDriverFD, BINDER_WRITE_READ, &bwr) >= 0) | 
 | 976 |             err = NO_ERROR; | 
 | 977 |         else | 
 | 978 |             err = -errno; | 
 | 979 | #else | 
 | 980 |         err = INVALID_OPERATION; | 
 | 981 | #endif | 
| Johannes Carlsson | db1597a | 2011-02-17 14:06:53 +0100 | [diff] [blame] | 982 |         if (mProcess->mDriverFD <= 0) { | 
 | 983 |             err = -EBADF; | 
 | 984 |         } | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 985 |         IF_LOG_COMMANDS() { | 
 | 986 |             alog << "Finished read/write, write size = " << mOut.dataSize() << endl; | 
 | 987 |         } | 
 | 988 |     } while (err == -EINTR); | 
| Andy McFadden | aefc9cd | 2011-08-31 07:43:40 -0700 | [diff] [blame] | 989 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 990 |     IF_LOG_COMMANDS() { | 
| Colin Cross | 6f4f3ab | 2014-02-05 17:42:44 -0800 | [diff] [blame] | 991 |         alog << "Our err: " << (void*)(intptr_t)err << ", write consumed: " | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 992 |             << bwr.write_consumed << " (of " << mOut.dataSize() | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 993 |                         << "), read consumed: " << bwr.read_consumed << endl; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 994 |     } | 
 | 995 |  | 
 | 996 |     if (err >= NO_ERROR) { | 
 | 997 |         if (bwr.write_consumed > 0) { | 
| Arve Hjønnevåg | 84e625a | 2014-01-28 20:12:59 -0800 | [diff] [blame] | 998 |             if (bwr.write_consumed < mOut.dataSize()) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 999 |                 mOut.remove(0, bwr.write_consumed); | 
| Martijn Coenen | 7c170bb | 2018-05-04 17:28:55 -0700 | [diff] [blame] | 1000 |             else { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1001 |                 mOut.setDataSize(0); | 
| Martijn Coenen | 7c170bb | 2018-05-04 17:28:55 -0700 | [diff] [blame] | 1002 |                 processPostWriteDerefs(); | 
 | 1003 |             } | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1004 |         } | 
 | 1005 |         if (bwr.read_consumed > 0) { | 
 | 1006 |             mIn.setDataSize(bwr.read_consumed); | 
 | 1007 |             mIn.setDataPosition(0); | 
 | 1008 |         } | 
 | 1009 |         IF_LOG_COMMANDS() { | 
 | 1010 |             TextOutput::Bundle _b(alog); | 
 | 1011 |             alog << "Remaining data size: " << mOut.dataSize() << endl; | 
 | 1012 |             alog << "Received commands from driver: " << indent; | 
 | 1013 |             const void* cmds = mIn.data(); | 
 | 1014 |             const void* end = mIn.data() + mIn.dataSize(); | 
 | 1015 |             alog << HexDump(cmds, mIn.dataSize()) << endl; | 
 | 1016 |             while (cmds < end) cmds = printReturnCommand(alog, cmds); | 
 | 1017 |             alog << dedent; | 
 | 1018 |         } | 
 | 1019 |         return NO_ERROR; | 
 | 1020 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1021 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1022 |     return err; | 
 | 1023 | } | 
 | 1024 |  | 
 | 1025 | status_t IPCThreadState::writeTransactionData(int32_t cmd, uint32_t binderFlags, | 
 | 1026 |     int32_t handle, uint32_t code, const Parcel& data, status_t* statusBuffer) | 
 | 1027 | { | 
 | 1028 |     binder_transaction_data tr; | 
 | 1029 |  | 
| Arve Hjønnevåg | 07fd0f1 | 2014-02-18 21:10:29 -0800 | [diff] [blame] | 1030 |     tr.target.ptr = 0; /* Don't pass uninitialized stack data to a remote process */ | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1031 |     tr.target.handle = handle; | 
 | 1032 |     tr.code = code; | 
 | 1033 |     tr.flags = binderFlags; | 
| Evgeniy Stepanov | d547432 | 2011-04-21 14:15:00 +0400 | [diff] [blame] | 1034 |     tr.cookie = 0; | 
 | 1035 |     tr.sender_pid = 0; | 
 | 1036 |     tr.sender_euid = 0; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1037 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1038 |     const status_t err = data.errorCheck(); | 
 | 1039 |     if (err == NO_ERROR) { | 
 | 1040 |         tr.data_size = data.ipcDataSize(); | 
 | 1041 |         tr.data.ptr.buffer = data.ipcData(); | 
| Arve Hjønnevåg | 84e625a | 2014-01-28 20:12:59 -0800 | [diff] [blame] | 1042 |         tr.offsets_size = data.ipcObjectsCount()*sizeof(binder_size_t); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1043 |         tr.data.ptr.offsets = data.ipcObjects(); | 
 | 1044 |     } else if (statusBuffer) { | 
 | 1045 |         tr.flags |= TF_STATUS_CODE; | 
 | 1046 |         *statusBuffer = err; | 
 | 1047 |         tr.data_size = sizeof(status_t); | 
| Arve Hjønnevåg | 87b30d0 | 2014-02-18 21:04:31 -0800 | [diff] [blame] | 1048 |         tr.data.ptr.buffer = reinterpret_cast<uintptr_t>(statusBuffer); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1049 |         tr.offsets_size = 0; | 
| Arve Hjønnevåg | 84e625a | 2014-01-28 20:12:59 -0800 | [diff] [blame] | 1050 |         tr.data.ptr.offsets = 0; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1051 |     } else { | 
 | 1052 |         return (mLastError = err); | 
 | 1053 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1054 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1055 |     mOut.writeInt32(cmd); | 
 | 1056 |     mOut.write(&tr, sizeof(tr)); | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1057 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1058 |     return NO_ERROR; | 
 | 1059 | } | 
 | 1060 |  | 
 | 1061 | sp<BBinder> the_context_object; | 
 | 1062 |  | 
 | 1063 | void setTheContextObject(sp<BBinder> obj) | 
 | 1064 | { | 
 | 1065 |     the_context_object = obj; | 
 | 1066 | } | 
 | 1067 |  | 
 | 1068 | status_t IPCThreadState::executeCommand(int32_t cmd) | 
 | 1069 | { | 
 | 1070 |     BBinder* obj; | 
 | 1071 |     RefBase::weakref_type* refs; | 
 | 1072 |     status_t result = NO_ERROR; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1073 |  | 
| Bernhard Rosenkränzer | 74debb0 | 2014-11-25 21:55:33 +0100 | [diff] [blame] | 1074 |     switch ((uint32_t)cmd) { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1075 |     case BR_ERROR: | 
 | 1076 |         result = mIn.readInt32(); | 
 | 1077 |         break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1078 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1079 |     case BR_OK: | 
 | 1080 |         break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1081 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1082 |     case BR_ACQUIRE: | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 1083 |         refs = (RefBase::weakref_type*)mIn.readPointer(); | 
 | 1084 |         obj = (BBinder*)mIn.readPointer(); | 
| Steve Block | 6726347 | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 1085 |         ALOG_ASSERT(refs->refBase() == obj, | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1086 |                    "BR_ACQUIRE: object %p does not match cookie %p (expected %p)", | 
 | 1087 |                    refs, obj, refs->refBase()); | 
 | 1088 |         obj->incStrong(mProcess.get()); | 
 | 1089 |         IF_LOG_REMOTEREFS() { | 
 | 1090 |             LOG_REMOTEREFS("BR_ACQUIRE from driver on %p", obj); | 
 | 1091 |             obj->printRefs(); | 
 | 1092 |         } | 
 | 1093 |         mOut.writeInt32(BC_ACQUIRE_DONE); | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 1094 |         mOut.writePointer((uintptr_t)refs); | 
 | 1095 |         mOut.writePointer((uintptr_t)obj); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1096 |         break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1097 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1098 |     case BR_RELEASE: | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 1099 |         refs = (RefBase::weakref_type*)mIn.readPointer(); | 
 | 1100 |         obj = (BBinder*)mIn.readPointer(); | 
| Steve Block | 6726347 | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 1101 |         ALOG_ASSERT(refs->refBase() == obj, | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1102 |                    "BR_RELEASE: object %p does not match cookie %p (expected %p)", | 
 | 1103 |                    refs, obj, refs->refBase()); | 
 | 1104 |         IF_LOG_REMOTEREFS() { | 
 | 1105 |             LOG_REMOTEREFS("BR_RELEASE from driver on %p", obj); | 
 | 1106 |             obj->printRefs(); | 
 | 1107 |         } | 
 | 1108 |         mPendingStrongDerefs.push(obj); | 
 | 1109 |         break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1110 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1111 |     case BR_INCREFS: | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 1112 |         refs = (RefBase::weakref_type*)mIn.readPointer(); | 
 | 1113 |         obj = (BBinder*)mIn.readPointer(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1114 |         refs->incWeak(mProcess.get()); | 
 | 1115 |         mOut.writeInt32(BC_INCREFS_DONE); | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 1116 |         mOut.writePointer((uintptr_t)refs); | 
 | 1117 |         mOut.writePointer((uintptr_t)obj); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1118 |         break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1119 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1120 |     case BR_DECREFS: | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 1121 |         refs = (RefBase::weakref_type*)mIn.readPointer(); | 
 | 1122 |         obj = (BBinder*)mIn.readPointer(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1123 |         // NOTE: This assertion is not valid, because the object may no | 
 | 1124 |         // longer exist (thus the (BBinder*)cast above resulting in a different | 
 | 1125 |         // memory address). | 
| Steve Block | 6726347 | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 1126 |         //ALOG_ASSERT(refs->refBase() == obj, | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1127 |         //           "BR_DECREFS: object %p does not match cookie %p (expected %p)", | 
 | 1128 |         //           refs, obj, refs->refBase()); | 
 | 1129 |         mPendingWeakDerefs.push(refs); | 
 | 1130 |         break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1131 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1132 |     case BR_ATTEMPT_ACQUIRE: | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 1133 |         refs = (RefBase::weakref_type*)mIn.readPointer(); | 
 | 1134 |         obj = (BBinder*)mIn.readPointer(); | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1135 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1136 |         { | 
 | 1137 |             const bool success = refs->attemptIncStrong(mProcess.get()); | 
| Steve Block | 6726347 | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 1138 |             ALOG_ASSERT(success && refs->refBase() == obj, | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1139 |                        "BR_ATTEMPT_ACQUIRE: object %p does not match cookie %p (expected %p)", | 
 | 1140 |                        refs, obj, refs->refBase()); | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1141 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1142 |             mOut.writeInt32(BC_ACQUIRE_RESULT); | 
 | 1143 |             mOut.writeInt32((int32_t)success); | 
 | 1144 |         } | 
 | 1145 |         break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1146 |  | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 1147 |     case BR_TRANSACTION_SEC_CTX: | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1148 |     case BR_TRANSACTION: | 
 | 1149 |         { | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 1150 |             binder_transaction_data_secctx tr_secctx; | 
 | 1151 |             binder_transaction_data& tr = tr_secctx.transaction_data; | 
 | 1152 |  | 
 | 1153 |             if (cmd == (int) BR_TRANSACTION_SEC_CTX) { | 
 | 1154 |                 result = mIn.read(&tr_secctx, sizeof(tr_secctx)); | 
 | 1155 |             } else { | 
 | 1156 |                 result = mIn.read(&tr, sizeof(tr)); | 
 | 1157 |                 tr_secctx.secctx = 0; | 
 | 1158 |             } | 
 | 1159 |  | 
| Steve Block | 6726347 | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 1160 |             ALOG_ASSERT(result == NO_ERROR, | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1161 |                 "Not enough command data for brTRANSACTION"); | 
 | 1162 |             if (result != NO_ERROR) break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1163 |  | 
| Jayant Chowdhary | dac6dc8 | 2018-10-01 22:52:44 +0000 | [diff] [blame] | 1164 |             //Record the fact that we're in a binder call. | 
 | 1165 |             mIPCThreadStateBase->pushCurrentState( | 
 | 1166 |                 IPCThreadStateBase::CallState::BINDER); | 
| Martijn Coenen | ea0090a | 2017-11-02 18:54:40 +0000 | [diff] [blame] | 1167 |             Parcel buffer; | 
 | 1168 |             buffer.ipcSetDataReference( | 
 | 1169 |                 reinterpret_cast<const uint8_t*>(tr.data.ptr.buffer), | 
 | 1170 |                 tr.data_size, | 
 | 1171 |                 reinterpret_cast<const binder_size_t*>(tr.data.ptr.offsets), | 
 | 1172 |                 tr.offsets_size/sizeof(binder_size_t), freeBuffer, this); | 
 | 1173 |  | 
 | 1174 |             const pid_t origPid = mCallingPid; | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 1175 |             const char* origSid = mCallingSid; | 
| Martijn Coenen | ea0090a | 2017-11-02 18:54:40 +0000 | [diff] [blame] | 1176 |             const uid_t origUid = mCallingUid; | 
 | 1177 |             const int32_t origStrictModePolicy = mStrictModePolicy; | 
 | 1178 |             const int32_t origTransactionBinderFlags = mLastTransactionBinderFlags; | 
| Olivier Gaillard | 91a0480 | 2018-11-14 17:32:41 +0000 | [diff] [blame] | 1179 |             const int32_t origWorkSource = mWorkSource; | 
 | 1180 |             const bool origPropagateWorkSet = mPropagateWorkSource; | 
 | 1181 |             // Calling work source will be set by Parcel#enforceInterface. Parcel#enforceInterface | 
 | 1182 |             // is only guaranteed to be called for AIDL-generated stubs so we reset the work source | 
 | 1183 |             // here to never propagate it. | 
 | 1184 |             clearCallingWorkSource(); | 
 | 1185 |             clearPropagateWorkSource(); | 
| Martijn Coenen | ea0090a | 2017-11-02 18:54:40 +0000 | [diff] [blame] | 1186 |  | 
 | 1187 |             mCallingPid = tr.sender_pid; | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 1188 |             mCallingSid = reinterpret_cast<const char*>(tr_secctx.secctx); | 
| Martijn Coenen | ea0090a | 2017-11-02 18:54:40 +0000 | [diff] [blame] | 1189 |             mCallingUid = tr.sender_euid; | 
 | 1190 |             mLastTransactionBinderFlags = tr.flags; | 
 | 1191 |  | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 1192 |             // ALOGI(">>>> TRANSACT from pid %d sid %s uid %d\n", mCallingPid, | 
 | 1193 |             //    (mCallingSid ? mCallingSid : "<N/A>"), mCallingUid); | 
| Martijn Coenen | ea0090a | 2017-11-02 18:54:40 +0000 | [diff] [blame] | 1194 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1195 |             Parcel reply; | 
| Martijn Coenen | ea0090a | 2017-11-02 18:54:40 +0000 | [diff] [blame] | 1196 |             status_t error; | 
 | 1197 |             IF_LOG_TRANSACTIONS() { | 
 | 1198 |                 TextOutput::Bundle _b(alog); | 
 | 1199 |                 alog << "BR_TRANSACTION thr " << (void*)pthread_self() | 
 | 1200 |                     << " / obj " << tr.target.ptr << " / code " | 
 | 1201 |                     << TypeCode(tr.code) << ": " << indent << buffer | 
 | 1202 |                     << dedent << endl | 
 | 1203 |                     << "Data addr = " | 
 | 1204 |                     << reinterpret_cast<const uint8_t*>(tr.data.ptr.buffer) | 
 | 1205 |                     << ", offsets addr=" | 
 | 1206 |                     << reinterpret_cast<const size_t*>(tr.data.ptr.offsets) << endl; | 
 | 1207 |             } | 
 | 1208 |             if (tr.target.ptr) { | 
 | 1209 |                 // We only have a weak reference on the target object, so we must first try to | 
 | 1210 |                 // safely acquire a strong reference before doing anything else with it. | 
 | 1211 |                 if (reinterpret_cast<RefBase::weakref_type*>( | 
 | 1212 |                         tr.target.ptr)->attemptIncStrong(this)) { | 
 | 1213 |                     error = reinterpret_cast<BBinder*>(tr.cookie)->transact(tr.code, buffer, | 
 | 1214 |                             &reply, tr.flags); | 
 | 1215 |                     reinterpret_cast<BBinder*>(tr.cookie)->decStrong(this); | 
| Dianne Hackborn | c111461 | 2016-03-21 10:36:54 -0700 | [diff] [blame] | 1216 |                 } else { | 
| Martijn Coenen | ea0090a | 2017-11-02 18:54:40 +0000 | [diff] [blame] | 1217 |                     error = UNKNOWN_TRANSACTION; | 
| Dianne Hackborn | c111461 | 2016-03-21 10:36:54 -0700 | [diff] [blame] | 1218 |                 } | 
| Brad Fitzpatrick | 5273603 | 2010-08-30 16:01:16 -0700 | [diff] [blame] | 1219 |  | 
| Martijn Coenen | ea0090a | 2017-11-02 18:54:40 +0000 | [diff] [blame] | 1220 |             } else { | 
 | 1221 |                 error = the_context_object->transact(tr.code, buffer, &reply, tr.flags); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1222 |             } | 
| Dianne Hackborn | 5ee2c9d | 2014-09-30 11:30:03 -0700 | [diff] [blame] | 1223 |  | 
| Jayant Chowdhary | dac6dc8 | 2018-10-01 22:52:44 +0000 | [diff] [blame] | 1224 |             mIPCThreadStateBase->popCurrentState(); | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 1225 |             //ALOGI("<<<< TRANSACT from pid %d restore pid %d sid %s uid %d\n", | 
 | 1226 |             //     mCallingPid, origPid, (origSid ? origSid : "<N/A>"), origUid); | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1227 |  | 
| Martijn Coenen | ea0090a | 2017-11-02 18:54:40 +0000 | [diff] [blame] | 1228 |             if ((tr.flags & TF_ONE_WAY) == 0) { | 
 | 1229 |                 LOG_ONEWAY("Sending reply to %d!", mCallingPid); | 
 | 1230 |                 if (error < NO_ERROR) reply.setError(error); | 
 | 1231 |                 sendReply(reply, 0); | 
 | 1232 |             } else { | 
 | 1233 |                 LOG_ONEWAY("NOT sending reply to %d!", mCallingPid); | 
 | 1234 |             } | 
 | 1235 |  | 
 | 1236 |             mCallingPid = origPid; | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 1237 |             mCallingSid = origSid; | 
| Martijn Coenen | ea0090a | 2017-11-02 18:54:40 +0000 | [diff] [blame] | 1238 |             mCallingUid = origUid; | 
 | 1239 |             mStrictModePolicy = origStrictModePolicy; | 
 | 1240 |             mLastTransactionBinderFlags = origTransactionBinderFlags; | 
| Olivier Gaillard | 91a0480 | 2018-11-14 17:32:41 +0000 | [diff] [blame] | 1241 |             mWorkSource = origWorkSource; | 
 | 1242 |             mPropagateWorkSource = origPropagateWorkSet; | 
| Christopher Tate | 440fd87 | 2010-03-18 17:55:03 -0700 | [diff] [blame] | 1243 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1244 |             IF_LOG_TRANSACTIONS() { | 
 | 1245 |                 TextOutput::Bundle _b(alog); | 
 | 1246 |                 alog << "BC_REPLY thr " << (void*)pthread_self() << " / obj " | 
 | 1247 |                     << tr.target.ptr << ": " << indent << reply << dedent << endl; | 
 | 1248 |             } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1249 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1250 |         } | 
 | 1251 |         break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1252 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1253 |     case BR_DEAD_BINDER: | 
 | 1254 |         { | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 1255 |             BpBinder *proxy = (BpBinder*)mIn.readPointer(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1256 |             proxy->sendObituary(); | 
 | 1257 |             mOut.writeInt32(BC_DEAD_BINDER_DONE); | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 1258 |             mOut.writePointer((uintptr_t)proxy); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1259 |         } break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1260 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1261 |     case BR_CLEAR_DEATH_NOTIFICATION_DONE: | 
 | 1262 |         { | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 1263 |             BpBinder *proxy = (BpBinder*)mIn.readPointer(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1264 |             proxy->getWeakRefs()->decWeak(proxy); | 
 | 1265 |         } break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1266 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1267 |     case BR_FINISHED: | 
 | 1268 |         result = TIMED_OUT; | 
 | 1269 |         break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1270 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1271 |     case BR_NOOP: | 
 | 1272 |         break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1273 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1274 |     case BR_SPAWN_LOOPER: | 
 | 1275 |         mProcess->spawnPooledThread(false); | 
 | 1276 |         break; | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1277 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1278 |     default: | 
| liangweikang | a43ee15 | 2016-10-25 16:37:54 +0800 | [diff] [blame] | 1279 |         ALOGE("*** BAD COMMAND %d received from Binder driver\n", cmd); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1280 |         result = UNKNOWN_ERROR; | 
 | 1281 |         break; | 
 | 1282 |     } | 
 | 1283 |  | 
 | 1284 |     if (result != NO_ERROR) { | 
 | 1285 |         mLastError = result; | 
 | 1286 |     } | 
| Tim Murray | d429f4a | 2017-03-07 09:31:09 -0800 | [diff] [blame] | 1287 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1288 |     return result; | 
 | 1289 | } | 
 | 1290 |  | 
| Jayant Chowdhary | dac6dc8 | 2018-10-01 22:52:44 +0000 | [diff] [blame] | 1291 | bool IPCThreadState::isServingCall() const { | 
 | 1292 |     return mIPCThreadStateBase->getCurrentBinderCallState() == IPCThreadStateBase::CallState::BINDER; | 
 | 1293 | } | 
 | 1294 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1295 | void IPCThreadState::threadDestructor(void *st) | 
 | 1296 | { | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 1297 |         IPCThreadState* const self = static_cast<IPCThreadState*>(st); | 
 | 1298 |         if (self) { | 
 | 1299 |                 self->flushCommands(); | 
| Elliott Hughes | 6071da7 | 2015-08-12 15:27:47 -0700 | [diff] [blame] | 1300 | #if defined(__ANDROID__) | 
| Johannes Carlsson | db1597a | 2011-02-17 14:06:53 +0100 | [diff] [blame] | 1301 |         if (self->mProcess->mDriverFD > 0) { | 
 | 1302 |             ioctl(self->mProcess->mDriverFD, BINDER_THREAD_EXIT, 0); | 
 | 1303 |         } | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1304 | #endif | 
| Todd Poynor | 8d96cab | 2013-06-25 19:12:18 -0700 | [diff] [blame] | 1305 |                 delete self; | 
 | 1306 |         } | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1307 | } | 
 | 1308 |  | 
 | 1309 |  | 
| Colin Cross | 6f4f3ab | 2014-02-05 17:42:44 -0800 | [diff] [blame] | 1310 | void IPCThreadState::freeBuffer(Parcel* parcel, const uint8_t* data, | 
 | 1311 |                                 size_t /*dataSize*/, | 
 | 1312 |                                 const binder_size_t* /*objects*/, | 
 | 1313 |                                 size_t /*objectsSize*/, void* /*cookie*/) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1314 | { | 
| Steve Block | a19954a | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 1315 |     //ALOGI("Freeing parcel %p", &parcel); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1316 |     IF_LOG_COMMANDS() { | 
 | 1317 |         alog << "Writing BC_FREE_BUFFER for " << data << endl; | 
 | 1318 |     } | 
| Steve Block | 6726347 | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 1319 |     ALOG_ASSERT(data != NULL, "Called with NULL data"); | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 1320 |     if (parcel != nullptr) parcel->closeFileDescriptors(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1321 |     IPCThreadState* state = self(); | 
 | 1322 |     state->mOut.writeInt32(BC_FREE_BUFFER); | 
| Serban Constantinescu | f683e01 | 2013-11-05 16:53:55 +0000 | [diff] [blame] | 1323 |     state->mOut.writePointer((uintptr_t)data); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1324 | } | 
 | 1325 |  | 
 | 1326 | }; // namespace android |