diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-07-31 02:10:34 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-07-31 02:10:34 +0200 |
commit | 610712101bb1618629cb7c5dd1570b71b9aaa5ab (patch) | |
tree | e87a0f47e888a4b527a17c68e7b142128afa6274 /recovery.cpp | |
parent | Merge "Add more specific error codes for uncrypt failures" (diff) | |
parent | otautil: Clean up dirCreateHierarchy(). (diff) | |
download | android_bootable_recovery-610712101bb1618629cb7c5dd1570b71b9aaa5ab.tar android_bootable_recovery-610712101bb1618629cb7c5dd1570b71b9aaa5ab.tar.gz android_bootable_recovery-610712101bb1618629cb7c5dd1570b71b9aaa5ab.tar.bz2 android_bootable_recovery-610712101bb1618629cb7c5dd1570b71b9aaa5ab.tar.lz android_bootable_recovery-610712101bb1618629cb7c5dd1570b71b9aaa5ab.tar.xz android_bootable_recovery-610712101bb1618629cb7c5dd1570b71b9aaa5ab.tar.zst android_bootable_recovery-610712101bb1618629cb7c5dd1570b71b9aaa5ab.zip |
Diffstat (limited to 'recovery.cpp')
-rw-r--r-- | recovery.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/recovery.cpp b/recovery.cpp index 8f3e9bdea..233e56246 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -178,19 +178,19 @@ struct selabel_handle* sehandle; * 7b. the user reboots (pulling the battery, etc) into the main system */ -// open a given path, mounting partitions as necessary -FILE* fopen_path(const char *path, const char *mode) { - if (ensure_path_mounted(path) != 0) { - LOG(ERROR) << "Can't mount " << path; - return NULL; - } - - // When writing, try to create the containing directory, if necessary. - // Use generous permissions, the system (init.rc) will reset them. - if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle); +// Open a given path, mounting partitions as necessary. +FILE* fopen_path(const char* path, const char* mode) { + if (ensure_path_mounted(path) != 0) { + LOG(ERROR) << "Can't mount " << path; + return nullptr; + } - FILE *fp = fopen(path, mode); - return fp; + // When writing, try to create the containing directory, if necessary. Use generous permissions, + // the system (init.rc) will reset them. + if (strchr("wa", mode[0])) { + mkdir_recursively(path, 0777, true, sehandle); + } + return fopen(path, mode); } // close a file, log an error if the error indicator is set @@ -593,7 +593,7 @@ static bool erase_volume(const char* volume) { if (is_cache) { // Re-create the log dir and write back the log entries. if (ensure_path_mounted(CACHE_LOG_DIR) == 0 && - dirCreateHierarchy(CACHE_LOG_DIR, 0777, nullptr, false, sehandle) == 0) { + mkdir_recursively(CACHE_LOG_DIR, 0777, false, sehandle) == 0) { for (const auto& log : log_files) { if (!android::base::WriteStringToFile(log.data, log.name, log.sb.st_mode, log.sb.st_uid, log.sb.st_gid)) { |