// // Copyright (C) 2018 The Android Open Source Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #include "update_engine/payload_generator/boot_img_filesystem.h" #include #include #include #include #include "update_engine/common/test_utils.h" #include "update_engine/common/utils.h" namespace chromeos_update_engine { using std::unique_ptr; using std::vector; class BootImgFilesystemTest : public ::testing::Test { protected: brillo::Blob GetBootImg(const brillo::Blob& kernel, const brillo::Blob& ramdisk, bool header_version3 = false) { brillo::Blob boot_img(16 * 1024); constexpr uint32_t page_size = 4096; size_t offset = 0; if (header_version3) { boot_img_hdr_v3 hdr_v3{}; memcpy(hdr_v3.magic, BOOT_MAGIC, BOOT_MAGIC_SIZE); hdr_v3.kernel_size = kernel.size(); hdr_v3.ramdisk_size = ramdisk.size(); hdr_v3.header_version = 3; memcpy(boot_img.data() + offset, &hdr_v3, sizeof(hdr_v3)); offset += utils::RoundUp(sizeof(hdr_v3), page_size); } else { boot_img_hdr_v0 hdr_v0{}; memcpy(hdr_v0.magic, BOOT_MAGIC, BOOT_MAGIC_SIZE); hdr_v0.kernel_size = kernel.size(); hdr_v0.ramdisk_size = ramdisk.size(); hdr_v0.page_size = page_size; hdr_v0.header_version = 0; memcpy(boot_img.data() + offset, &hdr_v0, sizeof(hdr_v0)); offset += utils::RoundUp(sizeof(hdr_v0), page_size); } memcpy(boot_img.data() + offset, kernel.data(), kernel.size()); offset += utils::RoundUp(kernel.size(), page_size); memcpy(boot_img.data() + offset, ramdisk.data(), ramdisk.size()); return boot_img; } ScopedTempFile boot_file_; }; TEST_F(BootImgFilesystemTest, SimpleTest) { test_utils::WriteFileVector( boot_file_.path(), GetBootImg(brillo::Blob(1234, 'k'), brillo::Blob(5678, 'r'))); unique_ptr fs = BootImgFilesystem::CreateFromFile(boot_file_.path()); EXPECT_NE(nullptr, fs); vector files; EXPECT_TRUE(fs->GetFiles(&files)); ASSERT_EQ(2u, files.size()); EXPECT_EQ("", files[0].name); EXPECT_EQ(1u, files[0].extents.size()); EXPECT_EQ(1u, files[0].extents[0].start_block()); EXPECT_EQ(1u, files[0].extents[0].num_blocks()); EXPECT_TRUE(files[0].deflates.empty()); EXPECT_EQ("", files[1].name); EXPECT_EQ(1u, files[1].extents.size()); EXPECT_EQ(2u, files[1].extents[0].start_block()); EXPECT_EQ(2u, files[1].extents[0].num_blocks()); EXPECT_TRUE(files[1].deflates.empty()); } TEST_F(BootImgFilesystemTest, ImageHeaderVersion3) { test_utils::WriteFileVector( boot_file_.path(), GetBootImg(brillo::Blob(1000, 'k'), brillo::Blob(5000, 'r'), true)); unique_ptr fs = BootImgFilesystem::CreateFromFile(boot_file_.path()); EXPECT_NE(nullptr, fs); vector files; EXPECT_TRUE(fs->GetFiles(&files)); ASSERT_EQ(2u, files.size()); EXPECT_EQ("", files[0].name); EXPECT_EQ(1u, files[0].extents.size()); EXPECT_EQ(1u, files[0].extents[0].start_block()); EXPECT_EQ(1u, files[0].extents[0].num_blocks()); EXPECT_TRUE(files[0].deflates.empty()); EXPECT_EQ("", files[1].name); EXPECT_EQ(1u, files[1].extents.size()); EXPECT_EQ(2u, files[1].extents[0].start_block()); EXPECT_EQ(2u, files[1].extents[0].num_blocks()); EXPECT_TRUE(files[1].deflates.empty()); } TEST_F(BootImgFilesystemTest, BadImageTest) { brillo::Blob boot_img = GetBootImg({}, {}); boot_img[7] = '?'; test_utils::WriteFileVector(boot_file_.path(), boot_img); unique_ptr fs = BootImgFilesystem::CreateFromFile(boot_file_.path()); EXPECT_EQ(nullptr, fs); } TEST_F(BootImgFilesystemTest, GZipRamdiskTest) { // echo ramdisk | gzip | hexdump -v -e '/1 "0x%02x, "' const brillo::Blob ramdisk = {0x1f, 0x8b, 0x08, 0x00, 0x3a, 0x83, 0x35, 0x5b, 0x00, 0x03, 0x2b, 0x4a, 0xcc, 0x4d, 0xc9, 0x2c, 0xce, 0xe6, 0x02, 0x00, 0x2e, 0xf6, 0x0b, 0x08, 0x08, 0x00, 0x00, 0x00}; test_utils::WriteFileVector(boot_file_.path(), GetBootImg(brillo::Blob(5678, 'k'), ramdisk)); unique_ptr fs = BootImgFilesystem::CreateFromFile(boot_file_.path()); EXPECT_NE(nullptr, fs); vector files; EXPECT_TRUE(fs->GetFiles(&files)); ASSERT_EQ(2u, files.size()); EXPECT_EQ("", files[0].name); EXPECT_EQ(1u, files[0].extents.size()); EXPECT_EQ(1u, files[0].extents[0].start_block()); EXPECT_EQ(2u, files[0].extents[0].num_blocks()); EXPECT_TRUE(files[0].deflates.empty()); EXPECT_EQ("", files[1].name); EXPECT_EQ(1u, files[1].extents.size()); EXPECT_EQ(3u, files[1].extents[0].start_block()); EXPECT_EQ(1u, files[1].extents[0].num_blocks()); EXPECT_EQ(1u, files[1].deflates.size()); } } // namespace chromeos_update_engine