diff options
author | Tao Bao <tbao@google.com> | 2015-08-04 20:24:53 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-08-04 20:24:53 +0200 |
commit | 27c1ab2095f25253d0920eb6afe7cd2791a708dc (patch) | |
tree | 121b450c98df90d13ed36b4e2ed0270f0a69f4a6 /updater/blockimg.cpp | |
parent | Merge "recovery: Allow "Mount /system" for system_root_image." (diff) | |
parent | udpater: Call fsync() after rename(). (diff) | |
download | android_bootable_recovery-27c1ab2095f25253d0920eb6afe7cd2791a708dc.tar android_bootable_recovery-27c1ab2095f25253d0920eb6afe7cd2791a708dc.tar.gz android_bootable_recovery-27c1ab2095f25253d0920eb6afe7cd2791a708dc.tar.bz2 android_bootable_recovery-27c1ab2095f25253d0920eb6afe7cd2791a708dc.tar.lz android_bootable_recovery-27c1ab2095f25253d0920eb6afe7cd2791a708dc.tar.xz android_bootable_recovery-27c1ab2095f25253d0920eb6afe7cd2791a708dc.tar.zst android_bootable_recovery-27c1ab2095f25253d0920eb6afe7cd2791a708dc.zip |
Diffstat (limited to 'updater/blockimg.cpp')
-rw-r--r-- | updater/blockimg.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp index 77117db05..a7821f362 100644 --- a/updater/blockimg.cpp +++ b/updater/blockimg.cpp @@ -19,6 +19,7 @@ #include <dirent.h> #include <fcntl.h> #include <inttypes.h> +#include <libgen.h> #include <linux/fs.h> #include <pthread.h> #include <stdarg.h> @@ -686,6 +687,7 @@ static int WriteStash(const char* base, const char* id, int blocks, uint8_t* buf char *cn = NULL; int fd = -1; int rc = -1; + int dfd = -1; int res; struct stat st; @@ -744,6 +746,20 @@ static int WriteStash(const char* base, const char* id, int blocks, uint8_t* buf goto wsout; } + const char* dname; + dname = dirname(cn); + dfd = TEMP_FAILURE_RETRY(open(dname, O_RDONLY | O_DIRECTORY)); + + if (dfd == -1) { + fprintf(stderr, "failed to open \"%s\" failed: %s\n", dname, strerror(errno)); + goto wsout; + } + + if (fsync(dfd) == -1) { + fprintf(stderr, "fsync \"%s\" failed: %s\n", dname, strerror(errno)); + goto wsout; + } + rc = 0; wsout: @@ -751,6 +767,10 @@ wsout: close(fd); } + if (dfd != -1) { + close(dfd); + } + if (fn) { free(fn); } |