Make the deleteAllKey feature aware of the DSU mode
Currently, the vold detects the factory reset by checking the metadata encryption key. This logic is only valid when the device is not in DSU mode. Bug: 199222795 Test: run DSU installation on a Pixel device Change-Id: Ib40bd44d2ef7c872eba177c9ccfefac8934a49e6
This commit is contained in:
parent
530329222f
commit
cbc1bdba59
1 changed files with 3 additions and 1 deletions
|
@ -113,7 +113,9 @@ static bool read_key(const std::string& metadata_key_dir, const KeyGeneration& g
|
|||
auto dir = metadata_key_dir + "/key";
|
||||
LOG(DEBUG) << "metadata_key_dir/key: " << dir;
|
||||
if (!MkdirsSync(dir, 0700)) return false;
|
||||
if (!pathExists(dir)) {
|
||||
auto in_dsu = android::base::GetBoolProperty("ro.gsid.image_running", false);
|
||||
// !pathExists(dir) does not imply there's a factory reset when in DSU mode.
|
||||
if (!pathExists(dir) && !in_dsu) {
|
||||
auto delete_all = android::base::GetBoolProperty(
|
||||
"ro.crypto.metadata_init_delete_all_keys.enabled", false);
|
||||
if (delete_all) {
|
||||
|
|
Loading…
Reference in a new issue