summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunichi Uekawa <uekawa@google.com>2020-09-16 18:12:35 +0900
committerJunichi Uekawa <uekawa@google.com>2020-09-18 09:31:19 +0900
commitc5ced1e8e31614283d5a77fa43b4c37c87a0c221 (patch)
tree98b695789c78b8af03c940b241528ccff7f1d255
parentdfc059da55983a124a9b7fbb8daf44ad159b1112 (diff)
downloadplatform_system_apex-c5ced1e8e31614283d5a77fa43b4c37c87a0c221.tar.gz
platform_system_apex-c5ced1e8e31614283d5a77fa43b4c37c87a0c221.tar.bz2
platform_system_apex-c5ced1e8e31614283d5a77fa43b4c37c87a0c221.zip
apexd: Allow mounting on squashfs.
O_DIRECT does not work on squashfs file systems, and will return EINVAL. Try without O_DIRECT. On boards with `BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := squashfs` apexd will fail to loop mount. Unfortunately O_DIRECT is not possible because image is compressed on disk and we do need the buffering. Bug: 167309455 Bug: 168746790 Test: tast run kukui-arc-r arc.Boot.vm Change-Id: I9da1af535cb18cebed751ecab0e250780e2df377
-rw-r--r--apexd/apexd_loop.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/apexd/apexd_loop.cpp b/apexd/apexd_loop.cpp
index d97ab344..aaeeaff7 100644
--- a/apexd/apexd_loop.cpp
+++ b/apexd/apexd_loop.cpp
@@ -172,10 +172,11 @@ Result<void> configureLoopDevice(const int device_fd, const std::string& target,
if (target_fd.get() == -1) {
struct statfs stbuf;
int saved_errno = errno;
- // let's give another try with buffered I/O for EROFS
+ // let's give another try with buffered I/O for EROFS and squashfs
if (statfs(target.c_str(), &stbuf) != 0 ||
- stbuf.f_type != EROFS_SUPER_MAGIC_V1) {
- return Error(saved_errno) << "Failed to open " << target;
+ (stbuf.f_type != EROFS_SUPER_MAGIC_V1 &&
+ stbuf.f_type != SQUASHFS_MAGIC)) {
+ return Error(saved_errno) << "Failed to open " << target;
}
LOG(WARNING) << "Fallback to buffered I/O for " << target;
target_fd.reset(open(target.c_str(), O_RDONLY | O_CLOEXEC));