summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2019-07-10 23:27:27 +0200
committerandroid-build-merger <android-build-merger@google.com>2019-07-10 23:27:27 +0200
commitc05656e15c08c88f7e6b1f9bd5c7cb3ad5850797 (patch)
tree6cce97f4c06f7f984a2ec20a920ca097ae60114d
parentMerge "Add a new key_pressed_mutex" am: 33bb113af2 am: e99f4e88a2 (diff)
parentMerge "minadbd sends heartbeat to rescue service for getprop command." am: 89cc79cbb6 (diff)
downloadandroid_bootable_recovery-c05656e15c08c88f7e6b1f9bd5c7cb3ad5850797.tar
android_bootable_recovery-c05656e15c08c88f7e6b1f9bd5c7cb3ad5850797.tar.gz
android_bootable_recovery-c05656e15c08c88f7e6b1f9bd5c7cb3ad5850797.tar.bz2
android_bootable_recovery-c05656e15c08c88f7e6b1f9bd5c7cb3ad5850797.tar.lz
android_bootable_recovery-c05656e15c08c88f7e6b1f9bd5c7cb3ad5850797.tar.xz
android_bootable_recovery-c05656e15c08c88f7e6b1f9bd5c7cb3ad5850797.tar.zst
android_bootable_recovery-c05656e15c08c88f7e6b1f9bd5c7cb3ad5850797.zip
-rw-r--r--install/adb_install.cpp4
-rw-r--r--minadbd/minadbd_services.cpp8
-rw-r--r--minadbd/minadbd_types.h1
3 files changed, 12 insertions, 1 deletions
diff --git a/install/adb_install.cpp b/install/adb_install.cpp
index 37280a34c..ed664429a 100644
--- a/install/adb_install.cpp
+++ b/install/adb_install.cpp
@@ -367,11 +367,13 @@ InstallResult ApplyFromAdb(Device* device, bool rescue_mode, Device::BuiltinActi
"\n\nNow send the package you want to apply\n"
"to the device with \"adb sideload <filename>\"...\n");
} else {
- ui->Print("\n\nWaiting for rescue commands...\n");
command_map.emplace(MinadbdCommand::kWipeData, [&device]() {
bool result = WipeData(device, false);
return std::make_pair(result, true);
});
+ command_map.emplace(MinadbdCommand::kNoOp, []() { return std::make_pair(true, true); });
+
+ ui->Print("\n\nWaiting for rescue commands...\n");
}
CreateMinadbdServiceAndExecuteCommands(ui, command_map, rescue_mode);
diff --git a/minadbd/minadbd_services.cpp b/minadbd/minadbd_services.cpp
index 5792c7a17..c31afbe06 100644
--- a/minadbd/minadbd_services.cpp
+++ b/minadbd/minadbd_services.cpp
@@ -189,6 +189,14 @@ static void RescueGetpropHostService(unique_fd sfd, const std::string& prop) {
if (!android::base::WriteFully(sfd, result.data(), result.size())) {
exit(kMinadbdHostSocketIOError);
}
+
+ // Send heartbeat signal to keep the rescue service alive.
+ if (!WriteCommandToFd(MinadbdCommand::kNoOp, minadbd_socket)) {
+ exit(kMinadbdSocketIOError);
+ }
+ if (MinadbdCommandStatus status; !WaitForCommandStatus(minadbd_socket, &status)) {
+ exit(kMinadbdMessageFormatError);
+ }
}
// Reboots into the given target. We don't reboot directly from minadbd, but going through recovery
diff --git a/minadbd/minadbd_types.h b/minadbd/minadbd_types.h
index 99fd45e83..002523f1f 100644
--- a/minadbd/minadbd_types.h
+++ b/minadbd/minadbd_types.h
@@ -53,6 +53,7 @@ enum class MinadbdCommand : uint32_t {
kRebootRescue = 6,
kWipeCache = 7,
kWipeData = 8,
+ kNoOp = 9,
// Last but invalid command.
kError,