summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-06-01 18:16:15 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-06-01 18:16:15 +0200
commit497aef84d532871a1b2ec8894e3832b799fc36c8 (patch)
treed30c54a4a9c7859c38ed21505d44527b3cf8a969
parentam 7132e792: am b5dabd25: Really don\'t use TEMP_FAILURE_RETRY with close in recovery. (diff)
parentam 02b64725: Merge "uncrypt: Write status when it reboots to factory reset" into mnc-dev (diff)
downloadandroid_bootable_recovery-497aef84d532871a1b2ec8894e3832b799fc36c8.tar
android_bootable_recovery-497aef84d532871a1b2ec8894e3832b799fc36c8.tar.gz
android_bootable_recovery-497aef84d532871a1b2ec8894e3832b799fc36c8.tar.bz2
android_bootable_recovery-497aef84d532871a1b2ec8894e3832b799fc36c8.tar.lz
android_bootable_recovery-497aef84d532871a1b2ec8894e3832b799fc36c8.tar.xz
android_bootable_recovery-497aef84d532871a1b2ec8894e3832b799fc36c8.tar.zst
android_bootable_recovery-497aef84d532871a1b2ec8894e3832b799fc36c8.zip
-rw-r--r--uncrypt/uncrypt.cpp17
1 files changed, 10 insertions, 7 deletions
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp
index efdbdac3c..20a272949 100644
--- a/uncrypt/uncrypt.cpp
+++ b/uncrypt/uncrypt.cpp
@@ -431,26 +431,29 @@ int main(int argc, char** argv) {
wipe_misc();
reboot_to_recovery();
} else {
- std::string package;
+ // The pipe has been created by the system server.
+ int status_fd = open(status_file.c_str(), O_WRONLY | O_CREAT | O_SYNC, S_IRUSR | S_IWUSR);
+ if (status_fd == -1) {
+ ALOGE("failed to open pipe \"%s\": %s\n", status_file.c_str(), strerror(errno));
+ return 1;
+ }
+
if (argc == 3) {
// when command-line args are given this binary is being used
// for debugging.
input_path = argv[1];
map_file = argv[2];
} else {
+ std::string package;
if (!find_uncrypt_package(package)) {
+ android::base::WriteStringToFd("-1\n", status_fd);
+ close(status_fd);
return 1;
}
input_path = package.c_str();
map_file = cache_block_map.c_str();
}
- // The pipe has been created by the system server.
- int status_fd = open(status_file.c_str(), O_WRONLY | O_CREAT | O_SYNC, S_IRUSR | S_IWUSR);
- if (status_fd == -1) {
- ALOGE("failed to open pipe \"%s\": %s\n", status_file.c_str(), strerror(errno));
- return 1;
- }
int status = uncrypt(input_path, map_file, status_fd);
if (status != 0) {
android::base::WriteStringToFd("-1\n", status_fd);