Skip to content

Commit 0cf1acb

Browse files
miriampolzerCommit Bot
authored and
Commit Bot
committed
update_engine: Add powerwash flag to update status
Add a powerwash flag to the update status which is set to true if and only if a powerwash takes place. This will ensure that the user is informed of a pending powerwash exactly when it is going to happen. BUG=chromium:1070563 TEST=FEATURES=test emerge-amd64-generic update_engine channel change and update on test device Cq-Depend: chromium:2187671 Change-Id: I58314ecc7c9c2e64c906ef5b31cb780948196296 Reviewed-on: https://chromium-review.googlesource.com/c/aosp/platform/system/update_engine/+/2187672 Reviewed-by: Jae Hoon Kim <[email protected]> Reviewed-by: Amin Hassani <[email protected]> Tested-by: Miriam Polzer <[email protected]> Commit-Queue: Miriam Polzer <[email protected]>
1 parent e6b888c commit 0cf1acb

8 files changed

+44
-1
lines changed

client_library/client_dbus.cc

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ void ConvertToUpdateEngineStatus(const StatusResult& status,
5656
out_status->is_enterprise_rollback = status.is_enterprise_rollback();
5757
out_status->is_install = status.is_install();
5858
out_status->eol_date = status.eol_date();
59+
out_status->will_powerwash_after_reboot =
60+
status.will_powerwash_after_reboot();
5961
}
6062
} // namespace
6163

client_library/include/update_engine/update_status.h

+2
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ struct UpdateEngineStatus {
9090
bool is_install;
9191
// The end-of-life date of the device in the number of days since Unix Epoch.
9292
int64_t eol_date;
93+
// The system will powerwash once the update is applied.
94+
bool will_powerwash_after_reboot;
9395
};
9496

9597
} // namespace update_engine

dbus_service.cc

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ void ConvertToStatusResult(const UpdateEngineStatus& ue_status,
4747
out_status->set_is_enterprise_rollback(ue_status.is_enterprise_rollback);
4848
out_status->set_is_install(ue_status.is_install);
4949
out_status->set_eol_date(ue_status.eol_date);
50+
out_status->set_will_powerwash_after_reboot(
51+
ue_status.will_powerwash_after_reboot);
5052
}
5153
} // namespace
5254

update_attempter.cc

+6
Original file line numberDiff line numberDiff line change
@@ -1507,6 +1507,12 @@ bool UpdateAttempter::GetStatus(UpdateEngineStatus* out_status) {
15071507
system_state_->prefs()->GetString(kPrefsOmahaEolDate, &str_eol_date);
15081508
out_status->eol_date = StringToEolDate(str_eol_date);
15091509

1510+
// A powerwash will take place either if the install plan says it is required
1511+
// or if an enterprise rollback is happening.
1512+
out_status->will_powerwash_after_reboot =
1513+
install_plan_ &&
1514+
(install_plan_->powerwash_required || install_plan_->is_rollback);
1515+
15101516
return true;
15111517
}
15121518

update_attempter.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,11 @@ class UpdateAttempter : public ActionProcessorDelegate,
265265
FRIEND_TEST(UpdateAttempterTest, DisableDeltaUpdateIfNeededTest);
266266
FRIEND_TEST(UpdateAttempterTest, DownloadProgressAccumulationTest);
267267
FRIEND_TEST(UpdateAttempterTest, InstallSetsStatusIdle);
268-
FRIEND_TEST(UpdateAttempterTest, IsEnterpriseRollbackInGetStatusDefault);
269268
FRIEND_TEST(UpdateAttempterTest, IsEnterpriseRollbackInGetStatusTrue);
270269
FRIEND_TEST(UpdateAttempterTest, IsEnterpriseRollbackInGetStatusFalse);
270+
FRIEND_TEST(UpdateAttempterTest,
271+
PowerwashInGetStatusTrueBecausePowerwashRequired);
272+
FRIEND_TEST(UpdateAttempterTest, PowerwashInGetStatusTrueBecauseRollback);
271273
FRIEND_TEST(UpdateAttempterTest, MarkDeltaUpdateFailureTest);
272274
FRIEND_TEST(UpdateAttempterTest, PingOmahaTest);
273275
FRIEND_TEST(UpdateAttempterTest, ProcessingDoneInstallError);

update_attempter_unittest.cc

+24
Original file line numberDiff line numberDiff line change
@@ -2317,6 +2317,30 @@ TEST_F(UpdateAttempterTest, IsEnterpriseRollbackInGetStatusTrue) {
23172317
EXPECT_TRUE(status.is_enterprise_rollback);
23182318
}
23192319

2320+
TEST_F(UpdateAttempterTest, PowerwashInGetStatusDefault) {
2321+
UpdateEngineStatus status;
2322+
attempter_.GetStatus(&status);
2323+
EXPECT_FALSE(status.will_powerwash_after_reboot);
2324+
}
2325+
2326+
TEST_F(UpdateAttempterTest, PowerwashInGetStatusTrueBecausePowerwashRequired) {
2327+
attempter_.install_plan_.reset(new InstallPlan);
2328+
attempter_.install_plan_->powerwash_required = true;
2329+
2330+
UpdateEngineStatus status;
2331+
attempter_.GetStatus(&status);
2332+
EXPECT_TRUE(status.will_powerwash_after_reboot);
2333+
}
2334+
2335+
TEST_F(UpdateAttempterTest, PowerwashInGetStatusTrueBecauseRollback) {
2336+
attempter_.install_plan_.reset(new InstallPlan);
2337+
attempter_.install_plan_->is_rollback = true;
2338+
2339+
UpdateEngineStatus status;
2340+
attempter_.GetStatus(&status);
2341+
EXPECT_TRUE(status.will_powerwash_after_reboot);
2342+
}
2343+
23202344
TEST_F(UpdateAttempterTest, FutureEolTest) {
23212345
EolDate eol_date = std::numeric_limits<int64_t>::max();
23222346
EXPECT_CALL(*prefs_, GetString(kPrefsOmahaEolDate, _))

update_status_utils.cc

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ const char kLastCheckedTime[] = "LAST_CHECKED_TIME";
3838
const char kNewSize[] = "NEW_SIZE";
3939
const char kNewVersion[] = "NEW_VERSION";
4040
const char kProgress[] = "PROGRESS";
41+
const char kWillPowerwashAfterReboot[] = "WILL_POWERWASH_AFTER_REBOOT";
4142

4243
} // namespace
4344

@@ -84,6 +85,8 @@ string UpdateEngineStatusToString(const UpdateEngineStatus& status) {
8485
key_value_store.SetBoolean(kIsEnterpriseRollback,
8586
status.is_enterprise_rollback);
8687
key_value_store.SetBoolean(kIsInstall, status.is_install);
88+
key_value_store.SetBoolean(kWillPowerwashAfterReboot,
89+
status.will_powerwash_after_reboot);
8790

8891
return key_value_store.SaveToString();
8992
}

update_status_utils_unittest.cc

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ TEST(UpdateStatusUtilsTest, UpdateEngineStatusToStringTest) {
3535
.new_version = "12345.0.0",
3636
.is_enterprise_rollback = true,
3737
.is_install = true,
38+
.will_powerwash_after_reboot = true,
3839
};
3940
string print =
4041
R"(CURRENT_OP=UPDATE_STATUS_CHECKING_FOR_UPDATE
@@ -44,6 +45,7 @@ LAST_CHECKED_TIME=156000000
4445
NEW_SIZE=888
4546
NEW_VERSION=12345.0.0
4647
PROGRESS=0.5
48+
WILL_POWERWASH_AFTER_REBOOT=true
4749
)";
4850
EXPECT_EQ(print, UpdateEngineStatusToString(update_engine_status));
4951
}

0 commit comments

Comments
 (0)