blob: c1f0ca81259876f967049b682be3560f87413a1c [file] [log] [blame]
Tao Bao1d866052017-04-10 16:55:57 -07001/*
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 agree 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 */
16
17#include <stdio.h>
Tao Bao00d57572017-05-02 15:48:54 -070018#include <sys/stat.h>
19#include <sys/types.h>
Tao Baof2784b62017-04-19 12:37:12 -070020#include <unistd.h>
Tao Bao1d866052017-04-10 16:55:57 -070021
Tianjie Xu69b96492017-08-17 16:42:57 -070022#include <algorithm>
Tianjie Xu93b5bf22018-10-25 10:39:01 -070023#include <random>
Tao Baobc4b1fe2017-04-17 16:46:05 -070024#include <string>
25#include <vector>
26
Tao Baof2784b62017-04-19 12:37:12 -070027#include <android-base/file.h>
Tao Baobc4b1fe2017-04-17 16:46:05 -070028#include <android-base/properties.h>
29#include <android-base/strings.h>
Tao Bao1d866052017-04-10 16:55:57 -070030#include <gtest/gtest.h>
Tao Baof2784b62017-04-19 12:37:12 -070031#include <vintf/VintfObjectRecovery.h>
Tao Bao1d866052017-04-10 16:55:57 -070032#include <ziparchive/zip_archive.h>
33#include <ziparchive/zip_writer.h>
34
xunchang24788852019-03-22 16:08:52 -070035#include "install/install.h"
Tao Baocf60a442018-06-18 14:56:20 -070036#include "otautil/paths.h"
Tianjie Xuba27adb2019-08-06 12:32:05 -070037#include "otautil/roots.h"
xunchang24788852019-03-22 16:08:52 -070038#include "private/setup_commands.h"
Tao Bao1d866052017-04-10 16:55:57 -070039
Tianjie Xuf2fb49a2018-10-26 15:16:50 -070040static void BuildZipArchive(const std::map<std::string, std::string>& file_map, int fd,
41 int compression_type) {
42 FILE* zip_file = fdopen(fd, "w");
Tao Bao1d866052017-04-10 16:55:57 -070043 ZipWriter writer(zip_file);
Tianjie Xuf2fb49a2018-10-26 15:16:50 -070044 for (const auto& [name, content] : file_map) {
45 ASSERT_EQ(0, writer.StartEntry(name.c_str(), compression_type));
46 ASSERT_EQ(0, writer.WriteBytes(content.data(), content.size()));
47 ASSERT_EQ(0, writer.FinishEntry());
48 }
Tao Bao1d866052017-04-10 16:55:57 -070049 ASSERT_EQ(0, writer.Finish());
50 ASSERT_EQ(0, fclose(zip_file));
Tianjie Xuf2fb49a2018-10-26 15:16:50 -070051}
52
53TEST(InstallTest, verify_package_compatibility_no_entry) {
54 TemporaryFile temp_file;
55 // The archive must have something to be opened correctly.
56 BuildZipArchive({ { "dummy_entry", "" } }, temp_file.release(), kCompressStored);
Tao Bao1d866052017-04-10 16:55:57 -070057
58 // Doesn't contain compatibility zip entry.
59 ZipArchiveHandle zip;
60 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
61 ASSERT_TRUE(verify_package_compatibility(zip));
62 CloseArchive(zip);
63}
64
65TEST(InstallTest, verify_package_compatibility_invalid_entry) {
66 TemporaryFile temp_file;
Tianjie Xuf2fb49a2018-10-26 15:16:50 -070067 BuildZipArchive({ { "compatibility.zip", "" } }, temp_file.release(), kCompressStored);
Tao Bao1d866052017-04-10 16:55:57 -070068
69 // Empty compatibility zip entry.
70 ZipArchiveHandle zip;
71 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
72 ASSERT_FALSE(verify_package_compatibility(zip));
73 CloseArchive(zip);
74}
Tao Baobc4b1fe2017-04-17 16:46:05 -070075
Tao Bao8a7afcc2017-04-18 22:05:50 -070076TEST(InstallTest, read_metadata_from_package_smoke) {
77 TemporaryFile temp_file;
Tianjie Xu93b5bf22018-10-25 10:39:01 -070078 const std::string content("abc=defg");
Tianjie Xuf2fb49a2018-10-26 15:16:50 -070079 BuildZipArchive({ { "META-INF/com/android/metadata", content } }, temp_file.release(),
80 kCompressStored);
Tao Bao8a7afcc2017-04-18 22:05:50 -070081
82 ZipArchiveHandle zip;
83 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
Tianjie Xu93b5bf22018-10-25 10:39:01 -070084 std::map<std::string, std::string> metadata;
85 ASSERT_TRUE(ReadMetadataFromPackage(zip, &metadata));
86 ASSERT_EQ("defg", metadata["abc"]);
Tao Bao8a7afcc2017-04-18 22:05:50 -070087 CloseArchive(zip);
88
89 TemporaryFile temp_file2;
Tianjie Xuf2fb49a2018-10-26 15:16:50 -070090 BuildZipArchive({ { "META-INF/com/android/metadata", content } }, temp_file2.release(),
91 kCompressDeflated);
Tao Bao8a7afcc2017-04-18 22:05:50 -070092
93 ASSERT_EQ(0, OpenArchive(temp_file2.path, &zip));
94 metadata.clear();
Tianjie Xu93b5bf22018-10-25 10:39:01 -070095 ASSERT_TRUE(ReadMetadataFromPackage(zip, &metadata));
96 ASSERT_EQ("defg", metadata["abc"]);
Tao Bao8a7afcc2017-04-18 22:05:50 -070097 CloseArchive(zip);
98}
99
100TEST(InstallTest, read_metadata_from_package_no_entry) {
101 TemporaryFile temp_file;
Tianjie Xuf2fb49a2018-10-26 15:16:50 -0700102 BuildZipArchive({ { "dummy_entry", "" } }, temp_file.release(), kCompressStored);
Tao Bao8a7afcc2017-04-18 22:05:50 -0700103
104 ZipArchiveHandle zip;
105 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
Tianjie Xu93b5bf22018-10-25 10:39:01 -0700106 std::map<std::string, std::string> metadata;
107 ASSERT_FALSE(ReadMetadataFromPackage(zip, &metadata));
Tao Bao8a7afcc2017-04-18 22:05:50 -0700108 CloseArchive(zip);
109}
110
xunchange0d991c2019-03-05 14:50:51 -0800111TEST(InstallTest, read_wipe_ab_partition_list) {
112 std::vector<std::string> partition_list = {
113 "/dev/block/bootdevice/by-name/system_a", "/dev/block/bootdevice/by-name/system_b",
114 "/dev/block/bootdevice/by-name/vendor_a", "/dev/block/bootdevice/by-name/vendor_b",
115 "/dev/block/bootdevice/by-name/userdata", "# Wipe the boot partitions last",
116 "/dev/block/bootdevice/by-name/boot_a", "/dev/block/bootdevice/by-name/boot_b",
117 };
118 TemporaryFile temp_file;
119 BuildZipArchive({ { "recovery.wipe", android::base::Join(partition_list, '\n') } },
120 temp_file.release(), kCompressDeflated);
121 std::string wipe_package;
122 ASSERT_TRUE(android::base::ReadFileToString(temp_file.path, &wipe_package));
123
xunchang55e3d222019-03-11 11:28:41 -0700124 auto package = Package::CreateMemoryPackage(
125 std::vector<uint8_t>(wipe_package.begin(), wipe_package.end()), nullptr);
126
127 auto read_partition_list = GetWipePartitionList(package.get());
xunchange0d991c2019-03-05 14:50:51 -0800128 std::vector<std::string> expected = {
129 "/dev/block/bootdevice/by-name/system_a", "/dev/block/bootdevice/by-name/system_b",
130 "/dev/block/bootdevice/by-name/vendor_a", "/dev/block/bootdevice/by-name/vendor_b",
131 "/dev/block/bootdevice/by-name/userdata", "/dev/block/bootdevice/by-name/boot_a",
132 "/dev/block/bootdevice/by-name/boot_b",
133 };
134 ASSERT_EQ(expected, read_partition_list);
135}
136
Tao Baof2784b62017-04-19 12:37:12 -0700137TEST(InstallTest, verify_package_compatibility_with_libvintf_malformed_xml) {
138 TemporaryFile compatibility_zip_file;
Tao Baof2784b62017-04-19 12:37:12 -0700139 std::string malformed_xml = "malformed";
Tianjie Xuf2fb49a2018-10-26 15:16:50 -0700140 BuildZipArchive({ { "system_manifest.xml", malformed_xml } }, compatibility_zip_file.release(),
141 kCompressDeflated);
Tao Baof2784b62017-04-19 12:37:12 -0700142
143 TemporaryFile temp_file;
Tao Baof2784b62017-04-19 12:37:12 -0700144 std::string compatibility_zip_content;
145 ASSERT_TRUE(
146 android::base::ReadFileToString(compatibility_zip_file.path, &compatibility_zip_content));
Tianjie Xuf2fb49a2018-10-26 15:16:50 -0700147 BuildZipArchive({ { "compatibility.zip", compatibility_zip_content } }, temp_file.release(),
148 kCompressStored);
Tao Baof2784b62017-04-19 12:37:12 -0700149
150 ZipArchiveHandle zip;
151 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
152 std::vector<std::string> compatibility_info;
153 compatibility_info.push_back(malformed_xml);
154 // Malformed compatibility zip is expected to be rejected by libvintf. But we defer that to
155 // libvintf.
156 std::string err;
157 bool result =
158 android::vintf::VintfObjectRecovery::CheckCompatibility(compatibility_info, &err) == 0;
159 ASSERT_EQ(result, verify_package_compatibility(zip));
160 CloseArchive(zip);
161}
162
163TEST(InstallTest, verify_package_compatibility_with_libvintf_system_manifest_xml) {
164 static constexpr const char* system_manifest_xml_path = "/system/manifest.xml";
165 if (access(system_manifest_xml_path, R_OK) == -1) {
166 GTEST_LOG_(INFO) << "Test skipped on devices w/o /system/manifest.xml.";
167 return;
168 }
169 std::string system_manifest_xml_content;
170 ASSERT_TRUE(
171 android::base::ReadFileToString(system_manifest_xml_path, &system_manifest_xml_content));
172 TemporaryFile compatibility_zip_file;
Tianjie Xuf2fb49a2018-10-26 15:16:50 -0700173 BuildZipArchive({ { "system_manifest.xml", system_manifest_xml_content } },
174 compatibility_zip_file.release(), kCompressDeflated);
Tao Baof2784b62017-04-19 12:37:12 -0700175
176 TemporaryFile temp_file;
Tao Baof2784b62017-04-19 12:37:12 -0700177 std::string compatibility_zip_content;
178 ASSERT_TRUE(
179 android::base::ReadFileToString(compatibility_zip_file.path, &compatibility_zip_content));
Tianjie Xuf2fb49a2018-10-26 15:16:50 -0700180 BuildZipArchive({ { "compatibility.zip", compatibility_zip_content } }, temp_file.release(),
181 kCompressStored);
Tao Baof2784b62017-04-19 12:37:12 -0700182
183 ZipArchiveHandle zip;
184 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
185 std::vector<std::string> compatibility_info;
186 compatibility_info.push_back(system_manifest_xml_content);
187 std::string err;
188 bool result =
189 android::vintf::VintfObjectRecovery::CheckCompatibility(compatibility_info, &err) == 0;
190 // Make sure the result is consistent with libvintf library.
191 ASSERT_EQ(result, verify_package_compatibility(zip));
192 CloseArchive(zip);
193}
194
Tao Baocf60a442018-06-18 14:56:20 -0700195TEST(InstallTest, SetUpNonAbUpdateCommands) {
196 TemporaryFile temp_file;
Tao Baocf60a442018-06-18 14:56:20 -0700197 static constexpr const char* UPDATE_BINARY_NAME = "META-INF/com/google/android/update-binary";
Tianjie Xuf2fb49a2018-10-26 15:16:50 -0700198 BuildZipArchive({ { UPDATE_BINARY_NAME, "" } }, temp_file.release(), kCompressStored);
Tao Baocf60a442018-06-18 14:56:20 -0700199
200 ZipArchiveHandle zip;
201 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
202 int status_fd = 10;
203 std::string package = "/path/to/update.zip";
204 TemporaryDir td;
205 std::string binary_path = std::string(td.path) + "/update_binary";
206 Paths::Get().set_temporary_update_binary(binary_path);
207 std::vector<std::string> cmd;
208 ASSERT_EQ(0, SetUpNonAbUpdateCommands(package, zip, 0, status_fd, &cmd));
209 ASSERT_EQ(4U, cmd.size());
210 ASSERT_EQ(binary_path, cmd[0]);
211 ASSERT_EQ("3", cmd[1]); // RECOVERY_API_VERSION
212 ASSERT_EQ(std::to_string(status_fd), cmd[2]);
213 ASSERT_EQ(package, cmd[3]);
214 struct stat sb;
215 ASSERT_EQ(0, stat(binary_path.c_str(), &sb));
216 ASSERT_EQ(static_cast<mode_t>(0755), sb.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO));
217
218 // With non-zero retry count. update_binary will be removed automatically.
219 cmd.clear();
220 ASSERT_EQ(0, SetUpNonAbUpdateCommands(package, zip, 2, status_fd, &cmd));
221 ASSERT_EQ(5U, cmd.size());
222 ASSERT_EQ(binary_path, cmd[0]);
223 ASSERT_EQ("3", cmd[1]); // RECOVERY_API_VERSION
224 ASSERT_EQ(std::to_string(status_fd), cmd[2]);
225 ASSERT_EQ(package, cmd[3]);
226 ASSERT_EQ("retry", cmd[4]);
227 sb = {};
228 ASSERT_EQ(0, stat(binary_path.c_str(), &sb));
229 ASSERT_EQ(static_cast<mode_t>(0755), sb.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO));
230
231 CloseArchive(zip);
232}
233
234TEST(InstallTest, SetUpNonAbUpdateCommands_MissingUpdateBinary) {
235 TemporaryFile temp_file;
Tao Baocf60a442018-06-18 14:56:20 -0700236 // The archive must have something to be opened correctly.
Tianjie Xuf2fb49a2018-10-26 15:16:50 -0700237 BuildZipArchive({ { "dummy_entry", "" } }, temp_file.release(), kCompressStored);
Tao Baocf60a442018-06-18 14:56:20 -0700238
239 // Missing update binary.
240 ZipArchiveHandle zip;
241 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
242 int status_fd = 10;
243 std::string package = "/path/to/update.zip";
244 TemporaryDir td;
245 Paths::Get().set_temporary_update_binary(std::string(td.path) + "/update_binary");
246 std::vector<std::string> cmd;
247 ASSERT_EQ(INSTALL_CORRUPT, SetUpNonAbUpdateCommands(package, zip, 0, status_fd, &cmd));
248 CloseArchive(zip);
249}
250
251static void VerifyAbUpdateCommands(const std::string& serialno, bool success = true) {
Tao Baobc4b1fe2017-04-17 16:46:05 -0700252 TemporaryFile temp_file;
Tianjie Xuf2fb49a2018-10-26 15:16:50 -0700253
Tao Baobc4b1fe2017-04-17 16:46:05 -0700254 const std::string properties = "some_properties";
Tao Baobc4b1fe2017-04-17 16:46:05 -0700255 std::string device = android::base::GetProperty("ro.product.device", "");
256 ASSERT_NE("", device);
257 std::string timestamp = android::base::GetProperty("ro.build.date.utc", "");
258 ASSERT_NE("", timestamp);
Tianjie Xu69b96492017-08-17 16:42:57 -0700259
260 std::vector<std::string> meta{ "ota-type=AB", "pre-device=" + device,
261 "post-timestamp=" + timestamp };
262 if (!serialno.empty()) {
263 meta.push_back("serialno=" + serialno);
264 }
Tianjie Xu93b5bf22018-10-25 10:39:01 -0700265 std::string metadata_string = android::base::Join(meta, "\n");
Tianjie Xuf2fb49a2018-10-26 15:16:50 -0700266
267 BuildZipArchive({ { "payload.bin", "" },
268 { "payload_properties.txt", properties },
Tianjie Xu93b5bf22018-10-25 10:39:01 -0700269 { "META-INF/com/android/metadata", metadata_string } },
Tianjie Xuf2fb49a2018-10-26 15:16:50 -0700270 temp_file.release(), kCompressStored);
Tao Baobc4b1fe2017-04-17 16:46:05 -0700271
272 ZipArchiveHandle zip;
273 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
Tao Bao00d57572017-05-02 15:48:54 -0700274 ZipString payload_name("payload.bin");
275 ZipEntry payload_entry;
276 ASSERT_EQ(0, FindEntry(zip, payload_name, &payload_entry));
Tianjie Xu93b5bf22018-10-25 10:39:01 -0700277
278 std::map<std::string, std::string> metadata;
279 ASSERT_TRUE(ReadMetadataFromPackage(zip, &metadata));
Tianjie Xu69b96492017-08-17 16:42:57 -0700280 if (success) {
Tianjie Xu93b5bf22018-10-25 10:39:01 -0700281 ASSERT_EQ(0, CheckPackageMetadata(metadata, OtaType::AB));
282
283 int status_fd = 10;
284 std::string package = "/path/to/update.zip";
285 std::vector<std::string> cmd;
Tao Baocf60a442018-06-18 14:56:20 -0700286 ASSERT_EQ(0, SetUpAbUpdateCommands(package, zip, status_fd, &cmd));
Tianjie Xu69b96492017-08-17 16:42:57 -0700287 ASSERT_EQ(5U, cmd.size());
Tao Bao2cc9bbb2018-08-14 12:34:46 -0700288 ASSERT_EQ("/system/bin/update_engine_sideload", cmd[0]);
Tianjie Xu69b96492017-08-17 16:42:57 -0700289 ASSERT_EQ("--payload=file://" + package, cmd[1]);
290 ASSERT_EQ("--offset=" + std::to_string(payload_entry.offset), cmd[2]);
291 ASSERT_EQ("--headers=" + properties, cmd[3]);
292 ASSERT_EQ("--status_fd=" + std::to_string(status_fd), cmd[4]);
293 } else {
Tianjie Xu93b5bf22018-10-25 10:39:01 -0700294 ASSERT_EQ(INSTALL_ERROR, CheckPackageMetadata(metadata, OtaType::AB));
Tianjie Xu69b96492017-08-17 16:42:57 -0700295 }
Tao Baobc4b1fe2017-04-17 16:46:05 -0700296 CloseArchive(zip);
Tianjie Xu69b96492017-08-17 16:42:57 -0700297}
Tianjie Xu69b96492017-08-17 16:42:57 -0700298
Tao Baocf60a442018-06-18 14:56:20 -0700299TEST(InstallTest, SetUpAbUpdateCommands) {
Tianjie Xu69b96492017-08-17 16:42:57 -0700300 // Empty serialno will pass the verification.
Tao Baocf60a442018-06-18 14:56:20 -0700301 VerifyAbUpdateCommands({});
Tao Baobc4b1fe2017-04-17 16:46:05 -0700302}
303
Tao Baocf60a442018-06-18 14:56:20 -0700304TEST(InstallTest, SetUpAbUpdateCommands_MissingPayloadPropertiesTxt) {
Tao Baobc4b1fe2017-04-17 16:46:05 -0700305 TemporaryFile temp_file;
Tianjie Xuf2fb49a2018-10-26 15:16:50 -0700306
Tao Baobc4b1fe2017-04-17 16:46:05 -0700307 std::string device = android::base::GetProperty("ro.product.device", "");
308 ASSERT_NE("", device);
309 std::string timestamp = android::base::GetProperty("ro.build.date.utc", "");
310 ASSERT_NE("", timestamp);
311 std::string metadata = android::base::Join(
312 std::vector<std::string>{
313 "ota-type=AB", "pre-device=" + device, "post-timestamp=" + timestamp,
314 },
315 "\n");
Tianjie Xuf2fb49a2018-10-26 15:16:50 -0700316
Tianjie Xu93b5bf22018-10-25 10:39:01 -0700317 BuildZipArchive(
318 {
319 { "payload.bin", "" },
320 { "META-INF/com/android/metadata", metadata },
321 },
322 temp_file.release(), kCompressStored);
Tao Baobc4b1fe2017-04-17 16:46:05 -0700323
324 ZipArchiveHandle zip;
325 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
326 int status_fd = 10;
Tao Bao00d57572017-05-02 15:48:54 -0700327 std::string package = "/path/to/update.zip";
Tao Baobc4b1fe2017-04-17 16:46:05 -0700328 std::vector<std::string> cmd;
Tao Baocf60a442018-06-18 14:56:20 -0700329 ASSERT_EQ(INSTALL_CORRUPT, SetUpAbUpdateCommands(package, zip, status_fd, &cmd));
Tao Baobc4b1fe2017-04-17 16:46:05 -0700330 CloseArchive(zip);
Tao Baobc4b1fe2017-04-17 16:46:05 -0700331}
Tianjie Xu69b96492017-08-17 16:42:57 -0700332
Tao Baocf60a442018-06-18 14:56:20 -0700333TEST(InstallTest, SetUpAbUpdateCommands_MultipleSerialnos) {
Tianjie Xu69b96492017-08-17 16:42:57 -0700334 std::string serialno = android::base::GetProperty("ro.serialno", "");
335 ASSERT_NE("", serialno);
336
337 // Single matching serialno will pass the verification.
Tao Baocf60a442018-06-18 14:56:20 -0700338 VerifyAbUpdateCommands(serialno);
Tianjie Xu69b96492017-08-17 16:42:57 -0700339
340 static constexpr char alphabet[] =
341 "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
342 auto generator = []() { return alphabet[rand() % (sizeof(alphabet) - 1)]; };
343
344 // Generate 900 random serial numbers.
Tao Baocf60a442018-06-18 14:56:20 -0700345 std::string random_serialno;
Tianjie Xu69b96492017-08-17 16:42:57 -0700346 for (size_t i = 0; i < 900; i++) {
Tao Baocf60a442018-06-18 14:56:20 -0700347 generate_n(back_inserter(random_serialno), serialno.size(), generator);
348 random_serialno.append("|");
Tianjie Xu69b96492017-08-17 16:42:57 -0700349 }
350 // Random serialnos should fail the verification.
Tao Baocf60a442018-06-18 14:56:20 -0700351 VerifyAbUpdateCommands(random_serialno, false);
Tianjie Xu69b96492017-08-17 16:42:57 -0700352
Tao Baocf60a442018-06-18 14:56:20 -0700353 std::string long_serialno = random_serialno + serialno + "|";
Tianjie Xu69b96492017-08-17 16:42:57 -0700354 for (size_t i = 0; i < 99; i++) {
Tao Baocf60a442018-06-18 14:56:20 -0700355 generate_n(back_inserter(long_serialno), serialno.size(), generator);
356 long_serialno.append("|");
Tianjie Xu69b96492017-08-17 16:42:57 -0700357 }
358 // String with the matching serialno should pass the verification.
Tao Baocf60a442018-06-18 14:56:20 -0700359 VerifyAbUpdateCommands(long_serialno);
Tianjie Xu69b96492017-08-17 16:42:57 -0700360}
Tianjie Xu93b5bf22018-10-25 10:39:01 -0700361
362static void test_check_package_metadata(const std::string& metadata_string, OtaType ota_type,
363 int exptected_result) {
364 TemporaryFile temp_file;
365 BuildZipArchive(
366 {
367 { "META-INF/com/android/metadata", metadata_string },
368 },
369 temp_file.release(), kCompressStored);
370
371 ZipArchiveHandle zip;
372 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
373
374 std::map<std::string, std::string> metadata;
375 ASSERT_TRUE(ReadMetadataFromPackage(zip, &metadata));
376 ASSERT_EQ(exptected_result, CheckPackageMetadata(metadata, ota_type));
377 CloseArchive(zip);
378}
379
380TEST(InstallTest, CheckPackageMetadata_ota_type) {
381 std::string device = android::base::GetProperty("ro.product.device", "");
382 ASSERT_NE("", device);
383
384 // ota-type must be present
385 std::string metadata = android::base::Join(
386 std::vector<std::string>{
387 "pre-device=" + device,
388 "post-timestamp=" + std::to_string(std::numeric_limits<int64_t>::max()),
389 },
390 "\n");
391 test_check_package_metadata(metadata, OtaType::AB, INSTALL_ERROR);
392
393 // Checks if ota-type matches
394 metadata = android::base::Join(
395 std::vector<std::string>{
396 "ota-type=AB",
397 "pre-device=" + device,
398 "post-timestamp=" + std::to_string(std::numeric_limits<int64_t>::max()),
399 },
400 "\n");
401 test_check_package_metadata(metadata, OtaType::AB, 0);
402
403 test_check_package_metadata(metadata, OtaType::BRICK, INSTALL_ERROR);
404}
405
406TEST(InstallTest, CheckPackageMetadata_device_type) {
407 // device type can not be empty
408 std::string metadata = android::base::Join(
409 std::vector<std::string>{
410 "ota-type=BRICK",
411 },
412 "\n");
413 test_check_package_metadata(metadata, OtaType::BRICK, INSTALL_ERROR);
414
415 // device type mismatches
416 metadata = android::base::Join(
417 std::vector<std::string>{
418 "ota-type=BRICK",
419 "pre-device=dummy_device_type",
420 },
421 "\n");
422 test_check_package_metadata(metadata, OtaType::BRICK, INSTALL_ERROR);
423}
424
425TEST(InstallTest, CheckPackageMetadata_serial_number_smoke) {
426 std::string device = android::base::GetProperty("ro.product.device", "");
427 ASSERT_NE("", device);
428
429 // Serial number doesn't need to exist
430 std::string metadata = android::base::Join(
431 std::vector<std::string>{
432 "ota-type=BRICK",
433 "pre-device=" + device,
434 },
435 "\n");
436 test_check_package_metadata(metadata, OtaType::BRICK, 0);
437
438 // Serial number mismatches
439 metadata = android::base::Join(
440 std::vector<std::string>{
441 "ota-type=BRICK",
442 "pre-device=" + device,
443 "serialno=dummy_serial",
444 },
445 "\n");
446 test_check_package_metadata(metadata, OtaType::BRICK, INSTALL_ERROR);
447
448 std::string serialno = android::base::GetProperty("ro.serialno", "");
449 ASSERT_NE("", serialno);
450 metadata = android::base::Join(
451 std::vector<std::string>{
452 "ota-type=BRICK",
453 "pre-device=" + device,
454 "serialno=" + serialno,
455 },
456 "\n");
457 test_check_package_metadata(metadata, OtaType::BRICK, 0);
458}
459
460TEST(InstallTest, CheckPackageMetadata_multiple_serial_number) {
461 std::string device = android::base::GetProperty("ro.product.device", "");
462 ASSERT_NE("", device);
463
464 std::string serialno = android::base::GetProperty("ro.serialno", "");
465 ASSERT_NE("", serialno);
466
467 std::vector<std::string> serial_numbers;
468 // Creates a dummy serial number string.
xunchang7b08a5a2019-02-05 12:44:53 -0800469 for (char c = 'a'; c <= 'z'; c++) {
470 serial_numbers.emplace_back(serialno.size(), c);
Tianjie Xu93b5bf22018-10-25 10:39:01 -0700471 }
472
473 // No matched serialno found.
474 std::string metadata = android::base::Join(
475 std::vector<std::string>{
476 "ota-type=BRICK",
477 "pre-device=" + device,
478 "serialno=" + android::base::Join(serial_numbers, '|'),
479 },
480 "\n");
481 test_check_package_metadata(metadata, OtaType::BRICK, INSTALL_ERROR);
482
483 serial_numbers.emplace_back(serialno);
484 std::shuffle(serial_numbers.begin(), serial_numbers.end(), std::default_random_engine());
485 metadata = android::base::Join(
486 std::vector<std::string>{
487 "ota-type=BRICK",
488 "pre-device=" + device,
489 "serialno=" + android::base::Join(serial_numbers, '|'),
490 },
491 "\n");
492 test_check_package_metadata(metadata, OtaType::BRICK, 0);
493}
494
495TEST(InstallTest, CheckPackageMetadata_ab_build_version) {
496 std::string device = android::base::GetProperty("ro.product.device", "");
497 ASSERT_NE("", device);
498
499 std::string build_version = android::base::GetProperty("ro.build.version.incremental", "");
500 ASSERT_NE("", build_version);
501
502 std::string metadata = android::base::Join(
503 std::vector<std::string>{
504 "ota-type=AB",
505 "pre-device=" + device,
506 "pre-build-incremental=" + build_version,
507 "post-timestamp=" + std::to_string(std::numeric_limits<int64_t>::max()),
508 },
509 "\n");
510 test_check_package_metadata(metadata, OtaType::AB, 0);
511
512 metadata = android::base::Join(
513 std::vector<std::string>{
514 "ota-type=AB",
515 "pre-device=" + device,
516 "pre-build-incremental=dummy_build",
517 "post-timestamp=" + std::to_string(std::numeric_limits<int64_t>::max()),
518 },
519 "\n");
520 test_check_package_metadata(metadata, OtaType::AB, INSTALL_ERROR);
521}
522
523TEST(InstallTest, CheckPackageMetadata_ab_fingerprint) {
524 std::string device = android::base::GetProperty("ro.product.device", "");
525 ASSERT_NE("", device);
526
527 std::string finger_print = android::base::GetProperty("ro.build.fingerprint", "");
528 ASSERT_NE("", finger_print);
529
530 std::string metadata = android::base::Join(
531 std::vector<std::string>{
532 "ota-type=AB",
533 "pre-device=" + device,
534 "pre-build=" + finger_print,
535 "post-timestamp=" + std::to_string(std::numeric_limits<int64_t>::max()),
536 },
537 "\n");
538 test_check_package_metadata(metadata, OtaType::AB, 0);
539
540 metadata = android::base::Join(
541 std::vector<std::string>{
542 "ota-type=AB",
543 "pre-device=" + device,
544 "pre-build=dummy_build_fingerprint",
545 "post-timestamp=" + std::to_string(std::numeric_limits<int64_t>::max()),
546 },
547 "\n");
548 test_check_package_metadata(metadata, OtaType::AB, INSTALL_ERROR);
549}
550
551TEST(InstallTest, CheckPackageMetadata_ab_post_timestamp) {
552 std::string device = android::base::GetProperty("ro.product.device", "");
553 ASSERT_NE("", device);
554
555 // post timestamp is required for upgrade.
556 std::string metadata = android::base::Join(
557 std::vector<std::string>{
558 "ota-type=AB",
559 "pre-device=" + device,
560 },
561 "\n");
562 test_check_package_metadata(metadata, OtaType::AB, INSTALL_ERROR);
563
564 // post timestamp should be larger than the timestamp on device.
565 metadata = android::base::Join(
566 std::vector<std::string>{
567 "ota-type=AB",
568 "pre-device=" + device,
569 "post-timestamp=0",
570 },
571 "\n");
572 test_check_package_metadata(metadata, OtaType::AB, INSTALL_ERROR);
573
574 // fingerprint is required for downgrade
575 metadata = android::base::Join(
576 std::vector<std::string>{
577 "ota-type=AB",
578 "pre-device=" + device,
579 "post-timestamp=0",
580 "ota-downgrade=yes",
581 },
582 "\n");
583 test_check_package_metadata(metadata, OtaType::AB, INSTALL_ERROR);
584
585 std::string finger_print = android::base::GetProperty("ro.build.fingerprint", "");
586 ASSERT_NE("", finger_print);
587
588 metadata = android::base::Join(
589 std::vector<std::string>{
590 "ota-type=AB",
591 "pre-device=" + device,
592 "post-timestamp=0",
593 "pre-build=" + finger_print,
594 "ota-downgrade=yes",
595 },
596 "\n");
597 test_check_package_metadata(metadata, OtaType::AB, 0);
598}
Tianjie Xuba27adb2019-08-06 12:32:05 -0700599
600TEST(InstallTest, SetupPackageMount_package_path) {
601 load_volume_table();
602 bool install_with_fuse;
603
604 // Setup should fail if the input path doesn't exist.
605 ASSERT_FALSE(SetupPackageMount("/does_not_exist", &install_with_fuse));
606
607 // Package should be installed with fuse if it's not in /cache.
608 TemporaryDir temp_dir;
609 TemporaryFile update_package(temp_dir.path);
610 ASSERT_TRUE(SetupPackageMount(update_package.path, &install_with_fuse));
611 ASSERT_TRUE(install_with_fuse);
612
613 // Setup should fail if the input path isn't canonicalized.
614 std::string uncanonical_package_path = android::base::Join(
615 std::vector<std::string>{
616 temp_dir.path,
617 "..",
618 android::base::Basename(temp_dir.path),
619 android::base::Basename(update_package.path),
620 },
621 '/');
622
623 ASSERT_EQ(0, access(uncanonical_package_path.c_str(), R_OK));
624 ASSERT_FALSE(SetupPackageMount(uncanonical_package_path, &install_with_fuse));
625}