summaryrefslogtreecommitdiffstats
path: root/partition.cpp
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2014-02-12 15:56:02 +0100
committerGerrit Code Review <gerrit2@gerrit>2014-02-12 15:56:02 +0100
commit374cd713d44dc62878f34f36d36948689f53e85a (patch)
tree99279d73137c462f9506106020cab68c89d7e688 /partition.cpp
parentFix ext4 wiping when no SELinux contexts are defined (diff)
parentMove DataManager functions out of twrpTar.cpp (diff)
downloadandroid_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.tar
android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.tar.gz
android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.tar.bz2
android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.tar.lz
android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.tar.xz
android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.tar.zst
android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.zip
Diffstat (limited to 'partition.cpp')
-rw-r--r--partition.cpp46
1 files changed, 15 insertions, 31 deletions
diff --git a/partition.cpp b/partition.cpp
index b597695e2..74271922f 100644
--- a/partition.cpp
+++ b/partition.cpp
@@ -1593,6 +1593,9 @@ bool TWPartition::Backup_Tar(string backup_folder) {
tar.use_encryption = use_encryption;
if (Use_Userdata_Encryption)
tar.userdata_encryption = use_encryption;
+ string Password;
+ DataManager::GetValue("tw_backup_password", Password);
+ tar.setpassword(Password);
} else {
use_encryption = false;
}
@@ -1681,37 +1684,18 @@ bool TWPartition::Restore_Tar(string restore_folder, string Restore_File_System)
return false;
Full_FileName = restore_folder + "/" + Backup_FileName;
- /*if (!TWFunc::Path_Exists(Full_FileName)) {
- if (!TWFunc::Path_Exists(Full_FileName)) {
- // Backup is multiple archives
- LOGINFO("Backup is multiple archives.\n");
- sprintf(split_index, "%03i", index);
- Full_FileName = restore_folder + "/" + Backup_FileName + split_index;
- while (TWFunc::Path_Exists(Full_FileName)) {
- index++;
- gui_print("Restoring archive %i...\n", index);
- LOGINFO("Restoring '%s'...\n", Full_FileName.c_str());
- twrpTar tar;
- tar.setdir("/");
- tar.setfn(Full_FileName);
- if (tar.extractTarFork() != 0)
- return false;
- sprintf(split_index, "%03i", index);
- Full_FileName = restore_folder + "/" + Backup_FileName + split_index;
- }
- if (index == 0) {
- LOGERR("Error locating restore file: '%s'\n", Full_FileName.c_str());
- return false;
- }
- }
- } else {*/
- twrpTar tar;
- tar.setdir(Backup_Path);
- tar.setfn(Full_FileName);
- tar.backup_name = Backup_Name;
- if (tar.extractTarFork() != 0)
- return false;
- //}
+ twrpTar tar;
+ tar.setdir(Backup_Path);
+ tar.setfn(Full_FileName);
+ tar.backup_name = Backup_Name;
+#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
+ string Password;
+ DataManager::GetValue("tw_restore_password", Password);
+ if (!Password.empty())
+ tar.setpassword(Password);
+#endif
+ if (tar.extractTarFork() != 0)
+ return false;
return true;
}