summaryrefslogtreecommitdiffstats
path: root/uncrypt
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2015-03-13 19:44:21 +0100
committerEthan Yonker <dees_troy@teamw.in>2015-03-13 19:44:21 +0100
commitf5c2d6ce24d77aa7c38544c6d2f55400237fdbe5 (patch)
tree0022cc15b5011d8eb5940724b3f4cb7acab2594e /uncrypt
parentAdd UI for entering pattern for device decryption (diff)
parentmerge in lmp-mr1-release history after reset to lmp-mr1-dev (diff)
downloadandroid_bootable_recovery-f5c2d6ce24d77aa7c38544c6d2f55400237fdbe5.tar
android_bootable_recovery-f5c2d6ce24d77aa7c38544c6d2f55400237fdbe5.tar.gz
android_bootable_recovery-f5c2d6ce24d77aa7c38544c6d2f55400237fdbe5.tar.bz2
android_bootable_recovery-f5c2d6ce24d77aa7c38544c6d2f55400237fdbe5.tar.lz
android_bootable_recovery-f5c2d6ce24d77aa7c38544c6d2f55400237fdbe5.tar.xz
android_bootable_recovery-f5c2d6ce24d77aa7c38544c6d2f55400237fdbe5.tar.zst
android_bootable_recovery-f5c2d6ce24d77aa7c38544c6d2f55400237fdbe5.zip
Diffstat (limited to 'uncrypt')
-rw-r--r--uncrypt/uncrypt.c23
1 files changed, 18 insertions, 5 deletions
diff --git a/uncrypt/uncrypt.c b/uncrypt/uncrypt.c
index 189fa57e1..7fb0989a7 100644
--- a/uncrypt/uncrypt.c
+++ b/uncrypt/uncrypt.c
@@ -164,7 +164,12 @@ char* parse_recovery_command_file()
if (f == NULL) {
return NULL;
}
- FILE* fo = fopen(RECOVERY_COMMAND_FILE_TMP, "w");
+ int fd = open(RECOVERY_COMMAND_FILE_TMP, O_WRONLY | O_CREAT | O_SYNC, S_IRUSR | S_IWUSR);
+ if (fd < 0) {
+ ALOGE("failed to open %s\n", RECOVERY_COMMAND_FILE_TMP);
+ return NULL;
+ }
+ FILE* fo = fdopen(fd, "w");
while (fgets(temp, sizeof(temp), f)) {
printf("read: %s", temp);
@@ -175,6 +180,7 @@ char* parse_recovery_command_file()
fputs(temp, fo);
}
fclose(f);
+ fsync(fd);
fclose(fo);
if (fn) {
@@ -190,7 +196,12 @@ int produce_block_map(const char* path, const char* map_file, const char* blk_de
struct stat sb;
int ret;
- FILE* mapf = fopen(map_file, "w");
+ int mapfd = open(map_file, O_WRONLY | O_CREAT | O_SYNC, S_IRUSR | S_IWUSR);
+ if (mapfd < 0) {
+ ALOGE("failed to open %s\n", map_file);
+ return -1;
+ }
+ FILE* mapf = fdopen(mapfd, "w");
ret = stat(path, &sb);
if (ret != 0) {
@@ -232,7 +243,7 @@ int produce_block_map(const char* path, const char* map_file, const char* blk_de
int wfd = -1;
if (encrypted) {
- wfd = open(blk_dev, O_WRONLY);
+ wfd = open(blk_dev, O_WRONLY | O_SYNC);
if (wfd < 0) {
ALOGE("failed to open fd for writing: %s\n", strerror(errno));
return -1;
@@ -302,9 +313,11 @@ int produce_block_map(const char* path, const char* map_file, const char* blk_de
fprintf(mapf, "%d %d\n", ranges[i*2], ranges[i*2+1]);
}
+ fsync(mapfd);
fclose(mapf);
close(fd);
if (encrypted) {
+ fsync(wfd);
close(wfd);
}
@@ -318,7 +331,7 @@ void wipe_misc() {
struct fstab_rec* v = &fstab->recs[i];
if (!v->mount_point) continue;
if (strcmp(v->mount_point, "/misc") == 0) {
- int fd = open(v->blk_device, O_WRONLY);
+ int fd = open(v->blk_device, O_WRONLY | O_SYNC);
uint8_t zeroes[1088]; // sizeof(bootloader_message) from recovery
memset(zeroes, 0, sizeof(zeroes));
@@ -333,7 +346,7 @@ void wipe_misc() {
written += w;
}
}
-
+ fsync(fd);
close(fd);
}
}