Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "commands.h" |
| 18 | |
| 19 | #include <sys/socket.h> |
| 20 | #include <sys/un.h> |
| 21 | |
| 22 | #include <android-base/logging.h> |
| 23 | #include <android-base/parseint.h> |
| 24 | #include <android-base/properties.h> |
| 25 | #include <android-base/stringprintf.h> |
| 26 | #include <android-base/strings.h> |
| 27 | #include <android-base/unique_fd.h> |
| 28 | #include <cutils/android_reboot.h> |
David Anderson | 12211d1 | 2018-07-24 15:21:20 -0700 | [diff] [blame] | 29 | #include <ext4_utils/wipe.h> |
David Anderson | 5cbd2e4 | 2018-09-27 10:53:04 -0700 | [diff] [blame] | 30 | #include <fs_mgr.h> |
David Anderson | 1d504e3 | 2019-01-15 14:38:20 -0800 | [diff] [blame^] | 31 | #include <libgsi/libgsi.h> |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 32 | #include <liblp/builder.h> |
| 33 | #include <liblp/liblp.h> |
| 34 | #include <uuid/uuid.h> |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 35 | |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 36 | #include "constants.h" |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 37 | #include "fastboot_device.h" |
David Anderson | 12211d1 | 2018-07-24 15:21:20 -0700 | [diff] [blame] | 38 | #include "flashing.h" |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 39 | #include "utility.h" |
| 40 | |
| 41 | using ::android::hardware::hidl_string; |
| 42 | using ::android::hardware::boot::V1_0::BoolResult; |
| 43 | using ::android::hardware::boot::V1_0::CommandResult; |
| 44 | using ::android::hardware::boot::V1_0::Slot; |
Hridya Valsaraju | a15fe31 | 2018-09-14 13:58:21 -0700 | [diff] [blame] | 45 | using ::android::hardware::fastboot::V1_0::Result; |
| 46 | using ::android::hardware::fastboot::V1_0::Status; |
| 47 | |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 48 | using namespace android::fs_mgr; |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 49 | |
David Anderson | 0f62663 | 2018-08-31 16:44:25 -0700 | [diff] [blame] | 50 | struct VariableHandlers { |
| 51 | // Callback to retrieve the value of a single variable. |
| 52 | std::function<bool(FastbootDevice*, const std::vector<std::string>&, std::string*)> get; |
| 53 | // Callback to retrieve all possible argument combinations, for getvar all. |
| 54 | std::function<std::vector<std::vector<std::string>>(FastbootDevice*)> get_all_args; |
| 55 | }; |
| 56 | |
| 57 | static void GetAllVars(FastbootDevice* device, const std::string& name, |
| 58 | const VariableHandlers& handlers) { |
| 59 | if (!handlers.get_all_args) { |
| 60 | std::string message; |
| 61 | if (!handlers.get(device, std::vector<std::string>(), &message)) { |
| 62 | return; |
| 63 | } |
| 64 | device->WriteInfo(android::base::StringPrintf("%s:%s", name.c_str(), message.c_str())); |
| 65 | return; |
| 66 | } |
| 67 | |
| 68 | auto all_args = handlers.get_all_args(device); |
| 69 | for (const auto& args : all_args) { |
| 70 | std::string message; |
| 71 | if (!handlers.get(device, args, &message)) { |
| 72 | continue; |
| 73 | } |
| 74 | std::string arg_string = android::base::Join(args, ":"); |
| 75 | device->WriteInfo(android::base::StringPrintf("%s:%s:%s", name.c_str(), arg_string.c_str(), |
| 76 | message.c_str())); |
| 77 | } |
| 78 | } |
| 79 | |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 80 | bool GetVarHandler(FastbootDevice* device, const std::vector<std::string>& args) { |
David Anderson | 0f62663 | 2018-08-31 16:44:25 -0700 | [diff] [blame] | 81 | const std::unordered_map<std::string, VariableHandlers> kVariableMap = { |
| 82 | {FB_VAR_VERSION, {GetVersion, nullptr}}, |
| 83 | {FB_VAR_VERSION_BOOTLOADER, {GetBootloaderVersion, nullptr}}, |
| 84 | {FB_VAR_VERSION_BASEBAND, {GetBasebandVersion, nullptr}}, |
| 85 | {FB_VAR_PRODUCT, {GetProduct, nullptr}}, |
| 86 | {FB_VAR_SERIALNO, {GetSerial, nullptr}}, |
Hridya Valsaraju | 4af8090 | 2018-09-26 13:08:16 -0700 | [diff] [blame] | 87 | {FB_VAR_VARIANT, {GetVariant, nullptr}}, |
David Anderson | 0f62663 | 2018-08-31 16:44:25 -0700 | [diff] [blame] | 88 | {FB_VAR_SECURE, {GetSecure, nullptr}}, |
| 89 | {FB_VAR_UNLOCKED, {GetUnlocked, nullptr}}, |
| 90 | {FB_VAR_MAX_DOWNLOAD_SIZE, {GetMaxDownloadSize, nullptr}}, |
| 91 | {FB_VAR_CURRENT_SLOT, {::GetCurrentSlot, nullptr}}, |
| 92 | {FB_VAR_SLOT_COUNT, {GetSlotCount, nullptr}}, |
| 93 | {FB_VAR_HAS_SLOT, {GetHasSlot, GetAllPartitionArgsNoSlot}}, |
| 94 | {FB_VAR_SLOT_SUCCESSFUL, {GetSlotSuccessful, nullptr}}, |
| 95 | {FB_VAR_SLOT_UNBOOTABLE, {GetSlotUnbootable, nullptr}}, |
| 96 | {FB_VAR_PARTITION_SIZE, {GetPartitionSize, GetAllPartitionArgsWithSlot}}, |
Hridya Valsaraju | bf9f8d1 | 2018-09-05 16:57:24 -0700 | [diff] [blame] | 97 | {FB_VAR_PARTITION_TYPE, {GetPartitionType, GetAllPartitionArgsWithSlot}}, |
David Anderson | 0f62663 | 2018-08-31 16:44:25 -0700 | [diff] [blame] | 98 | {FB_VAR_IS_LOGICAL, {GetPartitionIsLogical, GetAllPartitionArgsWithSlot}}, |
David Anderson | c091c17 | 2018-09-04 18:11:03 -0700 | [diff] [blame] | 99 | {FB_VAR_IS_USERSPACE, {GetIsUserspace, nullptr}}, |
Hridya Valsaraju | 7c9bbe9 | 2018-09-27 10:41:01 -0700 | [diff] [blame] | 100 | {FB_VAR_OFF_MODE_CHARGE_STATE, {GetOffModeChargeState, nullptr}}, |
Hridya Valsaraju | 47658ca | 2018-09-28 11:41:22 -0700 | [diff] [blame] | 101 | {FB_VAR_BATTERY_VOLTAGE, {GetBatteryVoltage, nullptr}}, |
Hridya Valsaraju | a534a5a | 2018-10-03 15:53:22 -0700 | [diff] [blame] | 102 | {FB_VAR_BATTERY_SOC_OK, {GetBatterySoCOk, nullptr}}, |
David Anderson | 90fe0a4 | 2018-11-05 18:01:32 -0800 | [diff] [blame] | 103 | {FB_VAR_HW_REVISION, {GetHardwareRevision, nullptr}}, |
| 104 | {FB_VAR_SUPER_PARTITION_NAME, {GetSuperPartitionName, nullptr}}}; |
David Anderson | 0f62663 | 2018-08-31 16:44:25 -0700 | [diff] [blame] | 105 | |
| 106 | if (args.size() < 2) { |
| 107 | return device->WriteFail("Missing argument"); |
| 108 | } |
| 109 | |
| 110 | // Special case: return all variables that we can. |
| 111 | if (args[1] == "all") { |
| 112 | for (const auto& [name, handlers] : kVariableMap) { |
| 113 | GetAllVars(device, name, handlers); |
| 114 | } |
| 115 | return device->WriteOkay(""); |
| 116 | } |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 117 | |
| 118 | // args[0] is command name, args[1] is variable. |
| 119 | auto found_variable = kVariableMap.find(args[1]); |
| 120 | if (found_variable == kVariableMap.end()) { |
David Anderson | 1fb3fd7 | 2018-08-31 14:40:22 -0700 | [diff] [blame] | 121 | return device->WriteFail("Unknown variable"); |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 122 | } |
| 123 | |
David Anderson | 1fb3fd7 | 2018-08-31 14:40:22 -0700 | [diff] [blame] | 124 | std::string message; |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 125 | std::vector<std::string> getvar_args(args.begin() + 2, args.end()); |
David Anderson | 0f62663 | 2018-08-31 16:44:25 -0700 | [diff] [blame] | 126 | if (!found_variable->second.get(device, getvar_args, &message)) { |
David Anderson | 1fb3fd7 | 2018-08-31 14:40:22 -0700 | [diff] [blame] | 127 | return device->WriteFail(message); |
| 128 | } |
| 129 | return device->WriteOkay(message); |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 130 | } |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 131 | |
David Anderson | 12211d1 | 2018-07-24 15:21:20 -0700 | [diff] [blame] | 132 | bool EraseHandler(FastbootDevice* device, const std::vector<std::string>& args) { |
| 133 | if (args.size() < 2) { |
| 134 | return device->WriteStatus(FastbootResult::FAIL, "Invalid arguments"); |
| 135 | } |
Hridya Valsaraju | d1e6231 | 2018-10-08 09:13:17 -0700 | [diff] [blame] | 136 | |
| 137 | if (GetDeviceLockStatus()) { |
| 138 | return device->WriteStatus(FastbootResult::FAIL, "Erase is not allowed on locked devices"); |
| 139 | } |
| 140 | |
David Anderson | 12211d1 | 2018-07-24 15:21:20 -0700 | [diff] [blame] | 141 | PartitionHandle handle; |
| 142 | if (!OpenPartition(device, args[1], &handle)) { |
| 143 | return device->WriteStatus(FastbootResult::FAIL, "Partition doesn't exist"); |
| 144 | } |
| 145 | if (wipe_block_device(handle.fd(), get_block_device_size(handle.fd())) == 0) { |
| 146 | return device->WriteStatus(FastbootResult::OKAY, "Erasing succeeded"); |
| 147 | } |
| 148 | return device->WriteStatus(FastbootResult::FAIL, "Erasing failed"); |
| 149 | } |
| 150 | |
Hridya Valsaraju | a15fe31 | 2018-09-14 13:58:21 -0700 | [diff] [blame] | 151 | bool OemCmdHandler(FastbootDevice* device, const std::vector<std::string>& args) { |
| 152 | auto fastboot_hal = device->fastboot_hal(); |
| 153 | if (!fastboot_hal) { |
| 154 | return device->WriteStatus(FastbootResult::FAIL, "Unable to open fastboot HAL"); |
| 155 | } |
| 156 | |
| 157 | Result ret; |
| 158 | auto ret_val = fastboot_hal->doOemCommand(args[0], [&](Result result) { ret = result; }); |
| 159 | if (!ret_val.isOk()) { |
| 160 | return device->WriteStatus(FastbootResult::FAIL, "Unable to do OEM command"); |
| 161 | } |
| 162 | if (ret.status != Status::SUCCESS) { |
| 163 | return device->WriteStatus(FastbootResult::FAIL, ret.message); |
| 164 | } |
| 165 | |
| 166 | return device->WriteStatus(FastbootResult::OKAY, ret.message); |
| 167 | } |
| 168 | |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 169 | bool DownloadHandler(FastbootDevice* device, const std::vector<std::string>& args) { |
| 170 | if (args.size() < 2) { |
| 171 | return device->WriteStatus(FastbootResult::FAIL, "size argument unspecified"); |
| 172 | } |
Hridya Valsaraju | d1e6231 | 2018-10-08 09:13:17 -0700 | [diff] [blame] | 173 | |
| 174 | if (GetDeviceLockStatus()) { |
| 175 | return device->WriteStatus(FastbootResult::FAIL, |
| 176 | "Download is not allowed on locked devices"); |
| 177 | } |
| 178 | |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 179 | // arg[0] is the command name, arg[1] contains size of data to be downloaded |
| 180 | unsigned int size; |
Hridya Valsaraju | aae84e8 | 2018-10-08 13:10:25 -0700 | [diff] [blame] | 181 | if (!android::base::ParseUint("0x" + args[1], &size, kMaxDownloadSizeDefault)) { |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 182 | return device->WriteStatus(FastbootResult::FAIL, "Invalid size"); |
| 183 | } |
David Anderson | 12211d1 | 2018-07-24 15:21:20 -0700 | [diff] [blame] | 184 | device->download_data().resize(size); |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 185 | if (!device->WriteStatus(FastbootResult::DATA, android::base::StringPrintf("%08x", size))) { |
| 186 | return false; |
| 187 | } |
| 188 | |
David Anderson | 12211d1 | 2018-07-24 15:21:20 -0700 | [diff] [blame] | 189 | if (device->HandleData(true, &device->download_data())) { |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 190 | return device->WriteStatus(FastbootResult::OKAY, ""); |
| 191 | } |
| 192 | |
| 193 | PLOG(ERROR) << "Couldn't download data"; |
| 194 | return device->WriteStatus(FastbootResult::FAIL, "Couldn't download data"); |
| 195 | } |
| 196 | |
David Anderson | 12211d1 | 2018-07-24 15:21:20 -0700 | [diff] [blame] | 197 | bool FlashHandler(FastbootDevice* device, const std::vector<std::string>& args) { |
| 198 | if (args.size() < 2) { |
| 199 | return device->WriteStatus(FastbootResult::FAIL, "Invalid arguments"); |
| 200 | } |
Hridya Valsaraju | dca328d | 2018-09-24 16:01:35 -0700 | [diff] [blame] | 201 | |
| 202 | if (GetDeviceLockStatus()) { |
| 203 | return device->WriteStatus(FastbootResult::FAIL, |
| 204 | "Flashing is not allowed on locked devices"); |
| 205 | } |
| 206 | |
David Anderson | 12211d1 | 2018-07-24 15:21:20 -0700 | [diff] [blame] | 207 | int ret = Flash(device, args[1]); |
| 208 | if (ret < 0) { |
| 209 | return device->WriteStatus(FastbootResult::FAIL, strerror(-ret)); |
| 210 | } |
| 211 | return device->WriteStatus(FastbootResult::OKAY, "Flashing succeeded"); |
| 212 | } |
| 213 | |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 214 | bool SetActiveHandler(FastbootDevice* device, const std::vector<std::string>& args) { |
| 215 | if (args.size() < 2) { |
| 216 | return device->WriteStatus(FastbootResult::FAIL, "Missing slot argument"); |
| 217 | } |
| 218 | |
Hridya Valsaraju | d1e6231 | 2018-10-08 09:13:17 -0700 | [diff] [blame] | 219 | if (GetDeviceLockStatus()) { |
| 220 | return device->WriteStatus(FastbootResult::FAIL, |
| 221 | "set_active command is not allowed on locked devices"); |
| 222 | } |
| 223 | |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 224 | // Slot suffix needs to be between 'a' and 'z'. |
| 225 | Slot slot; |
| 226 | if (!GetSlotNumber(args[1], &slot)) { |
| 227 | return device->WriteStatus(FastbootResult::FAIL, "Bad slot suffix"); |
| 228 | } |
| 229 | |
| 230 | // Non-A/B devices will not have a boot control HAL. |
| 231 | auto boot_control_hal = device->boot_control_hal(); |
| 232 | if (!boot_control_hal) { |
| 233 | return device->WriteStatus(FastbootResult::FAIL, |
| 234 | "Cannot set slot: boot control HAL absent"); |
| 235 | } |
| 236 | if (slot >= boot_control_hal->getNumberSlots()) { |
| 237 | return device->WriteStatus(FastbootResult::FAIL, "Slot out of range"); |
| 238 | } |
| 239 | CommandResult ret; |
| 240 | auto cb = [&ret](CommandResult result) { ret = result; }; |
| 241 | auto result = boot_control_hal->setActiveBootSlot(slot, cb); |
Hridya Valsaraju | 20bdf89 | 2018-10-10 11:02:19 -0700 | [diff] [blame] | 242 | if (result.isOk() && ret.success) { |
| 243 | // Save as slot suffix to match the suffix format as returned from |
| 244 | // the boot control HAL. |
| 245 | auto current_slot = "_" + args[1]; |
| 246 | device->set_active_slot(current_slot); |
| 247 | return device->WriteStatus(FastbootResult::OKAY, ""); |
| 248 | } |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 249 | return device->WriteStatus(FastbootResult::FAIL, "Unable to set slot"); |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | bool ShutDownHandler(FastbootDevice* device, const std::vector<std::string>& /* args */) { |
| 253 | auto result = device->WriteStatus(FastbootResult::OKAY, "Shutting down"); |
| 254 | android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,fastboot"); |
| 255 | device->CloseDevice(); |
| 256 | TEMP_FAILURE_RETRY(pause()); |
| 257 | return result; |
| 258 | } |
| 259 | |
| 260 | bool RebootHandler(FastbootDevice* device, const std::vector<std::string>& /* args */) { |
| 261 | auto result = device->WriteStatus(FastbootResult::OKAY, "Rebooting"); |
| 262 | android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,from_fastboot"); |
| 263 | device->CloseDevice(); |
| 264 | TEMP_FAILURE_RETRY(pause()); |
| 265 | return result; |
| 266 | } |
| 267 | |
| 268 | bool RebootBootloaderHandler(FastbootDevice* device, const std::vector<std::string>& /* args */) { |
| 269 | auto result = device->WriteStatus(FastbootResult::OKAY, "Rebooting bootloader"); |
| 270 | android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader"); |
| 271 | device->CloseDevice(); |
| 272 | TEMP_FAILURE_RETRY(pause()); |
| 273 | return result; |
| 274 | } |
| 275 | |
| 276 | bool RebootFastbootHandler(FastbootDevice* device, const std::vector<std::string>& /* args */) { |
| 277 | auto result = device->WriteStatus(FastbootResult::OKAY, "Rebooting fastboot"); |
| 278 | android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,fastboot"); |
| 279 | device->CloseDevice(); |
| 280 | TEMP_FAILURE_RETRY(pause()); |
| 281 | return result; |
| 282 | } |
| 283 | |
| 284 | static bool EnterRecovery() { |
| 285 | const char msg_switch_to_recovery = 'r'; |
| 286 | |
| 287 | android::base::unique_fd sock(socket(AF_UNIX, SOCK_STREAM, 0)); |
| 288 | if (sock < 0) { |
| 289 | PLOG(ERROR) << "Couldn't create sock"; |
| 290 | return false; |
| 291 | } |
| 292 | |
| 293 | struct sockaddr_un addr = {.sun_family = AF_UNIX}; |
| 294 | strncpy(addr.sun_path, "/dev/socket/recovery", sizeof(addr.sun_path) - 1); |
| 295 | if (connect(sock, (struct sockaddr*)&addr, sizeof(addr)) < 0) { |
| 296 | PLOG(ERROR) << "Couldn't connect to recovery"; |
| 297 | return false; |
| 298 | } |
| 299 | // Switch to recovery will not update the boot reason since it does not |
| 300 | // require a reboot. |
| 301 | auto ret = write(sock, &msg_switch_to_recovery, sizeof(msg_switch_to_recovery)); |
| 302 | if (ret != sizeof(msg_switch_to_recovery)) { |
| 303 | PLOG(ERROR) << "Couldn't write message to switch to recovery"; |
| 304 | return false; |
| 305 | } |
| 306 | |
| 307 | return true; |
| 308 | } |
| 309 | |
| 310 | bool RebootRecoveryHandler(FastbootDevice* device, const std::vector<std::string>& /* args */) { |
| 311 | auto status = true; |
| 312 | if (EnterRecovery()) { |
| 313 | status = device->WriteStatus(FastbootResult::OKAY, "Rebooting to recovery"); |
| 314 | } else { |
| 315 | status = device->WriteStatus(FastbootResult::FAIL, "Unable to reboot to recovery"); |
| 316 | } |
| 317 | device->CloseDevice(); |
| 318 | TEMP_FAILURE_RETRY(pause()); |
| 319 | return status; |
| 320 | } |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 321 | |
| 322 | // Helper class for opening a handle to a MetadataBuilder and writing the new |
| 323 | // partition table to the same place it was read. |
| 324 | class PartitionBuilder { |
| 325 | public: |
David Anderson | d25f1c3 | 2018-11-09 20:41:33 -0800 | [diff] [blame] | 326 | explicit PartitionBuilder(FastbootDevice* device, const std::string& partition_name); |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 327 | |
| 328 | bool Write(); |
| 329 | bool Valid() const { return !!builder_; } |
| 330 | MetadataBuilder* operator->() const { return builder_.get(); } |
| 331 | |
| 332 | private: |
David Anderson | 4d307b0 | 2018-12-17 17:07:34 -0800 | [diff] [blame] | 333 | FastbootDevice* device_; |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 334 | std::string super_device_; |
David Anderson | d25f1c3 | 2018-11-09 20:41:33 -0800 | [diff] [blame] | 335 | uint32_t slot_number_; |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 336 | std::unique_ptr<MetadataBuilder> builder_; |
| 337 | }; |
| 338 | |
David Anderson | 4d307b0 | 2018-12-17 17:07:34 -0800 | [diff] [blame] | 339 | PartitionBuilder::PartitionBuilder(FastbootDevice* device, const std::string& partition_name) |
| 340 | : device_(device) { |
David Anderson | d25f1c3 | 2018-11-09 20:41:33 -0800 | [diff] [blame] | 341 | std::string slot_suffix = GetSuperSlotSuffix(device, partition_name); |
| 342 | slot_number_ = SlotNumberForSlotSuffix(slot_suffix); |
| 343 | auto super_device = FindPhysicalPartition(fs_mgr_get_super_partition_name(slot_number_)); |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 344 | if (!super_device) { |
| 345 | return; |
| 346 | } |
| 347 | super_device_ = *super_device; |
David Anderson | d25f1c3 | 2018-11-09 20:41:33 -0800 | [diff] [blame] | 348 | builder_ = MetadataBuilder::New(super_device_, slot_number_); |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | bool PartitionBuilder::Write() { |
| 352 | std::unique_ptr<LpMetadata> metadata = builder_->Export(); |
| 353 | if (!metadata) { |
| 354 | return false; |
| 355 | } |
David Anderson | 4d307b0 | 2018-12-17 17:07:34 -0800 | [diff] [blame] | 356 | return UpdateAllPartitionMetadata(device_, super_device_, *metadata.get()); |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | bool CreatePartitionHandler(FastbootDevice* device, const std::vector<std::string>& args) { |
| 360 | if (args.size() < 3) { |
| 361 | return device->WriteFail("Invalid partition name and size"); |
| 362 | } |
| 363 | |
Hridya Valsaraju | dca328d | 2018-09-24 16:01:35 -0700 | [diff] [blame] | 364 | if (GetDeviceLockStatus()) { |
| 365 | return device->WriteStatus(FastbootResult::FAIL, "Command not available on locked devices"); |
| 366 | } |
| 367 | |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 368 | uint64_t partition_size; |
| 369 | std::string partition_name = args[1]; |
| 370 | if (!android::base::ParseUint(args[2].c_str(), &partition_size)) { |
| 371 | return device->WriteFail("Invalid partition size"); |
| 372 | } |
| 373 | |
David Anderson | d25f1c3 | 2018-11-09 20:41:33 -0800 | [diff] [blame] | 374 | PartitionBuilder builder(device, partition_name); |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 375 | if (!builder.Valid()) { |
| 376 | return device->WriteFail("Could not open super partition"); |
| 377 | } |
| 378 | // TODO(112433293) Disallow if the name is in the physical table as well. |
| 379 | if (builder->FindPartition(partition_name)) { |
| 380 | return device->WriteFail("Partition already exists"); |
| 381 | } |
| 382 | |
David Anderson | e5f2f06 | 2018-10-03 13:49:23 -0700 | [diff] [blame] | 383 | Partition* partition = builder->AddPartition(partition_name, 0); |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 384 | if (!partition) { |
| 385 | return device->WriteFail("Failed to add partition"); |
| 386 | } |
| 387 | if (!builder->ResizePartition(partition, partition_size)) { |
| 388 | builder->RemovePartition(partition_name); |
| 389 | return device->WriteFail("Not enough space for partition"); |
| 390 | } |
| 391 | if (!builder.Write()) { |
| 392 | return device->WriteFail("Failed to write partition table"); |
| 393 | } |
| 394 | return device->WriteOkay("Partition created"); |
| 395 | } |
| 396 | |
| 397 | bool DeletePartitionHandler(FastbootDevice* device, const std::vector<std::string>& args) { |
| 398 | if (args.size() < 2) { |
| 399 | return device->WriteFail("Invalid partition name and size"); |
| 400 | } |
| 401 | |
Hridya Valsaraju | dca328d | 2018-09-24 16:01:35 -0700 | [diff] [blame] | 402 | if (GetDeviceLockStatus()) { |
| 403 | return device->WriteStatus(FastbootResult::FAIL, "Command not available on locked devices"); |
| 404 | } |
| 405 | |
David Anderson | d25f1c3 | 2018-11-09 20:41:33 -0800 | [diff] [blame] | 406 | std::string partition_name = args[1]; |
| 407 | |
| 408 | PartitionBuilder builder(device, partition_name); |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 409 | if (!builder.Valid()) { |
| 410 | return device->WriteFail("Could not open super partition"); |
| 411 | } |
David Anderson | d25f1c3 | 2018-11-09 20:41:33 -0800 | [diff] [blame] | 412 | builder->RemovePartition(partition_name); |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 413 | if (!builder.Write()) { |
| 414 | return device->WriteFail("Failed to write partition table"); |
| 415 | } |
| 416 | return device->WriteOkay("Partition deleted"); |
| 417 | } |
| 418 | |
| 419 | bool ResizePartitionHandler(FastbootDevice* device, const std::vector<std::string>& args) { |
| 420 | if (args.size() < 3) { |
| 421 | return device->WriteFail("Invalid partition name and size"); |
| 422 | } |
| 423 | |
Hridya Valsaraju | dca328d | 2018-09-24 16:01:35 -0700 | [diff] [blame] | 424 | if (GetDeviceLockStatus()) { |
| 425 | return device->WriteStatus(FastbootResult::FAIL, "Command not available on locked devices"); |
| 426 | } |
| 427 | |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 428 | uint64_t partition_size; |
| 429 | std::string partition_name = args[1]; |
| 430 | if (!android::base::ParseUint(args[2].c_str(), &partition_size)) { |
| 431 | return device->WriteFail("Invalid partition size"); |
| 432 | } |
| 433 | |
David Anderson | d25f1c3 | 2018-11-09 20:41:33 -0800 | [diff] [blame] | 434 | PartitionBuilder builder(device, partition_name); |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 435 | if (!builder.Valid()) { |
| 436 | return device->WriteFail("Could not open super partition"); |
| 437 | } |
| 438 | |
| 439 | Partition* partition = builder->FindPartition(partition_name); |
| 440 | if (!partition) { |
| 441 | return device->WriteFail("Partition does not exist"); |
| 442 | } |
| 443 | if (!builder->ResizePartition(partition, partition_size)) { |
| 444 | return device->WriteFail("Not enough space to resize partition"); |
| 445 | } |
| 446 | if (!builder.Write()) { |
| 447 | return device->WriteFail("Failed to write partition table"); |
| 448 | } |
| 449 | return device->WriteOkay("Partition resized"); |
| 450 | } |
David Anderson | 38b3c7a | 2018-08-15 16:27:42 -0700 | [diff] [blame] | 451 | |
| 452 | bool UpdateSuperHandler(FastbootDevice* device, const std::vector<std::string>& args) { |
| 453 | if (args.size() < 2) { |
| 454 | return device->WriteFail("Invalid arguments"); |
| 455 | } |
Hridya Valsaraju | dca328d | 2018-09-24 16:01:35 -0700 | [diff] [blame] | 456 | |
| 457 | if (GetDeviceLockStatus()) { |
| 458 | return device->WriteStatus(FastbootResult::FAIL, "Command not available on locked devices"); |
| 459 | } |
| 460 | |
David Anderson | 38b3c7a | 2018-08-15 16:27:42 -0700 | [diff] [blame] | 461 | bool wipe = (args.size() >= 3 && args[2] == "wipe"); |
| 462 | return UpdateSuper(device, args[1], wipe); |
| 463 | } |
David Anderson | 1d504e3 | 2019-01-15 14:38:20 -0800 | [diff] [blame^] | 464 | |
| 465 | bool GsiHandler(FastbootDevice* device, const std::vector<std::string>& args) { |
| 466 | if (!android::gsi::IsGsiInstalled()) { |
| 467 | return device->WriteStatus(FastbootResult::FAIL, "No GSI is installed"); |
| 468 | } |
| 469 | if (args.size() != 2) { |
| 470 | return device->WriteFail("Invalid arguments"); |
| 471 | } |
| 472 | if (args[1] == "wipe") { |
| 473 | if (!android::gsi::UninstallGsi()) { |
| 474 | return device->WriteStatus(FastbootResult::FAIL, strerror(errno)); |
| 475 | } |
| 476 | } else if (args[1] == "disable") { |
| 477 | if (!android::gsi::DisableGsi()) { |
| 478 | return device->WriteStatus(FastbootResult::FAIL, strerror(errno)); |
| 479 | } |
| 480 | } |
| 481 | return device->WriteStatus(FastbootResult::OKAY, "Success"); |
| 482 | } |