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 | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 27 | #include "Checkpoint.h" |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 28 | #include "Ext4Crypt.h" |
| 29 | #include "MetadataCrypt.h" |
Paul Crowley | 8915d62 | 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> |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 38 | #include <ext4_utils/ext4_crypt.h> |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 39 | #include <fs_mgr.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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | 8915d62 | 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 | |
| 265 | binder::Status VoldNativeService::onUserStarted(int32_t userId) { |
| 266 | ENFORCE_UID(AID_SYSTEM); |
| 267 | ACQUIRE_LOCK; |
| 268 | |
| 269 | return translate(VolumeManager::Instance()->onUserStarted(userId)); |
| 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 | |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 279 | binder::Status VoldNativeService::onSecureKeyguardStateChanged(bool isShowing) { |
| 280 | ENFORCE_UID(AID_SYSTEM); |
| 281 | ACQUIRE_LOCK; |
| 282 | |
| 283 | return translate(VolumeManager::Instance()->onSecureKeyguardStateChanged(isShowing)); |
| 284 | } |
| 285 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 286 | binder::Status VoldNativeService::partition(const std::string& diskId, int32_t partitionType, |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 287 | int32_t ratio) { |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 288 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 289 | CHECK_ARGUMENT_ID(diskId); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 290 | ACQUIRE_LOCK; |
| 291 | |
| 292 | auto disk = VolumeManager::Instance()->findDisk(diskId); |
| 293 | if (disk == nullptr) { |
| 294 | return error("Failed to find disk " + diskId); |
| 295 | } |
| 296 | switch (partitionType) { |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 297 | case PARTITION_TYPE_PUBLIC: |
| 298 | return translate(disk->partitionPublic()); |
| 299 | case PARTITION_TYPE_PRIVATE: |
| 300 | return translate(disk->partitionPrivate()); |
| 301 | case PARTITION_TYPE_MIXED: |
| 302 | return translate(disk->partitionMixed(ratio)); |
| 303 | default: |
| 304 | return error("Unknown type " + std::to_string(partitionType)); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 305 | } |
| 306 | } |
| 307 | |
Jeff Sharkey | 3ce1825 | 2017-10-24 11:08:45 -0600 | [diff] [blame] | 308 | binder::Status VoldNativeService::forgetPartition(const std::string& partGuid, |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 309 | const std::string& fsUuid) { |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 310 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 311 | CHECK_ARGUMENT_HEX(partGuid); |
Jeff Sharkey | 3ce1825 | 2017-10-24 11:08:45 -0600 | [diff] [blame] | 312 | CHECK_ARGUMENT_HEX(fsUuid); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 313 | ACQUIRE_LOCK; |
| 314 | |
Jeff Sharkey | 3ce1825 | 2017-10-24 11:08:45 -0600 | [diff] [blame] | 315 | return translate(VolumeManager::Instance()->forgetPartition(partGuid, fsUuid)); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 316 | } |
| 317 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 318 | binder::Status VoldNativeService::mount(const std::string& volId, int32_t mountFlags, |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 319 | int32_t mountUserId) { |
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_ID(volId); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 322 | ACQUIRE_LOCK; |
| 323 | |
| 324 | auto vol = VolumeManager::Instance()->findVolume(volId); |
| 325 | if (vol == nullptr) { |
| 326 | return error("Failed to find volume " + volId); |
| 327 | } |
| 328 | |
| 329 | vol->setMountFlags(mountFlags); |
| 330 | vol->setMountUserId(mountUserId); |
| 331 | |
| 332 | int res = vol->mount(); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 333 | if ((mountFlags & MOUNT_FLAG_PRIMARY) != 0) { |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 334 | VolumeManager::Instance()->setPrimary(vol); |
| 335 | } |
| 336 | return translate(res); |
| 337 | } |
| 338 | |
| 339 | binder::Status VoldNativeService::unmount(const std::string& volId) { |
| 340 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 341 | CHECK_ARGUMENT_ID(volId); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 342 | ACQUIRE_LOCK; |
| 343 | |
| 344 | auto vol = VolumeManager::Instance()->findVolume(volId); |
| 345 | if (vol == nullptr) { |
| 346 | return error("Failed to find volume " + volId); |
| 347 | } |
| 348 | return translate(vol->unmount()); |
| 349 | } |
| 350 | |
| 351 | binder::Status VoldNativeService::format(const std::string& volId, const std::string& fsType) { |
| 352 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 353 | CHECK_ARGUMENT_ID(volId); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 354 | ACQUIRE_LOCK; |
| 355 | |
| 356 | auto vol = VolumeManager::Instance()->findVolume(volId); |
| 357 | if (vol == nullptr) { |
| 358 | return error("Failed to find volume " + volId); |
| 359 | } |
| 360 | return translate(vol->format(fsType)); |
| 361 | } |
| 362 | |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 363 | static binder::Status pathForVolId(const std::string& volId, std::string* path) { |
Jeff Sharkey | 52f7a91 | 2017-09-15 12:57:44 -0600 | [diff] [blame] | 364 | if (volId == "private" || volId == "null") { |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 365 | *path = "/data"; |
Jeff Sharkey | 52f7a91 | 2017-09-15 12:57:44 -0600 | [diff] [blame] | 366 | } else { |
| 367 | auto vol = VolumeManager::Instance()->findVolume(volId); |
| 368 | if (vol == nullptr) { |
| 369 | return error("Failed to find volume " + volId); |
| 370 | } |
| 371 | if (vol->getType() != VolumeBase::Type::kPrivate) { |
| 372 | return error("Volume " + volId + " not private"); |
| 373 | } |
| 374 | if (vol->getState() != VolumeBase::State::kMounted) { |
| 375 | return error("Volume " + volId + " not mounted"); |
| 376 | } |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 377 | *path = vol->getPath(); |
| 378 | if (path->empty()) { |
| 379 | return error("Volume " + volId + " missing path"); |
| 380 | } |
Jeff Sharkey | 52f7a91 | 2017-09-15 12:57:44 -0600 | [diff] [blame] | 381 | } |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 382 | return ok(); |
| 383 | } |
Jeff Sharkey | 52f7a91 | 2017-09-15 12:57:44 -0600 | [diff] [blame] | 384 | |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 385 | binder::Status VoldNativeService::benchmark( |
| 386 | const std::string& volId, const android::sp<android::os::IVoldTaskListener>& listener) { |
| 387 | ENFORCE_UID(AID_SYSTEM); |
| 388 | CHECK_ARGUMENT_ID(volId); |
| 389 | ACQUIRE_LOCK; |
| 390 | |
| 391 | std::string path; |
| 392 | auto status = pathForVolId(volId, &path); |
| 393 | if (!status.isOk()) return status; |
Jeff Sharkey | 52f7a91 | 2017-09-15 12:57:44 -0600 | [diff] [blame] | 394 | |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 395 | std::thread([=]() { android::vold::Benchmark(path, listener); }).detach(); |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 396 | return ok(); |
| 397 | } |
| 398 | |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 399 | binder::Status VoldNativeService::checkEncryption(const std::string& volId) { |
| 400 | ENFORCE_UID(AID_SYSTEM); |
| 401 | CHECK_ARGUMENT_ID(volId); |
| 402 | ACQUIRE_LOCK; |
| 403 | |
| 404 | std::string path; |
| 405 | auto status = pathForVolId(volId, &path); |
| 406 | if (!status.isOk()) return status; |
| 407 | return translate(android::vold::CheckEncryption(path)); |
| 408 | } |
| 409 | |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 410 | binder::Status VoldNativeService::moveStorage( |
| 411 | const std::string& fromVolId, const std::string& toVolId, |
| 412 | const android::sp<android::os::IVoldTaskListener>& listener) { |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 413 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 414 | CHECK_ARGUMENT_ID(fromVolId); |
| 415 | CHECK_ARGUMENT_ID(toVolId); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 416 | ACQUIRE_LOCK; |
| 417 | |
| 418 | auto fromVol = VolumeManager::Instance()->findVolume(fromVolId); |
| 419 | auto toVol = VolumeManager::Instance()->findVolume(toVolId); |
| 420 | if (fromVol == nullptr) { |
| 421 | return error("Failed to find volume " + fromVolId); |
| 422 | } else if (toVol == nullptr) { |
| 423 | return error("Failed to find volume " + toVolId); |
| 424 | } |
Jeff Sharkey | 01a0e7f | 2017-10-17 16:06:32 -0600 | [diff] [blame] | 425 | |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 426 | std::thread([=]() { android::vold::MoveStorage(fromVol, toVol, listener); }).detach(); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 427 | return ok(); |
| 428 | } |
| 429 | |
| 430 | binder::Status VoldNativeService::remountUid(int32_t uid, int32_t remountMode) { |
| 431 | ENFORCE_UID(AID_SYSTEM); |
| 432 | ACQUIRE_LOCK; |
| 433 | |
| 434 | std::string tmp; |
| 435 | switch (remountMode) { |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 436 | case REMOUNT_MODE_NONE: |
| 437 | tmp = "none"; |
| 438 | break; |
| 439 | case REMOUNT_MODE_DEFAULT: |
| 440 | tmp = "default"; |
| 441 | break; |
| 442 | case REMOUNT_MODE_READ: |
| 443 | tmp = "read"; |
| 444 | break; |
| 445 | case REMOUNT_MODE_WRITE: |
| 446 | tmp = "write"; |
| 447 | break; |
| 448 | default: |
| 449 | return error("Unknown mode " + std::to_string(remountMode)); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 450 | } |
| 451 | return translate(VolumeManager::Instance()->remountUid(uid, tmp)); |
| 452 | } |
| 453 | |
| 454 | binder::Status VoldNativeService::mkdirs(const std::string& path) { |
| 455 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 456 | CHECK_ARGUMENT_PATH(path); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 457 | ACQUIRE_LOCK; |
| 458 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 459 | return translate(VolumeManager::Instance()->mkdirs(path)); |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 460 | } |
| 461 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 462 | binder::Status VoldNativeService::createObb(const std::string& sourcePath, |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 463 | const std::string& sourceKey, int32_t ownerGid, |
| 464 | std::string* _aidl_return) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 465 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 466 | CHECK_ARGUMENT_PATH(sourcePath); |
| 467 | CHECK_ARGUMENT_HEX(sourceKey); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 468 | ACQUIRE_LOCK; |
| 469 | |
| 470 | return translate( |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 471 | VolumeManager::Instance()->createObb(sourcePath, sourceKey, ownerGid, _aidl_return)); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | binder::Status VoldNativeService::destroyObb(const std::string& volId) { |
| 475 | ENFORCE_UID(AID_SYSTEM); |
Jeff Sharkey | ec4fda2 | 2017-09-12 13:19:24 -0600 | [diff] [blame] | 476 | CHECK_ARGUMENT_ID(volId); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 477 | ACQUIRE_LOCK; |
| 478 | |
| 479 | return translate(VolumeManager::Instance()->destroyObb(volId)); |
| 480 | } |
| 481 | |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 482 | binder::Status VoldNativeService::fstrim( |
| 483 | int32_t fstrimFlags, const android::sp<android::os::IVoldTaskListener>& listener) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 484 | ENFORCE_UID(AID_SYSTEM); |
| 485 | ACQUIRE_LOCK; |
| 486 | |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 487 | std::thread([=]() { android::vold::Trim(listener); }).detach(); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 488 | return ok(); |
| 489 | } |
| 490 | |
Jin Qian | a370c14 | 2017-10-17 15:41:45 -0700 | [diff] [blame] | 491 | binder::Status VoldNativeService::runIdleMaint( |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 492 | const android::sp<android::os::IVoldTaskListener>& listener) { |
Jin Qian | a370c14 | 2017-10-17 15:41:45 -0700 | [diff] [blame] | 493 | ENFORCE_UID(AID_SYSTEM); |
| 494 | ACQUIRE_LOCK; |
| 495 | |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 496 | std::thread([=]() { android::vold::RunIdleMaint(listener); }).detach(); |
Jin Qian | a370c14 | 2017-10-17 15:41:45 -0700 | [diff] [blame] | 497 | return ok(); |
| 498 | } |
| 499 | |
| 500 | binder::Status VoldNativeService::abortIdleMaint( |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 501 | const android::sp<android::os::IVoldTaskListener>& listener) { |
Jin Qian | a370c14 | 2017-10-17 15:41:45 -0700 | [diff] [blame] | 502 | ENFORCE_UID(AID_SYSTEM); |
| 503 | ACQUIRE_LOCK; |
| 504 | |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 505 | std::thread([=]() { android::vold::AbortIdleMaint(listener); }).detach(); |
Jin Qian | a370c14 | 2017-10-17 15:41:45 -0700 | [diff] [blame] | 506 | return ok(); |
| 507 | } |
| 508 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 509 | binder::Status VoldNativeService::mountAppFuse(int32_t uid, int32_t pid, int32_t mountId, |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 510 | android::base::unique_fd* _aidl_return) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 511 | ENFORCE_UID(AID_SYSTEM); |
| 512 | ACQUIRE_LOCK; |
| 513 | |
| 514 | return translate(VolumeManager::Instance()->mountAppFuse(uid, pid, mountId, _aidl_return)); |
| 515 | } |
| 516 | |
| 517 | binder::Status VoldNativeService::unmountAppFuse(int32_t uid, int32_t pid, int32_t mountId) { |
| 518 | ENFORCE_UID(AID_SYSTEM); |
| 519 | ACQUIRE_LOCK; |
| 520 | |
| 521 | return translate(VolumeManager::Instance()->unmountAppFuse(uid, pid, mountId)); |
| 522 | } |
| 523 | |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 524 | binder::Status VoldNativeService::fdeCheckPassword(const std::string& password) { |
| 525 | ENFORCE_UID(AID_SYSTEM); |
| 526 | ACQUIRE_CRYPT_LOCK; |
| 527 | |
| 528 | return translate(cryptfs_check_passwd(password.c_str())); |
| 529 | } |
| 530 | |
| 531 | binder::Status VoldNativeService::fdeRestart() { |
| 532 | ENFORCE_UID(AID_SYSTEM); |
| 533 | ACQUIRE_CRYPT_LOCK; |
| 534 | |
| 535 | // Spawn as thread so init can issue commands back to vold without |
| 536 | // causing deadlock, usually as a result of prep_data_fs. |
| 537 | std::thread(&cryptfs_restart).detach(); |
| 538 | return ok(); |
| 539 | } |
| 540 | |
| 541 | binder::Status VoldNativeService::fdeComplete(int32_t* _aidl_return) { |
| 542 | ENFORCE_UID(AID_SYSTEM); |
| 543 | ACQUIRE_CRYPT_LOCK; |
| 544 | |
| 545 | *_aidl_return = cryptfs_crypto_complete(); |
| 546 | return ok(); |
| 547 | } |
| 548 | |
| 549 | static int fdeEnableInternal(int32_t passwordType, const std::string& password, |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 550 | int32_t encryptionFlags) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 551 | bool noUi = (encryptionFlags & VoldNativeService::ENCRYPTION_FLAG_NO_UI) != 0; |
| 552 | |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 553 | for (int tries = 0; tries < 2; ++tries) { |
| 554 | int rc; |
| 555 | if (passwordType == VoldNativeService::PASSWORD_TYPE_DEFAULT) { |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 556 | rc = cryptfs_enable_default(noUi); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 557 | } else { |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 558 | rc = cryptfs_enable(passwordType, password.c_str(), noUi); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 559 | } |
| 560 | |
| 561 | if (rc == 0) { |
| 562 | return 0; |
| 563 | } else if (tries == 0) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 564 | KillProcessesWithOpenFiles(DATA_MNT_POINT, SIGKILL); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 565 | } |
| 566 | } |
| 567 | |
| 568 | return -1; |
| 569 | } |
| 570 | |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 571 | binder::Status VoldNativeService::fdeEnable(int32_t passwordType, const std::string& password, |
| 572 | int32_t encryptionFlags) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 573 | ENFORCE_UID(AID_SYSTEM); |
| 574 | ACQUIRE_CRYPT_LOCK; |
| 575 | |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 576 | LOG(DEBUG) << "fdeEnable(" << passwordType << ", *, " << encryptionFlags << ")"; |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 577 | if (e4crypt_is_native()) { |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 578 | LOG(ERROR) << "e4crypt_is_native, fdeEnable invalid"; |
| 579 | return error("e4crypt_is_native, fdeEnable invalid"); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 580 | } |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 581 | LOG(DEBUG) << "!e4crypt_is_native, spawning fdeEnableInternal"; |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 582 | |
| 583 | // Spawn as thread so init can issue commands back to vold without |
| 584 | // causing deadlock, usually as a result of prep_data_fs. |
| 585 | std::thread(&fdeEnableInternal, passwordType, password, encryptionFlags).detach(); |
| 586 | return ok(); |
| 587 | } |
| 588 | |
| 589 | binder::Status VoldNativeService::fdeChangePassword(int32_t passwordType, |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 590 | const std::string& password) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 591 | ENFORCE_UID(AID_SYSTEM); |
| 592 | ACQUIRE_CRYPT_LOCK; |
| 593 | |
| 594 | return translate(cryptfs_changepw(passwordType, password.c_str())); |
| 595 | } |
| 596 | |
| 597 | binder::Status VoldNativeService::fdeVerifyPassword(const std::string& password) { |
| 598 | ENFORCE_UID(AID_SYSTEM); |
| 599 | ACQUIRE_CRYPT_LOCK; |
| 600 | |
| 601 | return translate(cryptfs_verify_passwd(password.c_str())); |
| 602 | } |
| 603 | |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 604 | binder::Status VoldNativeService::fdeGetField(const std::string& key, std::string* _aidl_return) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 605 | ENFORCE_UID(AID_SYSTEM); |
| 606 | ACQUIRE_CRYPT_LOCK; |
| 607 | |
| 608 | char buf[PROPERTY_VALUE_MAX]; |
| 609 | if (cryptfs_getfield(key.c_str(), buf, sizeof(buf)) != CRYPTO_GETFIELD_OK) { |
| 610 | return error(StringPrintf("Failed to read field %s", key.c_str())); |
| 611 | } else { |
| 612 | *_aidl_return = buf; |
| 613 | return ok(); |
| 614 | } |
| 615 | } |
| 616 | |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 617 | binder::Status VoldNativeService::fdeSetField(const std::string& key, const std::string& value) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 618 | ENFORCE_UID(AID_SYSTEM); |
| 619 | ACQUIRE_CRYPT_LOCK; |
| 620 | |
| 621 | return translate(cryptfs_setfield(key.c_str(), value.c_str())); |
| 622 | } |
| 623 | |
| 624 | binder::Status VoldNativeService::fdeGetPasswordType(int32_t* _aidl_return) { |
| 625 | ENFORCE_UID(AID_SYSTEM); |
| 626 | ACQUIRE_CRYPT_LOCK; |
| 627 | |
| 628 | *_aidl_return = cryptfs_get_password_type(); |
| 629 | return ok(); |
| 630 | } |
| 631 | |
| 632 | binder::Status VoldNativeService::fdeGetPassword(std::string* _aidl_return) { |
| 633 | ENFORCE_UID(AID_SYSTEM); |
| 634 | ACQUIRE_CRYPT_LOCK; |
| 635 | |
| 636 | const char* res = cryptfs_get_password(); |
| 637 | if (res != nullptr) { |
| 638 | *_aidl_return = res; |
| 639 | } |
| 640 | return ok(); |
| 641 | } |
| 642 | |
| 643 | binder::Status VoldNativeService::fdeClearPassword() { |
| 644 | ENFORCE_UID(AID_SYSTEM); |
| 645 | ACQUIRE_CRYPT_LOCK; |
| 646 | |
| 647 | cryptfs_clear_password(); |
| 648 | return ok(); |
| 649 | } |
| 650 | |
| 651 | binder::Status VoldNativeService::fbeEnable() { |
| 652 | ENFORCE_UID(AID_SYSTEM); |
| 653 | ACQUIRE_CRYPT_LOCK; |
| 654 | |
| 655 | return translateBool(e4crypt_initialize_global_de()); |
| 656 | } |
| 657 | |
| 658 | binder::Status VoldNativeService::mountDefaultEncrypted() { |
| 659 | ENFORCE_UID(AID_SYSTEM); |
| 660 | ACQUIRE_CRYPT_LOCK; |
| 661 | |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 662 | if (!e4crypt_is_native()) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 663 | // Spawn as thread so init can issue commands back to vold without |
| 664 | // causing deadlock, usually as a result of prep_data_fs. |
| 665 | std::thread(&cryptfs_mount_default_encrypted).detach(); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 666 | } |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 667 | return ok(); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 668 | } |
| 669 | |
| 670 | binder::Status VoldNativeService::initUser0() { |
| 671 | ENFORCE_UID(AID_SYSTEM); |
| 672 | ACQUIRE_CRYPT_LOCK; |
| 673 | |
| 674 | return translateBool(e4crypt_init_user0()); |
| 675 | } |
| 676 | |
| 677 | binder::Status VoldNativeService::isConvertibleToFbe(bool* _aidl_return) { |
| 678 | ENFORCE_UID(AID_SYSTEM); |
| 679 | ACQUIRE_CRYPT_LOCK; |
| 680 | |
| 681 | *_aidl_return = cryptfs_isConvertibleToFBE() != 0; |
| 682 | return ok(); |
| 683 | } |
| 684 | |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 685 | binder::Status VoldNativeService::mountFstab(const std::string& mountPoint) { |
| 686 | ENFORCE_UID(AID_SYSTEM); |
| 687 | ACQUIRE_LOCK; |
| 688 | |
| 689 | return translateBool(e4crypt_mount_metadata_encrypted(mountPoint, false)); |
| 690 | } |
| 691 | |
| 692 | binder::Status VoldNativeService::encryptFstab(const std::string& mountPoint) { |
| 693 | ENFORCE_UID(AID_SYSTEM); |
| 694 | ACQUIRE_LOCK; |
| 695 | |
| 696 | return translateBool(e4crypt_mount_metadata_encrypted(mountPoint, true)); |
| 697 | } |
| 698 | |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 699 | binder::Status VoldNativeService::createUserKey(int32_t userId, int32_t userSerial, bool ephemeral) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 700 | ENFORCE_UID(AID_SYSTEM); |
| 701 | ACQUIRE_CRYPT_LOCK; |
| 702 | |
| 703 | return translateBool(e4crypt_vold_create_user_key(userId, userSerial, ephemeral)); |
| 704 | } |
| 705 | |
| 706 | binder::Status VoldNativeService::destroyUserKey(int32_t userId) { |
| 707 | ENFORCE_UID(AID_SYSTEM); |
| 708 | ACQUIRE_CRYPT_LOCK; |
| 709 | |
| 710 | return translateBool(e4crypt_destroy_user_key(userId)); |
| 711 | } |
| 712 | |
| 713 | binder::Status VoldNativeService::addUserKeyAuth(int32_t userId, int32_t userSerial, |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 714 | const std::string& token, |
| 715 | const std::string& secret) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 716 | ENFORCE_UID(AID_SYSTEM); |
| 717 | ACQUIRE_CRYPT_LOCK; |
| 718 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 719 | return translateBool(e4crypt_add_user_key_auth(userId, userSerial, token, secret)); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | binder::Status VoldNativeService::fixateNewestUserKeyAuth(int32_t userId) { |
| 723 | ENFORCE_UID(AID_SYSTEM); |
| 724 | ACQUIRE_CRYPT_LOCK; |
| 725 | |
| 726 | return translateBool(e4crypt_fixate_newest_user_key_auth(userId)); |
| 727 | } |
| 728 | |
| 729 | binder::Status VoldNativeService::unlockUserKey(int32_t userId, int32_t userSerial, |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 730 | const std::string& token, |
| 731 | const std::string& secret) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 732 | ENFORCE_UID(AID_SYSTEM); |
| 733 | ACQUIRE_CRYPT_LOCK; |
| 734 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 735 | return translateBool(e4crypt_unlock_user_key(userId, userSerial, token, secret)); |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 736 | } |
| 737 | |
| 738 | binder::Status VoldNativeService::lockUserKey(int32_t userId) { |
| 739 | ENFORCE_UID(AID_SYSTEM); |
| 740 | ACQUIRE_CRYPT_LOCK; |
| 741 | |
| 742 | return translateBool(e4crypt_lock_user_key(userId)); |
| 743 | } |
| 744 | |
| 745 | binder::Status VoldNativeService::prepareUserStorage(const std::unique_ptr<std::string>& uuid, |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 746 | int32_t userId, int32_t userSerial, |
| 747 | int32_t flags) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 748 | ENFORCE_UID(AID_SYSTEM); |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 749 | std::string empty_string = ""; |
| 750 | auto uuid_ = uuid ? *uuid : empty_string; |
Paul Crowley | 06f762d | 2017-10-16 10:59:51 -0700 | [diff] [blame] | 751 | CHECK_ARGUMENT_HEX(uuid_); |
| 752 | |
| 753 | ACQUIRE_CRYPT_LOCK; |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 754 | return translateBool(e4crypt_prepare_user_storage(uuid_, userId, userSerial, flags)); |
| 755 | } |
| 756 | |
| 757 | binder::Status VoldNativeService::destroyUserStorage(const std::unique_ptr<std::string>& uuid, |
Paul Crowley | 8915d62 | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 758 | int32_t userId, int32_t flags) { |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 759 | ENFORCE_UID(AID_SYSTEM); |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 760 | std::string empty_string = ""; |
| 761 | auto uuid_ = uuid ? *uuid : empty_string; |
Paul Crowley | 06f762d | 2017-10-16 10:59:51 -0700 | [diff] [blame] | 762 | CHECK_ARGUMENT_HEX(uuid_); |
| 763 | |
| 764 | ACQUIRE_CRYPT_LOCK; |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame] | 765 | return translateBool(e4crypt_destroy_user_storage(uuid_, userId, flags)); |
| 766 | } |
| 767 | |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 768 | binder::Status VoldNativeService::startCheckpoint(int32_t retry, bool* _aidl_return) { |
| 769 | ENFORCE_UID(AID_SYSTEM); |
| 770 | ACQUIRE_LOCK; |
| 771 | |
| 772 | *_aidl_return = cp_startCheckpoint(retry); |
| 773 | return ok(); |
| 774 | } |
| 775 | |
Daniel Rosenberg | d399249 | 2018-10-02 17:40:44 -0700 | [diff] [blame^] | 776 | binder::Status VoldNativeService::needsRollback(bool* _aidl_return) { |
| 777 | ENFORCE_UID(AID_SYSTEM); |
| 778 | ACQUIRE_LOCK; |
| 779 | |
| 780 | *_aidl_return = cp_needsRollback(); |
| 781 | return ok(); |
| 782 | } |
| 783 | |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 784 | binder::Status VoldNativeService::needsCheckpoint(bool* _aidl_return) { |
| 785 | ENFORCE_UID(AID_SYSTEM); |
| 786 | ACQUIRE_LOCK; |
| 787 | |
| 788 | *_aidl_return = cp_needsCheckpoint(); |
| 789 | return ok(); |
| 790 | } |
| 791 | |
| 792 | binder::Status VoldNativeService::commitChanges(bool* _aidl_return) { |
| 793 | ENFORCE_UID(AID_SYSTEM); |
| 794 | ACQUIRE_LOCK; |
| 795 | |
| 796 | *_aidl_return = cp_commitChanges(); |
| 797 | return ok(); |
| 798 | } |
| 799 | |
| 800 | binder::Status VoldNativeService::prepareDriveForCheckpoint(const std::string& mountPoint, |
| 801 | bool* _aidl_return) { |
| 802 | ENFORCE_UID(AID_SYSTEM); |
| 803 | CHECK_ARGUMENT_PATH(mountPoint); |
| 804 | ACQUIRE_LOCK; |
| 805 | |
| 806 | *_aidl_return = cp_prepareDriveForCheckpoint(mountPoint); |
| 807 | return ok(); |
| 808 | } |
| 809 | |
Paul Lawrence | 1abb2fe | 2018-09-21 10:49:57 -0700 | [diff] [blame] | 810 | binder::Status VoldNativeService::restoreCheckpoint(const std::string& mountPoint, |
| 811 | bool* _aidl_return) { |
| 812 | ENFORCE_UID(AID_SYSTEM); |
| 813 | CHECK_ARGUMENT_PATH(mountPoint); |
| 814 | ACQUIRE_LOCK; |
| 815 | |
| 816 | *_aidl_return = cp_restoreCheckpoint(mountPoint); |
| 817 | return ok(); |
| 818 | } |
| 819 | |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 820 | binder::Status VoldNativeService::markBootAttempt(bool* _aidl_return) { |
| 821 | ENFORCE_UID(AID_SYSTEM); |
| 822 | ACQUIRE_LOCK; |
| 823 | |
| 824 | *_aidl_return = cp_markBootAttempt(); |
| 825 | return ok(); |
| 826 | } |
| 827 | |
| 828 | binder::Status VoldNativeService::abortChanges() { |
| 829 | ENFORCE_UID(AID_SYSTEM); |
| 830 | ACQUIRE_LOCK; |
| 831 | |
| 832 | cp_abortChanges(); |
| 833 | return ok(); |
| 834 | } |
| 835 | |
Jeff Sharkey | 068c6be | 2017-09-06 13:47:40 -0600 | [diff] [blame] | 836 | } // namespace vold |
| 837 | } // namespace android |