| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 1 | /** | 
|  | 2 | * Copyright (c) 2016, The Android Open Source Project | 
|  | 3 | * | 
|  | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | * you may not use this file except in compliance with the License. | 
|  | 6 | * You may obtain a copy of the License at | 
|  | 7 | * | 
|  | 8 | *     http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | * | 
|  | 10 | * Unless required by applicable law or agreed to in writing, software | 
|  | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | * See the License for the specific language governing permissions and | 
|  | 14 | * limitations under the License. | 
|  | 15 | */ | 
|  | 16 |  | 
|  | 17 | #define LOG_TAG "dumpstate" | 
|  | 18 |  | 
|  | 19 | #include "DumpstateService.h" | 
|  | 20 |  | 
| Nandana Dutt | 2bbba94 | 2019-01-30 13:13:52 +0000 | [diff] [blame] | 21 | #include <memory> | 
| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 22 |  | 
| Nandana Dutt | 2bbba94 | 2019-01-30 13:13:52 +0000 | [diff] [blame] | 23 | #include <android-base/stringprintf.h> | 
| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 24 | #include "android/os/BnDumpstate.h" | 
|  | 25 |  | 
| Felipe Leme | f029297 | 2016-11-22 13:57:05 -0800 | [diff] [blame] | 26 | #include "DumpstateInternal.h" | 
|  | 27 |  | 
| Nandana Dutt | 197661d | 2018-11-16 16:40:21 +0000 | [diff] [blame] | 28 | using android::base::StringPrintf; | 
|  | 29 |  | 
| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 30 | namespace android { | 
|  | 31 | namespace os { | 
|  | 32 |  | 
| Felipe Leme | 009ecbb | 2016-11-07 10:18:44 -0800 | [diff] [blame] | 33 | namespace { | 
| Nandana Dutt | 197661d | 2018-11-16 16:40:21 +0000 | [diff] [blame] | 34 |  | 
| Nandana Dutt | d2f5f08 | 2019-01-18 17:13:52 +0000 | [diff] [blame] | 35 | struct DumpstateInfo { | 
|  | 36 | public: | 
|  | 37 | Dumpstate* ds = nullptr; | 
|  | 38 | int32_t calling_uid = -1; | 
|  | 39 | std::string calling_package; | 
|  | 40 | }; | 
|  | 41 |  | 
| Nandana Dutt | 197661d | 2018-11-16 16:40:21 +0000 | [diff] [blame] | 42 | static binder::Status exception(uint32_t code, const std::string& msg) { | 
|  | 43 | MYLOGE("%s (%d) ", msg.c_str(), code); | 
|  | 44 | return binder::Status::fromExceptionCode(code, String8(msg.c_str())); | 
|  | 45 | } | 
|  | 46 |  | 
|  | 47 | static binder::Status error(uint32_t code, const std::string& msg) { | 
|  | 48 | MYLOGE("%s (%d) ", msg.c_str(), code); | 
|  | 49 | return binder::Status::fromServiceSpecificError(code, String8(msg.c_str())); | 
|  | 50 | } | 
|  | 51 |  | 
| Nandana Dutt | 2bbba94 | 2019-01-30 13:13:52 +0000 | [diff] [blame] | 52 | // Takes ownership of data. | 
| Nandana Dutt | 197661d | 2018-11-16 16:40:21 +0000 | [diff] [blame] | 53 | static void* callAndNotify(void* data) { | 
| Nandana Dutt | 2bbba94 | 2019-01-30 13:13:52 +0000 | [diff] [blame] | 54 | std::unique_ptr<DumpstateInfo> ds_info(static_cast<DumpstateInfo*>(data)); | 
|  | 55 | ds_info->ds->Run(ds_info->calling_uid, ds_info->calling_package); | 
| Nandana Dutt | cc4ead8 | 2019-01-23 08:29:23 +0000 | [diff] [blame] | 56 | MYLOGD("Finished Run()\n"); | 
| Nandana Dutt | 197661d | 2018-11-16 16:40:21 +0000 | [diff] [blame] | 57 | return nullptr; | 
|  | 58 | } | 
|  | 59 |  | 
| Felipe Leme | 009ecbb | 2016-11-07 10:18:44 -0800 | [diff] [blame] | 60 | class DumpstateToken : public BnDumpstateToken {}; | 
| Nandana Dutt | d2f5f08 | 2019-01-18 17:13:52 +0000 | [diff] [blame] | 61 |  | 
|  | 62 | }  // namespace | 
| Felipe Leme | 009ecbb | 2016-11-07 10:18:44 -0800 | [diff] [blame] | 63 |  | 
| Nandana Dutt | d973766 | 2019-01-29 15:59:38 +0000 | [diff] [blame] | 64 | DumpstateService::DumpstateService() : ds_(nullptr) { | 
| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 65 | } | 
|  | 66 |  | 
|  | 67 | char const* DumpstateService::getServiceName() { | 
|  | 68 | return "dumpstate"; | 
|  | 69 | } | 
|  | 70 |  | 
|  | 71 | status_t DumpstateService::Start() { | 
|  | 72 | IPCThreadState::self()->disableBackgroundScheduling(true); | 
|  | 73 | status_t ret = BinderService<DumpstateService>::publish(); | 
|  | 74 | if (ret != android::OK) { | 
|  | 75 | return ret; | 
|  | 76 | } | 
|  | 77 | sp<ProcessState> ps(ProcessState::self()); | 
|  | 78 | ps->startThreadPool(); | 
|  | 79 | ps->giveThreadPoolName(); | 
|  | 80 | return android::OK; | 
|  | 81 | } | 
|  | 82 |  | 
| Nandana Dutt | d973766 | 2019-01-29 15:59:38 +0000 | [diff] [blame] | 83 | // Note: this method is part of the old flow and is not expected to be used in combination | 
|  | 84 | // with startBugreport. | 
| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 85 | binder::Status DumpstateService::setListener(const std::string& name, | 
| Felipe Leme | 009ecbb | 2016-11-07 10:18:44 -0800 | [diff] [blame] | 86 | const sp<IDumpstateListener>& listener, | 
| Vishnu Nair | 20cf503 | 2018-01-05 13:15:49 -0800 | [diff] [blame] | 87 | bool getSectionDetails, | 
| Felipe Leme | 009ecbb | 2016-11-07 10:18:44 -0800 | [diff] [blame] | 88 | sp<IDumpstateToken>* returned_token) { | 
|  | 89 | *returned_token = nullptr; | 
| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 90 | if (name.empty()) { | 
|  | 91 | MYLOGE("setListener(): name not set\n"); | 
| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 92 | return binder::Status::ok(); | 
|  | 93 | } | 
|  | 94 | if (listener == nullptr) { | 
|  | 95 | MYLOGE("setListener(): listener not set\n"); | 
| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 96 | return binder::Status::ok(); | 
|  | 97 | } | 
|  | 98 | std::lock_guard<std::mutex> lock(lock_); | 
| Nandana Dutt | d973766 | 2019-01-29 15:59:38 +0000 | [diff] [blame] | 99 | if (ds_ == nullptr) { | 
|  | 100 | ds_ = &(Dumpstate::GetInstance()); | 
|  | 101 | } | 
|  | 102 | if (ds_->listener_ != nullptr) { | 
|  | 103 | MYLOGE("setListener(%s): already set (%s)\n", name.c_str(), ds_->listener_name_.c_str()); | 
| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 104 | return binder::Status::ok(); | 
|  | 105 | } | 
| Felipe Leme | 009ecbb | 2016-11-07 10:18:44 -0800 | [diff] [blame] | 106 |  | 
| Nandana Dutt | d973766 | 2019-01-29 15:59:38 +0000 | [diff] [blame] | 107 | ds_->listener_name_ = name; | 
|  | 108 | ds_->listener_ = listener; | 
|  | 109 | ds_->report_section_ = getSectionDetails; | 
| Felipe Leme | 009ecbb | 2016-11-07 10:18:44 -0800 | [diff] [blame] | 110 | *returned_token = new DumpstateToken(); | 
|  | 111 |  | 
| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 112 | return binder::Status::ok(); | 
|  | 113 | } | 
|  | 114 |  | 
| Nandana Dutt | d2f5f08 | 2019-01-18 17:13:52 +0000 | [diff] [blame] | 115 | binder::Status DumpstateService::startBugreport(int32_t calling_uid, | 
|  | 116 | const std::string& calling_package, | 
| Nandana Dutt | 5c91420 | 2019-01-16 17:45:18 +0000 | [diff] [blame] | 117 | const android::base::unique_fd& bugreport_fd, | 
| Nandana Dutt | 54dbd67 | 2019-01-11 12:58:05 +0000 | [diff] [blame] | 118 | const android::base::unique_fd& screenshot_fd, | 
| Nandana Dutt | 05290ad | 2019-01-04 15:48:09 +0000 | [diff] [blame] | 119 | int bugreport_mode, | 
| Nandana Dutt | 54dbd67 | 2019-01-11 12:58:05 +0000 | [diff] [blame] | 120 | const sp<IDumpstateListener>& listener) { | 
| Nandana Dutt | 197661d | 2018-11-16 16:40:21 +0000 | [diff] [blame] | 121 | MYLOGI("startBugreport() with mode: %d\n", bugreport_mode); | 
|  | 122 |  | 
|  | 123 | if (bugreport_mode != Dumpstate::BugreportMode::BUGREPORT_FULL && | 
|  | 124 | bugreport_mode != Dumpstate::BugreportMode::BUGREPORT_INTERACTIVE && | 
|  | 125 | bugreport_mode != Dumpstate::BugreportMode::BUGREPORT_REMOTE && | 
|  | 126 | bugreport_mode != Dumpstate::BugreportMode::BUGREPORT_WEAR && | 
|  | 127 | bugreport_mode != Dumpstate::BugreportMode::BUGREPORT_TELEPHONY && | 
| Abhijeet Kaur | 904e0e0 | 2018-12-05 14:03:01 +0000 | [diff] [blame] | 128 | bugreport_mode != Dumpstate::BugreportMode::BUGREPORT_WIFI && | 
|  | 129 | bugreport_mode != Dumpstate::BugreportMode::BUGREPORT_DEFAULT) { | 
| Nandana Dutt | 197661d | 2018-11-16 16:40:21 +0000 | [diff] [blame] | 130 | return exception(binder::Status::EX_ILLEGAL_ARGUMENT, | 
|  | 131 | StringPrintf("Invalid bugreport mode: %d", bugreport_mode)); | 
|  | 132 | } | 
|  | 133 |  | 
| Nandana Dutt | 54dbd67 | 2019-01-11 12:58:05 +0000 | [diff] [blame] | 134 | if (bugreport_fd.get() == -1 || screenshot_fd.get() == -1) { | 
|  | 135 | return exception(binder::Status::EX_ILLEGAL_ARGUMENT, "Invalid file descriptor"); | 
|  | 136 | } | 
|  | 137 |  | 
| Nandana Dutt | 197661d | 2018-11-16 16:40:21 +0000 | [diff] [blame] | 138 | std::unique_ptr<Dumpstate::DumpOptions> options = std::make_unique<Dumpstate::DumpOptions>(); | 
| Nandana Dutt | 54dbd67 | 2019-01-11 12:58:05 +0000 | [diff] [blame] | 139 | options->Initialize(static_cast<Dumpstate::BugreportMode>(bugreport_mode), bugreport_fd, | 
|  | 140 | screenshot_fd); | 
|  | 141 |  | 
| Nandana Dutt | d973766 | 2019-01-29 15:59:38 +0000 | [diff] [blame] | 142 | // This is the bugreporting API flow, so ensure there is only one bugreport in progress at a | 
|  | 143 | // time. | 
| Nandana Dutt | 54dbd67 | 2019-01-11 12:58:05 +0000 | [diff] [blame] | 144 | std::lock_guard<std::mutex> lock(lock_); | 
| Nandana Dutt | d973766 | 2019-01-29 15:59:38 +0000 | [diff] [blame] | 145 | if (ds_ != nullptr) { | 
|  | 146 | return exception(binder::Status::EX_SERVICE_SPECIFIC, | 
|  | 147 | "There is already a bugreport in progress"); | 
|  | 148 | } | 
|  | 149 | ds_ = &(Dumpstate::GetInstance()); | 
|  | 150 | ds_->SetOptions(std::move(options)); | 
| Nandana Dutt | 54dbd67 | 2019-01-11 12:58:05 +0000 | [diff] [blame] | 151 | if (listener != nullptr) { | 
| Nandana Dutt | d973766 | 2019-01-29 15:59:38 +0000 | [diff] [blame] | 152 | ds_->listener_ = listener; | 
| Nandana Dutt | 54dbd67 | 2019-01-11 12:58:05 +0000 | [diff] [blame] | 153 | } | 
| Nandana Dutt | 197661d | 2018-11-16 16:40:21 +0000 | [diff] [blame] | 154 |  | 
| Nandana Dutt | 2bbba94 | 2019-01-30 13:13:52 +0000 | [diff] [blame] | 155 | DumpstateInfo* ds_info = new DumpstateInfo(); | 
|  | 156 | ds_info->ds = ds_; | 
|  | 157 | ds_info->calling_uid = calling_uid; | 
|  | 158 | ds_info->calling_package = calling_package; | 
| Nandana Dutt | d2f5f08 | 2019-01-18 17:13:52 +0000 | [diff] [blame] | 159 |  | 
| Nandana Dutt | 197661d | 2018-11-16 16:40:21 +0000 | [diff] [blame] | 160 | pthread_t thread; | 
| Nandana Dutt | 2bbba94 | 2019-01-30 13:13:52 +0000 | [diff] [blame] | 161 | status_t err = pthread_create(&thread, nullptr, callAndNotify, ds_info); | 
| Nandana Dutt | 197661d | 2018-11-16 16:40:21 +0000 | [diff] [blame] | 162 | if (err != 0) { | 
| Nandana Dutt | 2bbba94 | 2019-01-30 13:13:52 +0000 | [diff] [blame] | 163 | delete ds_info; | 
|  | 164 | ds_info = nullptr; | 
| Nandana Dutt | 197661d | 2018-11-16 16:40:21 +0000 | [diff] [blame] | 165 | return error(err, "Could not create a background thread."); | 
|  | 166 | } | 
| Nandana Dutt | cccbb5f | 2018-09-27 09:23:36 +0100 | [diff] [blame] | 167 | return binder::Status::ok(); | 
|  | 168 | } | 
|  | 169 |  | 
| Nandana Dutt | cc4ead8 | 2019-01-23 08:29:23 +0000 | [diff] [blame] | 170 | binder::Status DumpstateService::cancelBugreport() { | 
|  | 171 | // This is a no-op since the cancellation is done from java side via setting sys properties. | 
|  | 172 | // See BugreportManagerServiceImpl. | 
|  | 173 | // TODO(b/111441001): maybe make native and java sides use different binder interface | 
|  | 174 | // to avoid these annoyances. | 
|  | 175 | return binder::Status::ok(); | 
|  | 176 | } | 
|  | 177 |  | 
| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 178 | status_t DumpstateService::dump(int fd, const Vector<String16>&) { | 
| Nandana Dutt | d973766 | 2019-01-29 15:59:38 +0000 | [diff] [blame] | 179 | if (ds_ == nullptr) { | 
|  | 180 | dprintf(fd, "Bugreport not in progress yet"); | 
|  | 181 | return NO_ERROR; | 
|  | 182 | } | 
|  | 183 | std::string destination = ds_->options_->bugreport_fd.get() != -1 | 
|  | 184 | ? StringPrintf("[fd:%d]", ds_->options_->bugreport_fd.get()) | 
|  | 185 | : ds_->bugreport_internal_dir_.c_str(); | 
|  | 186 | dprintf(fd, "id: %d\n", ds_->id_); | 
|  | 187 | dprintf(fd, "pid: %d\n", ds_->pid_); | 
|  | 188 | dprintf(fd, "update_progress: %s\n", ds_->options_->do_progress_updates ? "true" : "false"); | 
|  | 189 | dprintf(fd, "update_progress_threshold: %d\n", ds_->update_progress_threshold_); | 
|  | 190 | dprintf(fd, "last_updated_progress: %d\n", ds_->last_updated_progress_); | 
| Felipe Leme | 7447d7c | 2016-11-03 18:12:22 -0700 | [diff] [blame] | 191 | dprintf(fd, "progress:\n"); | 
| Nandana Dutt | d973766 | 2019-01-29 15:59:38 +0000 | [diff] [blame] | 192 | ds_->progress_->Dump(fd, "  "); | 
|  | 193 | dprintf(fd, "args: %s\n", ds_->options_->args.c_str()); | 
|  | 194 | dprintf(fd, "extra_options: %s\n", ds_->options_->extra_options.c_str()); | 
|  | 195 | dprintf(fd, "version: %s\n", ds_->version_.c_str()); | 
| Nandana Dutt | 9a76d20 | 2019-01-21 15:56:48 +0000 | [diff] [blame] | 196 | dprintf(fd, "bugreport_dir: %s\n", destination.c_str()); | 
| Nandana Dutt | d973766 | 2019-01-29 15:59:38 +0000 | [diff] [blame] | 197 | dprintf(fd, "screenshot_path: %s\n", ds_->screenshot_path_.c_str()); | 
|  | 198 | dprintf(fd, "log_path: %s\n", ds_->log_path_.c_str()); | 
|  | 199 | dprintf(fd, "tmp_path: %s\n", ds_->tmp_path_.c_str()); | 
|  | 200 | dprintf(fd, "path: %s\n", ds_->path_.c_str()); | 
|  | 201 | dprintf(fd, "extra_options: %s\n", ds_->options_->extra_options.c_str()); | 
|  | 202 | dprintf(fd, "base_name: %s\n", ds_->base_name_.c_str()); | 
|  | 203 | dprintf(fd, "name: %s\n", ds_->name_.c_str()); | 
|  | 204 | dprintf(fd, "now: %ld\n", ds_->now_); | 
|  | 205 | dprintf(fd, "is_zipping: %s\n", ds_->IsZipping() ? "true" : "false"); | 
|  | 206 | dprintf(fd, "listener: %s\n", ds_->listener_name_.c_str()); | 
|  | 207 | dprintf(fd, "notification title: %s\n", ds_->options_->notification_title.c_str()); | 
|  | 208 | dprintf(fd, "notification description: %s\n", ds_->options_->notification_description.c_str()); | 
| Felipe Leme | 75876a2 | 2016-10-27 16:31:27 -0700 | [diff] [blame] | 209 |  | 
|  | 210 | return NO_ERROR; | 
|  | 211 | } | 
|  | 212 | }  // namespace os | 
|  | 213 | }  // namespace android |