Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 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 | |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 17 | #define ATRACE_TAG ATRACE_TAG_PACKAGE_MANAGER |
| 18 | |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 19 | #include "VoldNativeService.h" |
Jeff Sharkey | 01a0e7f | 2017-10-17 16:06:32 -0600 | [diff] [blame] | 20 | #include "Benchmark.h" |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 21 | #include "CheckEncryption.h" |
| 22 | #include "IdleMaint.h" |
Jeff Sharkey | 01a0e7f | 2017-10-17 16:06:32 -0600 | [diff] [blame] | 23 | #include "MoveStorage.h" |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 24 | #include "Process.h" |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 25 | #include "VolumeManager.h" |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 26 | |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 27 | #include "Checkpoint.h" |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 28 | #include "FsCrypt.h" |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 29 | #include "MetadataCrypt.h" |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 30 | #include "cryptfs.h" |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 31 | |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 32 | #include <fstream> |
Jeff Sharkey | 01a0e7f | 2017-10-17 16:06:32 -0600 | [diff] [blame] | 33 | #include <thread> |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 34 | |
| 35 | #include <android-base/logging.h> |
| 36 | #include <android-base/stringprintf.h> |
| 37 | #include <android-base/strings.h> |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 38 | #include <fs_mgr.h> |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 39 | #include <fscrypt/fscrypt.h> |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 40 | #include <private/android_filesystem_config.h> |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 41 | #include <utils/Trace.h> |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 42 | |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 43 | using android::base::StringPrintf; |
| 44 | using std::endl; |
| 45 | |
| 46 | namespace android { |
| 47 | namespace vold { |
| 48 | |
| 49 | namespace { |
| 50 | |
| 51 | constexpr const char* kDump = "android.permission.DUMP"; |
| 52 | |
| 53 | static binder::Status ok() { |
| 54 | return binder::Status::ok(); |
| 55 | } |
| 56 | |
| 57 | static binder::Status exception(uint32_t code, const std::string& msg) { |
| 58 | return binder::Status::fromExceptionCode(code, String8(msg.c_str())); |
| 59 | } |
| 60 | |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 61 | static binder::Status error(const std::string& msg) { |
| 62 | PLOG(ERROR) << msg; |
| 63 | return binder::Status::fromServiceSpecificError(errno, String8(msg.c_str())); |
| 64 | } |
| 65 | |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 66 | static binder::Status translate(int status) { |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 67 | if (status == 0) { |
| 68 | return binder::Status::ok(); |
| 69 | } else { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 70 | return binder::Status::fromServiceSpecificError(status); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 71 | } |
| 72 | } |
| 73 | |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 74 | static binder::Status translateBool(bool status) { |
| 75 | if (status) { |
| 76 | return binder::Status::ok(); |
| 77 | } else { |
| 78 | return binder::Status::fromServiceSpecificError(status); |
| 79 | } |
| 80 | } |
| 81 | |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 82 | binder::Status checkPermission(const char* permission) { |
| 83 | pid_t pid; |
| 84 | uid_t uid; |
| 85 | |
| 86 | if (checkCallingPermission(String16(permission), reinterpret_cast<int32_t*>(&pid), |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 87 | reinterpret_cast<int32_t*>(&uid))) { |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 88 | return ok(); |
| 89 | } else { |
| 90 | return exception(binder::Status::EX_SECURITY, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 91 | StringPrintf("UID %d / PID %d lacks permission %s", uid, pid, permission)); |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 92 | } |
| 93 | } |
| 94 | |
| 95 | binder::Status checkUid(uid_t expectedUid) { |
| 96 | uid_t uid = IPCThreadState::self()->getCallingUid(); |
| 97 | if (uid == expectedUid || uid == AID_ROOT) { |
| 98 | return ok(); |
| 99 | } else { |
| 100 | return exception(binder::Status::EX_SECURITY, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 101 | StringPrintf("UID %d is not expected UID %d", uid, expectedUid)); |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 102 | } |
| 103 | } |
| 104 | |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 105 | binder::Status checkArgumentId(const std::string& id) { |
| 106 | if (id.empty()) { |
| 107 | return exception(binder::Status::EX_ILLEGAL_ARGUMENT, "Missing ID"); |
| 108 | } |
| 109 | for (const char& c : id) { |
| 110 | if (!std::isalnum(c) && c != ':' && c != ',') { |
| 111 | return exception(binder::Status::EX_ILLEGAL_ARGUMENT, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 112 | StringPrintf("ID %s is malformed", id.c_str())); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 113 | } |
| 114 | } |
| 115 | return ok(); |
| 116 | } |
| 117 | |
| 118 | binder::Status checkArgumentPath(const std::string& path) { |
| 119 | if (path.empty()) { |
| 120 | return exception(binder::Status::EX_ILLEGAL_ARGUMENT, "Missing path"); |
| 121 | } |
| 122 | if (path[0] != '/') { |
| 123 | return exception(binder::Status::EX_ILLEGAL_ARGUMENT, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 124 | StringPrintf("Path %s is relative", path.c_str())); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 125 | } |
Jeff Sharkey | 01a0e7f | 2017-10-17 16:06:32 -0600 | [diff] [blame] | 126 | if ((path + '/').find("/../") != std::string::npos) { |
| 127 | return exception(binder::Status::EX_ILLEGAL_ARGUMENT, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 128 | StringPrintf("Path %s is shady", path.c_str())); |
Jeff Sharkey | 01a0e7f | 2017-10-17 16:06:32 -0600 | [diff] [blame] | 129 | } |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 130 | for (const char& c : path) { |
| 131 | if (c == '\0' || c == '\n') { |
| 132 | return exception(binder::Status::EX_ILLEGAL_ARGUMENT, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 133 | StringPrintf("Path %s is malformed", path.c_str())); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 134 | } |
| 135 | } |
| 136 | return ok(); |
| 137 | } |
| 138 | |
| 139 | binder::Status checkArgumentHex(const std::string& hex) { |
| 140 | // Empty hex strings are allowed |
| 141 | for (const char& c : hex) { |
| 142 | if (!std::isxdigit(c) && c != ':' && c != '-') { |
| 143 | return exception(binder::Status::EX_ILLEGAL_ARGUMENT, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 144 | StringPrintf("Hex %s is malformed", hex.c_str())); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 145 | } |
| 146 | } |
| 147 | return ok(); |
| 148 | } |
| 149 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 150 | #define ENFORCE_UID(uid) \ |
| 151 | { \ |
| 152 | binder::Status status = checkUid((uid)); \ |
| 153 | if (!status.isOk()) { \ |
| 154 | return status; \ |
| 155 | } \ |
| 156 | } |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 157 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 158 | #define CHECK_ARGUMENT_ID(id) \ |
| 159 | { \ |
| 160 | binder::Status status = checkArgumentId((id)); \ |
| 161 | if (!status.isOk()) { \ |
| 162 | return status; \ |
| 163 | } \ |
| 164 | } |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 165 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 166 | #define CHECK_ARGUMENT_PATH(path) \ |
| 167 | { \ |
| 168 | binder::Status status = checkArgumentPath((path)); \ |
| 169 | if (!status.isOk()) { \ |
| 170 | return status; \ |
| 171 | } \ |
| 172 | } |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 173 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 174 | #define CHECK_ARGUMENT_HEX(hex) \ |
| 175 | { \ |
| 176 | binder::Status status = checkArgumentHex((hex)); \ |
| 177 | if (!status.isOk()) { \ |
| 178 | return status; \ |
| 179 | } \ |
| 180 | } |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 181 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 182 | #define ACQUIRE_LOCK \ |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 183 | std::lock_guard<std::mutex> lock(VolumeManager::Instance()->getLock()); \ |
| 184 | ATRACE_CALL(); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 185 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 186 | #define ACQUIRE_CRYPT_LOCK \ |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 187 | std::lock_guard<std::mutex> lock(VolumeManager::Instance()->getCryptLock()); \ |
| 188 | ATRACE_CALL(); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 189 | |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 190 | } // namespace |
| 191 | |
| 192 | status_t VoldNativeService::start() { |
| 193 | IPCThreadState::self()->disableBackgroundScheduling(true); |
| 194 | status_t ret = BinderService<VoldNativeService>::publish(); |
| 195 | if (ret != android::OK) { |
| 196 | return ret; |
| 197 | } |
| 198 | sp<ProcessState> ps(ProcessState::self()); |
| 199 | ps->startThreadPool(); |
| 200 | ps->giveThreadPoolName(); |
| 201 | return android::OK; |
| 202 | } |
| 203 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 204 | status_t VoldNativeService::dump(int fd, const Vector<String16>& /* args */) { |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 205 | auto out = std::fstream(StringPrintf("/proc/self/fd/%d", fd)); |
| 206 | const binder::Status dump_permission = checkPermission(kDump); |
| 207 | if (!dump_permission.isOk()) { |
| 208 | out << dump_permission.toString8() << endl; |
| 209 | return PERMISSION_DENIED; |
| 210 | } |
| 211 | |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 212 | ACQUIRE_LOCK; |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 213 | out << "vold is happy!" << endl; |
| 214 | out.flush(); |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 215 | return NO_ERROR; |
| 216 | } |
| 217 | |
Jeff Sharkey | 814e9d3 | 2017-09-13 11:49:44 -0600 | [diff] [blame] | 218 | binder::Status VoldNativeService::setListener( |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 219 | const android::sp<android::os::IVoldListener>& listener) { |
Jeff Sharkey | 814e9d3 | 2017-09-13 11:49:44 -0600 | [diff] [blame] | 220 | ENFORCE_UID(AID_SYSTEM); |
| 221 | ACQUIRE_LOCK; |
| 222 | |
| 223 | VolumeManager::Instance()->setListener(listener); |
| 224 | return ok(); |
| 225 | } |
| 226 | |
Jeff Sharkey | cbe69fc | 2017-09-15 16:50:28 -0600 | [diff] [blame] | 227 | binder::Status VoldNativeService::monitor() { |
| 228 | ENFORCE_UID(AID_SYSTEM); |
| 229 | |
| 230 | // Simply acquire/release each lock for watchdog |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 231 | { ACQUIRE_LOCK; } |
| 232 | { ACQUIRE_CRYPT_LOCK; } |
Jeff Sharkey | cbe69fc | 2017-09-15 16:50:28 -0600 | [diff] [blame] | 233 | |
| 234 | return ok(); |
| 235 | } |
| 236 | |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 237 | binder::Status VoldNativeService::reset() { |
| 238 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 239 | ACQUIRE_LOCK; |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 240 | |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 241 | return translate(VolumeManager::Instance()->reset()); |
| 242 | } |
| 243 | |
| 244 | binder::Status VoldNativeService::shutdown() { |
| 245 | ENFORCE_UID(AID_SYSTEM); |
| 246 | ACQUIRE_LOCK; |
| 247 | |
| 248 | return translate(VolumeManager::Instance()->shutdown()); |
| 249 | } |
| 250 | |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 251 | binder::Status VoldNativeService::onUserAdded(int32_t userId, int32_t userSerial) { |
| 252 | ENFORCE_UID(AID_SYSTEM); |
| 253 | ACQUIRE_LOCK; |
| 254 | |
| 255 | return translate(VolumeManager::Instance()->onUserAdded(userId, userSerial)); |
| 256 | } |
| 257 | |
| 258 | binder::Status VoldNativeService::onUserRemoved(int32_t userId) { |
| 259 | ENFORCE_UID(AID_SYSTEM); |
| 260 | ACQUIRE_LOCK; |
| 261 | |
| 262 | return translate(VolumeManager::Instance()->onUserRemoved(userId)); |
| 263 | } |
| 264 | |
Sudheer Shanka | 5fceb48 | 2019-04-29 10:46:35 -0700 | [diff] [blame] | 265 | binder::Status VoldNativeService::onUserStarted(int32_t userId) { |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 266 | ENFORCE_UID(AID_SYSTEM); |
| 267 | ACQUIRE_LOCK; |
| 268 | |
Sudheer Shanka | 5fceb48 | 2019-04-29 10:46:35 -0700 | [diff] [blame] | 269 | return translate(VolumeManager::Instance()->onUserStarted(userId)); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | binder::Status VoldNativeService::onUserStopped(int32_t userId) { |
| 273 | ENFORCE_UID(AID_SYSTEM); |
| 274 | ACQUIRE_LOCK; |
| 275 | |
| 276 | return translate(VolumeManager::Instance()->onUserStopped(userId)); |
| 277 | } |
| 278 | |
Sudheer Shanka | d484aa9 | 2018-07-31 10:07:34 -0700 | [diff] [blame] | 279 | binder::Status VoldNativeService::addAppIds(const std::vector<std::string>& packageNames, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 280 | const std::vector<int32_t>& appIds) { |
Sudheer Shanka | 5fceb48 | 2019-04-29 10:46:35 -0700 | [diff] [blame] | 281 | return ok(); |
Sudheer Shanka | d484aa9 | 2018-07-31 10:07:34 -0700 | [diff] [blame] | 282 | } |
| 283 | |
Sudheer Shanka | d484aa9 | 2018-07-31 10:07:34 -0700 | [diff] [blame] | 284 | binder::Status VoldNativeService::addSandboxIds(const std::vector<int32_t>& appIds, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 285 | const std::vector<std::string>& sandboxIds) { |
Sudheer Shanka | 5fceb48 | 2019-04-29 10:46:35 -0700 | [diff] [blame] | 286 | return ok(); |
Sudheer Shanka | d484aa9 | 2018-07-31 10:07:34 -0700 | [diff] [blame] | 287 | } |
| 288 | |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 289 | binder::Status VoldNativeService::onSecureKeyguardStateChanged(bool isShowing) { |
| 290 | ENFORCE_UID(AID_SYSTEM); |
| 291 | ACQUIRE_LOCK; |
| 292 | |
| 293 | return translate(VolumeManager::Instance()->onSecureKeyguardStateChanged(isShowing)); |
| 294 | } |
| 295 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 296 | binder::Status VoldNativeService::partition(const std::string& diskId, int32_t partitionType, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 297 | int32_t ratio) { |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 298 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 299 | CHECK_ARGUMENT_ID(diskId); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 300 | ACQUIRE_LOCK; |
| 301 | |
| 302 | auto disk = VolumeManager::Instance()->findDisk(diskId); |
| 303 | if (disk == nullptr) { |
| 304 | return error("Failed to find disk " + diskId); |
| 305 | } |
| 306 | switch (partitionType) { |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 307 | case PARTITION_TYPE_PUBLIC: |
| 308 | return translate(disk->partitionPublic()); |
| 309 | case PARTITION_TYPE_PRIVATE: |
| 310 | return translate(disk->partitionPrivate()); |
| 311 | case PARTITION_TYPE_MIXED: |
| 312 | return translate(disk->partitionMixed(ratio)); |
| 313 | default: |
| 314 | return error("Unknown type " + std::to_string(partitionType)); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 315 | } |
| 316 | } |
| 317 | |
Jeff Sharkey | 3ce1825 | 2017-10-24 11:08:45 -0600 | [diff] [blame] | 318 | binder::Status VoldNativeService::forgetPartition(const std::string& partGuid, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 319 | const std::string& fsUuid) { |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 320 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 321 | CHECK_ARGUMENT_HEX(partGuid); |
Jeff Sharkey | 3ce1825 | 2017-10-24 11:08:45 -0600 | [diff] [blame] | 322 | CHECK_ARGUMENT_HEX(fsUuid); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 323 | ACQUIRE_LOCK; |
| 324 | |
Jeff Sharkey | 3ce1825 | 2017-10-24 11:08:45 -0600 | [diff] [blame] | 325 | return translate(VolumeManager::Instance()->forgetPartition(partGuid, fsUuid)); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 326 | } |
| 327 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 328 | binder::Status VoldNativeService::mount(const std::string& volId, int32_t mountFlags, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 329 | int32_t mountUserId) { |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 330 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 331 | CHECK_ARGUMENT_ID(volId); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 332 | ACQUIRE_LOCK; |
| 333 | |
| 334 | auto vol = VolumeManager::Instance()->findVolume(volId); |
| 335 | if (vol == nullptr) { |
| 336 | return error("Failed to find volume " + volId); |
| 337 | } |
| 338 | |
| 339 | vol->setMountFlags(mountFlags); |
| 340 | vol->setMountUserId(mountUserId); |
| 341 | |
| 342 | int res = vol->mount(); |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 343 | if (res != OK) { |
| 344 | return translate(res); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 345 | } |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 346 | if ((mountFlags & MOUNT_FLAG_PRIMARY) != 0) { |
| 347 | res = VolumeManager::Instance()->setPrimary(vol); |
| 348 | if (res != OK) { |
| 349 | return translate(res); |
| 350 | } |
| 351 | } |
| 352 | return translate(OK); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | binder::Status VoldNativeService::unmount(const std::string& volId) { |
| 356 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 357 | CHECK_ARGUMENT_ID(volId); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 358 | ACQUIRE_LOCK; |
| 359 | |
| 360 | auto vol = VolumeManager::Instance()->findVolume(volId); |
| 361 | if (vol == nullptr) { |
| 362 | return error("Failed to find volume " + volId); |
| 363 | } |
| 364 | return translate(vol->unmount()); |
| 365 | } |
| 366 | |
| 367 | binder::Status VoldNativeService::format(const std::string& volId, const std::string& fsType) { |
| 368 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 369 | CHECK_ARGUMENT_ID(volId); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 370 | ACQUIRE_LOCK; |
| 371 | |
| 372 | auto vol = VolumeManager::Instance()->findVolume(volId); |
| 373 | if (vol == nullptr) { |
| 374 | return error("Failed to find volume " + volId); |
| 375 | } |
| 376 | return translate(vol->format(fsType)); |
| 377 | } |
| 378 | |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 379 | static binder::Status pathForVolId(const std::string& volId, std::string* path) { |
Jeff Sharkey | 52f7a91 | 2017-09-15 12:57:44 -0600 | [diff] [blame] | 380 | if (volId == "private" || volId == "null") { |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 381 | *path = "/data"; |
Jeff Sharkey | 52f7a91 | 2017-09-15 12:57:44 -0600 | [diff] [blame] | 382 | } else { |
| 383 | auto vol = VolumeManager::Instance()->findVolume(volId); |
| 384 | if (vol == nullptr) { |
| 385 | return error("Failed to find volume " + volId); |
| 386 | } |
| 387 | if (vol->getType() != VolumeBase::Type::kPrivate) { |
| 388 | return error("Volume " + volId + " not private"); |
| 389 | } |
| 390 | if (vol->getState() != VolumeBase::State::kMounted) { |
| 391 | return error("Volume " + volId + " not mounted"); |
| 392 | } |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 393 | *path = vol->getPath(); |
| 394 | if (path->empty()) { |
| 395 | return error("Volume " + volId + " missing path"); |
| 396 | } |
Jeff Sharkey | 52f7a91 | 2017-09-15 12:57:44 -0600 | [diff] [blame] | 397 | } |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 398 | return ok(); |
| 399 | } |
Jeff Sharkey | 52f7a91 | 2017-09-15 12:57:44 -0600 | [diff] [blame] | 400 | |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 401 | binder::Status VoldNativeService::benchmark( |
| 402 | const std::string& volId, const android::sp<android::os::IVoldTaskListener>& listener) { |
| 403 | ENFORCE_UID(AID_SYSTEM); |
| 404 | CHECK_ARGUMENT_ID(volId); |
| 405 | ACQUIRE_LOCK; |
| 406 | |
| 407 | std::string path; |
| 408 | auto status = pathForVolId(volId, &path); |
| 409 | if (!status.isOk()) return status; |
Jeff Sharkey | 52f7a91 | 2017-09-15 12:57:44 -0600 | [diff] [blame] | 410 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 411 | std::thread([=]() { android::vold::Benchmark(path, listener); }).detach(); |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 412 | return ok(); |
| 413 | } |
| 414 | |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 415 | binder::Status VoldNativeService::checkEncryption(const std::string& volId) { |
| 416 | ENFORCE_UID(AID_SYSTEM); |
| 417 | CHECK_ARGUMENT_ID(volId); |
| 418 | ACQUIRE_LOCK; |
| 419 | |
| 420 | std::string path; |
| 421 | auto status = pathForVolId(volId, &path); |
| 422 | if (!status.isOk()) return status; |
| 423 | return translate(android::vold::CheckEncryption(path)); |
| 424 | } |
| 425 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 426 | binder::Status VoldNativeService::moveStorage( |
| 427 | const std::string& fromVolId, const std::string& toVolId, |
| 428 | const android::sp<android::os::IVoldTaskListener>& listener) { |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 429 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 430 | CHECK_ARGUMENT_ID(fromVolId); |
| 431 | CHECK_ARGUMENT_ID(toVolId); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 432 | ACQUIRE_LOCK; |
| 433 | |
| 434 | auto fromVol = VolumeManager::Instance()->findVolume(fromVolId); |
| 435 | auto toVol = VolumeManager::Instance()->findVolume(toVolId); |
| 436 | if (fromVol == nullptr) { |
| 437 | return error("Failed to find volume " + fromVolId); |
| 438 | } else if (toVol == nullptr) { |
| 439 | return error("Failed to find volume " + toVolId); |
| 440 | } |
Jeff Sharkey | 01a0e7f | 2017-10-17 16:06:32 -0600 | [diff] [blame] | 441 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 442 | std::thread([=]() { android::vold::MoveStorage(fromVol, toVol, listener); }).detach(); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 443 | return ok(); |
| 444 | } |
| 445 | |
| 446 | binder::Status VoldNativeService::remountUid(int32_t uid, int32_t remountMode) { |
| 447 | ENFORCE_UID(AID_SYSTEM); |
| 448 | ACQUIRE_LOCK; |
| 449 | |
Sudheer Shanka | 817b911 | 2018-12-13 17:40:28 -0800 | [diff] [blame] | 450 | return translate(VolumeManager::Instance()->remountUid(uid, remountMode)); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 451 | } |
| 452 | |
| 453 | binder::Status VoldNativeService::mkdirs(const std::string& path) { |
| 454 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 455 | CHECK_ARGUMENT_PATH(path); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 456 | ACQUIRE_LOCK; |
| 457 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 458 | return translate(VolumeManager::Instance()->mkdirs(path)); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 459 | } |
| 460 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 461 | binder::Status VoldNativeService::createObb(const std::string& sourcePath, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 462 | const std::string& sourceKey, int32_t ownerGid, |
| 463 | std::string* _aidl_return) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 464 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 465 | CHECK_ARGUMENT_PATH(sourcePath); |
| 466 | CHECK_ARGUMENT_HEX(sourceKey); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 467 | ACQUIRE_LOCK; |
| 468 | |
| 469 | return translate( |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 470 | VolumeManager::Instance()->createObb(sourcePath, sourceKey, ownerGid, _aidl_return)); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 471 | } |
| 472 | |
| 473 | binder::Status VoldNativeService::destroyObb(const std::string& volId) { |
| 474 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 475 | CHECK_ARGUMENT_ID(volId); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 476 | ACQUIRE_LOCK; |
| 477 | |
| 478 | return translate(VolumeManager::Instance()->destroyObb(volId)); |
| 479 | } |
| 480 | |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 481 | binder::Status VoldNativeService::createStubVolume( |
| 482 | const std::string& sourcePath, const std::string& mountPath, const std::string& fsType, |
| 483 | const std::string& fsUuid, const std::string& fsLabel, std::string* _aidl_return) { |
| 484 | ENFORCE_UID(AID_SYSTEM); |
| 485 | CHECK_ARGUMENT_PATH(sourcePath); |
| 486 | CHECK_ARGUMENT_PATH(mountPath); |
| 487 | CHECK_ARGUMENT_HEX(fsUuid); |
| 488 | // Label limitation seems to be different between fs (including allowed characters), so checking |
| 489 | // is quite meaningless. |
| 490 | ACQUIRE_LOCK; |
| 491 | |
| 492 | return translate(VolumeManager::Instance()->createStubVolume(sourcePath, mountPath, fsType, |
| 493 | fsUuid, fsLabel, _aidl_return)); |
| 494 | } |
| 495 | |
| 496 | binder::Status VoldNativeService::destroyStubVolume(const std::string& volId) { |
| 497 | ENFORCE_UID(AID_SYSTEM); |
| 498 | CHECK_ARGUMENT_ID(volId); |
| 499 | ACQUIRE_LOCK; |
| 500 | |
| 501 | return translate(VolumeManager::Instance()->destroyStubVolume(volId)); |
| 502 | } |
| 503 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 504 | binder::Status VoldNativeService::fstrim( |
| 505 | int32_t fstrimFlags, const android::sp<android::os::IVoldTaskListener>& listener) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 506 | ENFORCE_UID(AID_SYSTEM); |
| 507 | ACQUIRE_LOCK; |
| 508 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 509 | std::thread([=]() { android::vold::Trim(listener); }).detach(); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 510 | return ok(); |
| 511 | } |
| 512 | |
Jin Qian | a370c14 | 2017-10-17 15:41:45 -0700 | [diff] [blame] | 513 | binder::Status VoldNativeService::runIdleMaint( |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 514 | const android::sp<android::os::IVoldTaskListener>& listener) { |
Jin Qian | a370c14 | 2017-10-17 15:41:45 -0700 | [diff] [blame] | 515 | ENFORCE_UID(AID_SYSTEM); |
| 516 | ACQUIRE_LOCK; |
| 517 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 518 | std::thread([=]() { android::vold::RunIdleMaint(listener); }).detach(); |
Jin Qian | a370c14 | 2017-10-17 15:41:45 -0700 | [diff] [blame] | 519 | return ok(); |
| 520 | } |
| 521 | |
| 522 | binder::Status VoldNativeService::abortIdleMaint( |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 523 | const android::sp<android::os::IVoldTaskListener>& listener) { |
Jin Qian | a370c14 | 2017-10-17 15:41:45 -0700 | [diff] [blame] | 524 | ENFORCE_UID(AID_SYSTEM); |
| 525 | ACQUIRE_LOCK; |
| 526 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 527 | std::thread([=]() { android::vold::AbortIdleMaint(listener); }).detach(); |
Jin Qian | a370c14 | 2017-10-17 15:41:45 -0700 | [diff] [blame] | 528 | return ok(); |
| 529 | } |
| 530 | |
Risan | 8f6198d | 2018-10-26 20:56:45 -0600 | [diff] [blame] | 531 | binder::Status VoldNativeService::mountAppFuse(int32_t uid, int32_t mountId, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 532 | android::base::unique_fd* _aidl_return) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 533 | ENFORCE_UID(AID_SYSTEM); |
| 534 | ACQUIRE_LOCK; |
| 535 | |
Risan | 8f6198d | 2018-10-26 20:56:45 -0600 | [diff] [blame] | 536 | return translate(VolumeManager::Instance()->mountAppFuse(uid, mountId, _aidl_return)); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 537 | } |
| 538 | |
Risan | 8f6198d | 2018-10-26 20:56:45 -0600 | [diff] [blame] | 539 | binder::Status VoldNativeService::unmountAppFuse(int32_t uid, int32_t mountId) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 540 | ENFORCE_UID(AID_SYSTEM); |
| 541 | ACQUIRE_LOCK; |
| 542 | |
Risan | 8f6198d | 2018-10-26 20:56:45 -0600 | [diff] [blame] | 543 | return translate(VolumeManager::Instance()->unmountAppFuse(uid, mountId)); |
| 544 | } |
| 545 | |
| 546 | binder::Status VoldNativeService::openAppFuseFile(int32_t uid, int32_t mountId, int32_t fileId, |
| 547 | int32_t flags, |
| 548 | android::base::unique_fd* _aidl_return) { |
| 549 | ENFORCE_UID(AID_SYSTEM); |
| 550 | ACQUIRE_LOCK; |
| 551 | |
| 552 | int fd = VolumeManager::Instance()->openAppFuseFile(uid, mountId, fileId, flags); |
| 553 | if (fd == -1) { |
| 554 | return error("Failed to open AppFuse file for uid: " + std::to_string(uid) + |
| 555 | " mountId: " + std::to_string(mountId) + " fileId: " + std::to_string(fileId) + |
| 556 | " flags: " + std::to_string(flags)); |
| 557 | } |
| 558 | |
| 559 | *_aidl_return = android::base::unique_fd(fd); |
| 560 | return ok(); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 561 | } |
| 562 | |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 563 | binder::Status VoldNativeService::fdeCheckPassword(const std::string& password) { |
| 564 | ENFORCE_UID(AID_SYSTEM); |
| 565 | ACQUIRE_CRYPT_LOCK; |
| 566 | |
| 567 | return translate(cryptfs_check_passwd(password.c_str())); |
| 568 | } |
| 569 | |
| 570 | binder::Status VoldNativeService::fdeRestart() { |
| 571 | ENFORCE_UID(AID_SYSTEM); |
| 572 | ACQUIRE_CRYPT_LOCK; |
| 573 | |
| 574 | // Spawn as thread so init can issue commands back to vold without |
| 575 | // causing deadlock, usually as a result of prep_data_fs. |
| 576 | std::thread(&cryptfs_restart).detach(); |
| 577 | return ok(); |
| 578 | } |
| 579 | |
| 580 | binder::Status VoldNativeService::fdeComplete(int32_t* _aidl_return) { |
| 581 | ENFORCE_UID(AID_SYSTEM); |
| 582 | ACQUIRE_CRYPT_LOCK; |
| 583 | |
| 584 | *_aidl_return = cryptfs_crypto_complete(); |
| 585 | return ok(); |
| 586 | } |
| 587 | |
| 588 | static int fdeEnableInternal(int32_t passwordType, const std::string& password, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 589 | int32_t encryptionFlags) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 590 | bool noUi = (encryptionFlags & VoldNativeService::ENCRYPTION_FLAG_NO_UI) != 0; |
| 591 | |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 592 | for (int tries = 0; tries < 2; ++tries) { |
| 593 | int rc; |
| 594 | if (passwordType == VoldNativeService::PASSWORD_TYPE_DEFAULT) { |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 595 | rc = cryptfs_enable_default(noUi); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 596 | } else { |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 597 | rc = cryptfs_enable(passwordType, password.c_str(), noUi); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | if (rc == 0) { |
| 601 | return 0; |
| 602 | } else if (tries == 0) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 603 | KillProcessesWithOpenFiles(DATA_MNT_POINT, SIGKILL); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 604 | } |
| 605 | } |
| 606 | |
| 607 | return -1; |
| 608 | } |
| 609 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 610 | binder::Status VoldNativeService::fdeEnable(int32_t passwordType, const std::string& password, |
| 611 | int32_t encryptionFlags) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 612 | ENFORCE_UID(AID_SYSTEM); |
| 613 | ACQUIRE_CRYPT_LOCK; |
| 614 | |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 615 | LOG(DEBUG) << "fdeEnable(" << passwordType << ", *, " << encryptionFlags << ")"; |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 616 | if (fscrypt_is_native()) { |
| 617 | LOG(ERROR) << "fscrypt_is_native, fdeEnable invalid"; |
| 618 | return error("fscrypt_is_native, fdeEnable invalid"); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 619 | } |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 620 | LOG(DEBUG) << "!fscrypt_is_native, spawning fdeEnableInternal"; |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 621 | |
| 622 | // Spawn as thread so init can issue commands back to vold without |
| 623 | // causing deadlock, usually as a result of prep_data_fs. |
| 624 | std::thread(&fdeEnableInternal, passwordType, password, encryptionFlags).detach(); |
| 625 | return ok(); |
| 626 | } |
| 627 | |
| 628 | binder::Status VoldNativeService::fdeChangePassword(int32_t passwordType, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 629 | const std::string& password) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 630 | ENFORCE_UID(AID_SYSTEM); |
| 631 | ACQUIRE_CRYPT_LOCK; |
| 632 | |
| 633 | return translate(cryptfs_changepw(passwordType, password.c_str())); |
| 634 | } |
| 635 | |
| 636 | binder::Status VoldNativeService::fdeVerifyPassword(const std::string& password) { |
| 637 | ENFORCE_UID(AID_SYSTEM); |
| 638 | ACQUIRE_CRYPT_LOCK; |
| 639 | |
| 640 | return translate(cryptfs_verify_passwd(password.c_str())); |
| 641 | } |
| 642 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 643 | binder::Status VoldNativeService::fdeGetField(const std::string& key, std::string* _aidl_return) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 644 | ENFORCE_UID(AID_SYSTEM); |
| 645 | ACQUIRE_CRYPT_LOCK; |
| 646 | |
| 647 | char buf[PROPERTY_VALUE_MAX]; |
| 648 | if (cryptfs_getfield(key.c_str(), buf, sizeof(buf)) != CRYPTO_GETFIELD_OK) { |
| 649 | return error(StringPrintf("Failed to read field %s", key.c_str())); |
| 650 | } else { |
| 651 | *_aidl_return = buf; |
| 652 | return ok(); |
| 653 | } |
| 654 | } |
| 655 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 656 | binder::Status VoldNativeService::fdeSetField(const std::string& key, const std::string& value) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 657 | ENFORCE_UID(AID_SYSTEM); |
| 658 | ACQUIRE_CRYPT_LOCK; |
| 659 | |
| 660 | return translate(cryptfs_setfield(key.c_str(), value.c_str())); |
| 661 | } |
| 662 | |
| 663 | binder::Status VoldNativeService::fdeGetPasswordType(int32_t* _aidl_return) { |
| 664 | ENFORCE_UID(AID_SYSTEM); |
| 665 | ACQUIRE_CRYPT_LOCK; |
| 666 | |
| 667 | *_aidl_return = cryptfs_get_password_type(); |
| 668 | return ok(); |
| 669 | } |
| 670 | |
| 671 | binder::Status VoldNativeService::fdeGetPassword(std::string* _aidl_return) { |
| 672 | ENFORCE_UID(AID_SYSTEM); |
| 673 | ACQUIRE_CRYPT_LOCK; |
| 674 | |
| 675 | const char* res = cryptfs_get_password(); |
| 676 | if (res != nullptr) { |
| 677 | *_aidl_return = res; |
| 678 | } |
| 679 | return ok(); |
| 680 | } |
| 681 | |
| 682 | binder::Status VoldNativeService::fdeClearPassword() { |
| 683 | ENFORCE_UID(AID_SYSTEM); |
| 684 | ACQUIRE_CRYPT_LOCK; |
| 685 | |
| 686 | cryptfs_clear_password(); |
| 687 | return ok(); |
| 688 | } |
| 689 | |
| 690 | binder::Status VoldNativeService::fbeEnable() { |
| 691 | ENFORCE_UID(AID_SYSTEM); |
| 692 | ACQUIRE_CRYPT_LOCK; |
| 693 | |
Paul Crowley | c8a3ef3 | 2019-09-11 15:00:08 -0700 | [diff] [blame^] | 694 | return translateBool(fscrypt_initialize_systemwide_keys()); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 695 | } |
| 696 | |
| 697 | binder::Status VoldNativeService::mountDefaultEncrypted() { |
| 698 | ENFORCE_UID(AID_SYSTEM); |
| 699 | ACQUIRE_CRYPT_LOCK; |
| 700 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 701 | if (!fscrypt_is_native()) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 702 | // Spawn as thread so init can issue commands back to vold without |
| 703 | // causing deadlock, usually as a result of prep_data_fs. |
| 704 | std::thread(&cryptfs_mount_default_encrypted).detach(); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 705 | } |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 706 | return ok(); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 707 | } |
| 708 | |
| 709 | binder::Status VoldNativeService::initUser0() { |
| 710 | ENFORCE_UID(AID_SYSTEM); |
| 711 | ACQUIRE_CRYPT_LOCK; |
| 712 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 713 | return translateBool(fscrypt_init_user0()); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | binder::Status VoldNativeService::isConvertibleToFbe(bool* _aidl_return) { |
| 717 | ENFORCE_UID(AID_SYSTEM); |
| 718 | ACQUIRE_CRYPT_LOCK; |
| 719 | |
| 720 | *_aidl_return = cryptfs_isConvertibleToFBE() != 0; |
| 721 | return ok(); |
| 722 | } |
| 723 | |
Paul Lawrence | 236e5e8 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 724 | binder::Status VoldNativeService::mountFstab(const std::string& blkDevice, |
| 725 | const std::string& mountPoint) { |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 726 | ENFORCE_UID(AID_SYSTEM); |
| 727 | ACQUIRE_LOCK; |
| 728 | |
Paul Lawrence | 236e5e8 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 729 | return translateBool(fscrypt_mount_metadata_encrypted(blkDevice, mountPoint, false)); |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 730 | } |
| 731 | |
Paul Lawrence | 236e5e8 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 732 | binder::Status VoldNativeService::encryptFstab(const std::string& blkDevice, |
| 733 | const std::string& mountPoint) { |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 734 | ENFORCE_UID(AID_SYSTEM); |
| 735 | ACQUIRE_LOCK; |
| 736 | |
Paul Lawrence | 236e5e8 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 737 | return translateBool(fscrypt_mount_metadata_encrypted(blkDevice, mountPoint, true)); |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 738 | } |
| 739 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 740 | binder::Status VoldNativeService::createUserKey(int32_t userId, int32_t userSerial, bool ephemeral) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 741 | ENFORCE_UID(AID_SYSTEM); |
| 742 | ACQUIRE_CRYPT_LOCK; |
| 743 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 744 | return translateBool(fscrypt_vold_create_user_key(userId, userSerial, ephemeral)); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | binder::Status VoldNativeService::destroyUserKey(int32_t userId) { |
| 748 | ENFORCE_UID(AID_SYSTEM); |
| 749 | ACQUIRE_CRYPT_LOCK; |
| 750 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 751 | return translateBool(fscrypt_destroy_user_key(userId)); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 752 | } |
| 753 | |
| 754 | binder::Status VoldNativeService::addUserKeyAuth(int32_t userId, int32_t userSerial, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 755 | const std::string& token, |
| 756 | const std::string& secret) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 757 | ENFORCE_UID(AID_SYSTEM); |
| 758 | ACQUIRE_CRYPT_LOCK; |
| 759 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 760 | return translateBool(fscrypt_add_user_key_auth(userId, userSerial, token, secret)); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | binder::Status VoldNativeService::fixateNewestUserKeyAuth(int32_t userId) { |
| 764 | ENFORCE_UID(AID_SYSTEM); |
| 765 | ACQUIRE_CRYPT_LOCK; |
| 766 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 767 | return translateBool(fscrypt_fixate_newest_user_key_auth(userId)); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 768 | } |
| 769 | |
| 770 | binder::Status VoldNativeService::unlockUserKey(int32_t userId, int32_t userSerial, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 771 | const std::string& token, |
| 772 | const std::string& secret) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 773 | ENFORCE_UID(AID_SYSTEM); |
| 774 | ACQUIRE_CRYPT_LOCK; |
| 775 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 776 | return translateBool(fscrypt_unlock_user_key(userId, userSerial, token, secret)); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 777 | } |
| 778 | |
| 779 | binder::Status VoldNativeService::lockUserKey(int32_t userId) { |
| 780 | ENFORCE_UID(AID_SYSTEM); |
| 781 | ACQUIRE_CRYPT_LOCK; |
| 782 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 783 | return translateBool(fscrypt_lock_user_key(userId)); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 784 | } |
| 785 | |
| 786 | binder::Status VoldNativeService::prepareUserStorage(const std::unique_ptr<std::string>& uuid, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 787 | int32_t userId, int32_t userSerial, |
| 788 | int32_t flags) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 789 | ENFORCE_UID(AID_SYSTEM); |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 790 | std::string empty_string = ""; |
| 791 | auto uuid_ = uuid ? *uuid : empty_string; |
Paul Crowley | 06f762d | 2017-10-16 10:59:51 -0700 | [diff] [blame] | 792 | CHECK_ARGUMENT_HEX(uuid_); |
| 793 | |
| 794 | ACQUIRE_CRYPT_LOCK; |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 795 | return translateBool(fscrypt_prepare_user_storage(uuid_, userId, userSerial, flags)); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 796 | } |
| 797 | |
| 798 | binder::Status VoldNativeService::destroyUserStorage(const std::unique_ptr<std::string>& uuid, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 799 | int32_t userId, int32_t flags) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 800 | ENFORCE_UID(AID_SYSTEM); |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 801 | std::string empty_string = ""; |
| 802 | auto uuid_ = uuid ? *uuid : empty_string; |
Paul Crowley | 06f762d | 2017-10-16 10:59:51 -0700 | [diff] [blame] | 803 | CHECK_ARGUMENT_HEX(uuid_); |
| 804 | |
| 805 | ACQUIRE_CRYPT_LOCK; |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 806 | return translateBool(fscrypt_destroy_user_storage(uuid_, userId, flags)); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 807 | } |
| 808 | |
Sudheer Shanka | fa6a174 | 2018-10-04 16:26:22 -0700 | [diff] [blame] | 809 | binder::Status VoldNativeService::prepareSandboxForApp(const std::string& packageName, |
| 810 | int32_t appId, const std::string& sandboxId, |
| 811 | int32_t userId) { |
Sudheer Shanka | 5fceb48 | 2019-04-29 10:46:35 -0700 | [diff] [blame] | 812 | return ok(); |
Sudheer Shanka | fa6a174 | 2018-10-04 16:26:22 -0700 | [diff] [blame] | 813 | } |
| 814 | |
| 815 | binder::Status VoldNativeService::destroySandboxForApp(const std::string& packageName, |
Sudheer Shanka | 69bc40f | 2018-10-25 11:06:55 -0700 | [diff] [blame] | 816 | const std::string& sandboxId, |
Sudheer Shanka | fa6a174 | 2018-10-04 16:26:22 -0700 | [diff] [blame] | 817 | int32_t userId) { |
Sudheer Shanka | 5fceb48 | 2019-04-29 10:46:35 -0700 | [diff] [blame] | 818 | return ok(); |
Sudheer Shanka | c756209 | 2018-08-24 10:20:56 -0700 | [diff] [blame] | 819 | } |
| 820 | |
Daniel Rosenberg | e334aab | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 821 | binder::Status VoldNativeService::startCheckpoint(int32_t retry) { |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 822 | ENFORCE_UID(AID_SYSTEM); |
| 823 | ACQUIRE_LOCK; |
| 824 | |
Daniel Rosenberg | e334aab | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 825 | return cp_startCheckpoint(retry); |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 826 | } |
| 827 | |
Daniel Rosenberg | d399249 | 2018-10-02 17:40:44 -0700 | [diff] [blame] | 828 | binder::Status VoldNativeService::needsRollback(bool* _aidl_return) { |
| 829 | ENFORCE_UID(AID_SYSTEM); |
| 830 | ACQUIRE_LOCK; |
| 831 | |
| 832 | *_aidl_return = cp_needsRollback(); |
| 833 | return ok(); |
| 834 | } |
| 835 | |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 836 | binder::Status VoldNativeService::needsCheckpoint(bool* _aidl_return) { |
| 837 | ENFORCE_UID(AID_SYSTEM); |
| 838 | ACQUIRE_LOCK; |
| 839 | |
| 840 | *_aidl_return = cp_needsCheckpoint(); |
| 841 | return ok(); |
| 842 | } |
| 843 | |
Daniel Rosenberg | e334aab | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 844 | binder::Status VoldNativeService::commitChanges() { |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 845 | ENFORCE_UID(AID_SYSTEM); |
| 846 | ACQUIRE_LOCK; |
| 847 | |
Daniel Rosenberg | e334aab | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 848 | return cp_commitChanges(); |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 849 | } |
| 850 | |
Daniel Rosenberg | e334aab | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 851 | binder::Status VoldNativeService::prepareCheckpoint() { |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 852 | ENFORCE_UID(AID_SYSTEM); |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 853 | ACQUIRE_LOCK; |
| 854 | |
Daniel Rosenberg | e334aab | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 855 | return cp_prepareCheckpoint(); |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 856 | } |
| 857 | |
Daniel Rosenberg | e334aab | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 858 | binder::Status VoldNativeService::restoreCheckpoint(const std::string& mountPoint) { |
Paul Lawrence | 1abb2fe | 2018-09-21 10:49:57 -0700 | [diff] [blame] | 859 | ENFORCE_UID(AID_SYSTEM); |
| 860 | CHECK_ARGUMENT_PATH(mountPoint); |
| 861 | ACQUIRE_LOCK; |
| 862 | |
Daniel Rosenberg | e334aab | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 863 | return cp_restoreCheckpoint(mountPoint); |
Paul Lawrence | 1abb2fe | 2018-09-21 10:49:57 -0700 | [diff] [blame] | 864 | } |
| 865 | |
Daniel Rosenberg | dda5981 | 2019-03-06 17:45:17 -0800 | [diff] [blame] | 866 | binder::Status VoldNativeService::restoreCheckpointPart(const std::string& mountPoint, int count) { |
| 867 | ENFORCE_UID(AID_SYSTEM); |
| 868 | CHECK_ARGUMENT_PATH(mountPoint); |
| 869 | ACQUIRE_LOCK; |
| 870 | |
| 871 | return cp_restoreCheckpoint(mountPoint, count); |
| 872 | } |
| 873 | |
Daniel Rosenberg | e334aab | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 874 | binder::Status VoldNativeService::markBootAttempt() { |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 875 | ENFORCE_UID(AID_SYSTEM); |
| 876 | ACQUIRE_LOCK; |
| 877 | |
Daniel Rosenberg | e334aab | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 878 | return cp_markBootAttempt(); |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 879 | } |
| 880 | |
Daniel Rosenberg | a59e439 | 2019-03-20 17:02:47 -0700 | [diff] [blame] | 881 | binder::Status VoldNativeService::abortChanges(const std::string& message, bool retry) { |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 882 | ENFORCE_UID(AID_SYSTEM); |
| 883 | ACQUIRE_LOCK; |
| 884 | |
Daniel Rosenberg | a59e439 | 2019-03-20 17:02:47 -0700 | [diff] [blame] | 885 | cp_abortChanges(message, retry); |
| 886 | return ok(); |
Daniel Rosenberg | 4f68471 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 887 | } |
| 888 | |
Daniel Rosenberg | 9b667fb | 2019-01-22 17:27:25 -0800 | [diff] [blame] | 889 | binder::Status VoldNativeService::supportsCheckpoint(bool* _aidl_return) { |
| 890 | ENFORCE_UID(AID_SYSTEM); |
| 891 | ACQUIRE_LOCK; |
| 892 | |
| 893 | return cp_supportsCheckpoint(*_aidl_return); |
| 894 | } |
| 895 | |
Paul Lawrence | c5c79c5 | 2019-03-18 13:36:40 -0700 | [diff] [blame] | 896 | binder::Status VoldNativeService::supportsBlockCheckpoint(bool* _aidl_return) { |
| 897 | ENFORCE_UID(AID_SYSTEM); |
| 898 | ACQUIRE_LOCK; |
| 899 | |
| 900 | return cp_supportsBlockCheckpoint(*_aidl_return); |
| 901 | } |
| 902 | |
| 903 | binder::Status VoldNativeService::supportsFileCheckpoint(bool* _aidl_return) { |
| 904 | ENFORCE_UID(AID_SYSTEM); |
| 905 | ACQUIRE_LOCK; |
| 906 | |
| 907 | return cp_supportsFileCheckpoint(*_aidl_return); |
| 908 | } |
| 909 | |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 910 | } // namespace vold |
| 911 | } // namespace android |