Wei Wang | b72a15a | 2017-03-02 13:46:37 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Tao Bao | ed13819 | 2017-05-01 22:30:39 -0700 | [diff] [blame] | 16 | |
Wei Wang | b72a15a | 2017-03-02 13:46:37 -0800 | [diff] [blame] | 17 | #include <unistd.h> |
Tao Bao | ed13819 | 2017-05-01 22:30:39 -0700 | [diff] [blame] | 18 | |
xunchang | 5e6832a | 2019-03-15 16:04:32 -0700 | [diff] [blame] | 19 | #include <memory> |
Tao Bao | 91a7aa4 | 2017-05-01 15:57:38 -0700 | [diff] [blame] | 20 | #include <string> |
| 21 | #include <vector> |
| 22 | |
| 23 | #include <android-base/file.h> |
| 24 | #include <android-base/strings.h> |
Wei Wang | b72a15a | 2017-03-02 13:46:37 -0800 | [diff] [blame] | 25 | #include <gtest/gtest.h> |
| 26 | |
xunchang | 5e6832a | 2019-03-15 16:04:32 -0700 | [diff] [blame] | 27 | #include "fuse_provider.h" |
Tao Bao | ed13819 | 2017-05-01 22:30:39 -0700 | [diff] [blame] | 28 | #include "fuse_sideload.h" |
| 29 | |
| 30 | TEST(SideloadTest, fuse_device) { |
| 31 | ASSERT_EQ(0, access("/dev/fuse", R_OK | W_OK)); |
| 32 | } |
| 33 | |
Tao Bao | 2be9737 | 2019-04-15 12:45:50 -0700 | [diff] [blame] | 34 | class FuseTestDataProvider : public FuseDataProvider { |
| 35 | public: |
| 36 | FuseTestDataProvider(uint64_t file_size, uint32_t block_size) |
| 37 | : FuseDataProvider(file_size, block_size) {} |
| 38 | |
| 39 | private: |
| 40 | bool ReadBlockAlignedData(uint8_t*, uint32_t, uint32_t) const override { |
| 41 | return true; |
| 42 | } |
Tianjie Xu | f6158eb | 2019-06-11 16:09:07 -0700 | [diff] [blame] | 43 | |
| 44 | bool Valid() const override { |
| 45 | return true; |
| 46 | } |
Tao Bao | 2be9737 | 2019-04-15 12:45:50 -0700 | [diff] [blame] | 47 | }; |
| 48 | |
Tao Bao | ed13819 | 2017-05-01 22:30:39 -0700 | [diff] [blame] | 49 | TEST(SideloadTest, run_fuse_sideload_wrong_parameters) { |
Tao Bao | 2be9737 | 2019-04-15 12:45:50 -0700 | [diff] [blame] | 50 | auto provider_small_block = std::make_unique<FuseTestDataProvider>(4096, 4095); |
xunchang | 5e6832a | 2019-03-15 16:04:32 -0700 | [diff] [blame] | 51 | ASSERT_EQ(-1, run_fuse_sideload(std::move(provider_small_block))); |
Tao Bao | ed13819 | 2017-05-01 22:30:39 -0700 | [diff] [blame] | 52 | |
Tao Bao | 2be9737 | 2019-04-15 12:45:50 -0700 | [diff] [blame] | 53 | auto provider_large_block = std::make_unique<FuseTestDataProvider>(4096, (1 << 22) + 1); |
xunchang | 5e6832a | 2019-03-15 16:04:32 -0700 | [diff] [blame] | 54 | ASSERT_EQ(-1, run_fuse_sideload(std::move(provider_large_block))); |
Tao Bao | ed13819 | 2017-05-01 22:30:39 -0700 | [diff] [blame] | 55 | |
Tao Bao | 2be9737 | 2019-04-15 12:45:50 -0700 | [diff] [blame] | 56 | auto provider_too_many_blocks = |
| 57 | std::make_unique<FuseTestDataProvider>(((1 << 18) + 1) * 4096, 4096); |
xunchang | 5e6832a | 2019-03-15 16:04:32 -0700 | [diff] [blame] | 58 | ASSERT_EQ(-1, run_fuse_sideload(std::move(provider_too_many_blocks))); |
Tao Bao | 91a7aa4 | 2017-05-01 15:57:38 -0700 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | TEST(SideloadTest, run_fuse_sideload) { |
| 62 | const std::vector<std::string> blocks = { |
| 63 | std::string(2048, 'a') + std::string(2048, 'b'), |
| 64 | std::string(2048, 'c') + std::string(2048, 'd'), |
| 65 | std::string(2048, 'e') + std::string(2048, 'f'), |
| 66 | std::string(2048, 'g') + std::string(2048, 'h'), |
| 67 | }; |
| 68 | const std::string content = android::base::Join(blocks, ""); |
| 69 | ASSERT_EQ(16384U, content.size()); |
| 70 | |
xunchang | 5e6832a | 2019-03-15 16:04:32 -0700 | [diff] [blame] | 71 | TemporaryFile temp_file; |
| 72 | ASSERT_TRUE(android::base::WriteStringToFile(content, temp_file.path)); |
Tao Bao | 91a7aa4 | 2017-05-01 15:57:38 -0700 | [diff] [blame] | 73 | |
xunchang | 5e6832a | 2019-03-15 16:04:32 -0700 | [diff] [blame] | 74 | auto provider = std::make_unique<FuseFileDataProvider>(temp_file.path, 4096); |
| 75 | ASSERT_TRUE(provider->Valid()); |
Tao Bao | 91a7aa4 | 2017-05-01 15:57:38 -0700 | [diff] [blame] | 76 | TemporaryDir mount_point; |
| 77 | pid_t pid = fork(); |
| 78 | if (pid == 0) { |
xunchang | 5e6832a | 2019-03-15 16:04:32 -0700 | [diff] [blame] | 79 | ASSERT_EQ(0, run_fuse_sideload(std::move(provider), mount_point.path)); |
Tao Bao | 91a7aa4 | 2017-05-01 15:57:38 -0700 | [diff] [blame] | 80 | _exit(EXIT_SUCCESS); |
| 81 | } |
| 82 | |
| 83 | std::string package = std::string(mount_point.path) + "/" + FUSE_SIDELOAD_HOST_FILENAME; |
| 84 | int status; |
| 85 | static constexpr int kSideloadInstallTimeout = 10; |
| 86 | for (int i = 0; i < kSideloadInstallTimeout; ++i) { |
| 87 | ASSERT_NE(-1, waitpid(pid, &status, WNOHANG)); |
| 88 | |
| 89 | struct stat sb; |
| 90 | if (stat(package.c_str(), &sb) == 0) { |
| 91 | break; |
| 92 | } |
| 93 | |
| 94 | if (errno == ENOENT && i < kSideloadInstallTimeout - 1) { |
| 95 | sleep(1); |
| 96 | continue; |
| 97 | } |
| 98 | FAIL() << "Timed out waiting for the fuse-provided package."; |
| 99 | } |
| 100 | |
| 101 | std::string content_via_fuse; |
| 102 | ASSERT_TRUE(android::base::ReadFileToString(package, &content_via_fuse)); |
| 103 | ASSERT_EQ(content, content_via_fuse); |
| 104 | |
| 105 | std::string exit_flag = std::string(mount_point.path) + "/" + FUSE_SIDELOAD_HOST_EXIT_FLAG; |
| 106 | struct stat sb; |
| 107 | ASSERT_EQ(0, stat(exit_flag.c_str(), &sb)); |
| 108 | |
| 109 | waitpid(pid, &status, 0); |
| 110 | ASSERT_EQ(0, WEXITSTATUS(status)); |
| 111 | ASSERT_EQ(EXIT_SUCCESS, WEXITSTATUS(status)); |
Wei Wang | b72a15a | 2017-03-02 13:46:37 -0800 | [diff] [blame] | 112 | } |