From ce67546112ca718d5bbaf9fecadf3652f9c63df5 Mon Sep 17 00:00:00 2001 From: Dees_Troy Date: Wed, 9 Jan 2013 19:48:21 +0000 Subject: Fix wiping problems and save ecrypt key Fix problems with the wiping of data/media devices Save and restore the ecryptfs key for external sdcard on Samsung encrypted devices. --- twrp-functions.cpp | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) (limited to 'twrp-functions.cpp') diff --git a/twrp-functions.cpp b/twrp-functions.cpp index 53a13f661..d7596b8a0 100644 --- a/twrp-functions.cpp +++ b/twrp-functions.cpp @@ -401,38 +401,38 @@ void TWFunc::check_and_run_script(const char* script_file, const char* display_n } int TWFunc::removeDir(const string path, bool skipParent) { - DIR *d = opendir(path.c_str()); - int r = 0; - string new_path; + DIR *d = opendir(path.c_str()); + int r = 0; + string new_path; - if (d == NULL) { - LOGE("Error opening '%s'\n", path.c_str()); - return -1; - } + if (d == NULL) { + LOGE("Error opening '%s'\n", path.c_str()); + return -1; + } - if (d) { - struct dirent *p; - while (!r && (p = readdir(d))) { + if (d) { + struct dirent *p; + while (!r && (p = readdir(d))) { LOGI("checking :%s\n", p->d_name); - if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, "..")) - continue; - new_path = path + "/"; - new_path.append(p->d_name); - if (p->d_type == DT_DIR) { - r = removeDir(new_path, true); - if (!r) { + if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, "..")) + continue; + new_path = path + "/"; + new_path.append(p->d_name); + if (p->d_type == DT_DIR) { + r = removeDir(new_path, true); + if (!r) { if (p->d_type == DT_DIR) r = rmdir(new_path.c_str()); else LOGI("Unable to removeDir '%s': %s\n", new_path.c_str(), strerror(errno)); } - } else { - r = unlink(new_path.c_str()); - if (!r) - LOGI("Unable to unlink '%s'\n", new_path.c_str()); - } - } - closedir(d); + } else if (p->d_type == DT_REG || p->d_type == DT_LNK) { + r = unlink(new_path.c_str()); + if (!r) + LOGI("Unable to unlink '%s'\n", new_path.c_str()); + } + } + closedir(d); if (!r) { if (skipParent) @@ -440,8 +440,8 @@ int TWFunc::removeDir(const string path, bool skipParent) { else r = rmdir(path.c_str()); } - } - return r; + } + return r; } int TWFunc::copy_file(string src, string dst, int mode) { -- cgit v1.2.3