blob: 2cfb6d3010ad571d8b9ac4eb31dadc6a444a723a [file] [log] [blame]
Jed Estep43291862016-02-03 17:02:09 -08001/*
2 * Copyright (C) 2009 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 <errno.h>
18#include <fcntl.h>
19#include <gtest/gtest.h>
20#include <stdio.h>
21#include <stdlib.h>
Jed Estep43291862016-02-03 17:02:09 -080022#include <sys/stat.h>
Mattias Nissler452df6d2016-04-04 16:17:01 +020023#include <sys/types.h>
Jed Estep43291862016-02-03 17:02:09 -080024
Jed Estep43291862016-02-03 17:02:09 -080025#include <string>
26#include <vector>
27
Tao Bao5e535012017-03-16 17:37:38 -070028#include <android-base/file.h>
Jed Estep43291862016-02-03 17:02:09 -080029#include <android-base/stringprintf.h>
Tao Bao5e535012017-03-16 17:37:38 -070030#include <android-base/test_utils.h>
Jed Estep43291862016-02-03 17:02:09 -080031
Jed Estepb8a693b2016-03-09 17:51:34 -080032#include "common/test_constants.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070033#include "otautil/SysUtil.h"
Jed Estep43291862016-02-03 17:02:09 -080034#include "verifier.h"
35
Jed Estep43291862016-02-03 17:02:09 -080036class VerifierTest : public testing::TestWithParam<std::vector<std::string>> {
Tao Bao5e535012017-03-16 17:37:38 -070037 protected:
38 void SetUp() override {
39 std::vector<std::string> args = GetParam();
40 std::string package = from_testdata_base(args[0]);
41 if (sysMapFile(package.c_str(), &memmap) != 0) {
42 FAIL() << "Failed to mmap " << package << ": " << strerror(errno) << "\n";
Jed Estep43291862016-02-03 17:02:09 -080043 }
44
Tao Bao5e535012017-03-16 17:37:38 -070045 for (auto it = ++args.cbegin(); it != args.cend(); ++it) {
46 std::string public_key_file = from_testdata_base("testkey_" + *it + ".txt");
47 ASSERT_TRUE(load_keys(public_key_file.c_str(), certs));
Jed Estep43291862016-02-03 17:02:09 -080048 }
Tao Bao5e535012017-03-16 17:37:38 -070049 }
50
51 MemMapping memmap;
52 std::vector<Certificate> certs;
Jed Estep43291862016-02-03 17:02:09 -080053};
54
55class VerifierSuccessTest : public VerifierTest {
56};
57
58class VerifierFailureTest : public VerifierTest {
59};
60
Tao Bao3116ce42017-03-16 17:37:38 -070061TEST(VerifierTest, load_keys_multiple_keys) {
62 std::string testkey_v4;
63 ASSERT_TRUE(android::base::ReadFileToString(from_testdata_base("testkey_v4.txt"), &testkey_v4));
64
65 std::string testkey_v3;
66 ASSERT_TRUE(android::base::ReadFileToString(from_testdata_base("testkey_v3.txt"), &testkey_v3));
67
68 std::string keys = testkey_v4 + "," + testkey_v3 + "," + testkey_v4;
69 TemporaryFile key_file1;
70 ASSERT_TRUE(android::base::WriteStringToFile(keys, key_file1.path));
71 std::vector<Certificate> certs;
72 ASSERT_TRUE(load_keys(key_file1.path, certs));
73 ASSERT_EQ(3U, certs.size());
74}
75
76TEST(VerifierTest, load_keys_invalid_keys) {
77 std::vector<Certificate> certs;
78 ASSERT_FALSE(load_keys("/doesntexist", certs));
79
80 // Empty file.
81 TemporaryFile key_file1;
82 ASSERT_FALSE(load_keys(key_file1.path, certs));
83
84 // Invalid contents.
85 ASSERT_TRUE(android::base::WriteStringToFile("invalid", key_file1.path));
86 ASSERT_FALSE(load_keys(key_file1.path, certs));
87
88 std::string testkey_v4;
89 ASSERT_TRUE(android::base::ReadFileToString(from_testdata_base("testkey_v4.txt"), &testkey_v4));
90
91 // Invalid key version: "v4 ..." => "v6 ...".
92 std::string invalid_key2(testkey_v4);
93 invalid_key2[1] = '6';
94 TemporaryFile key_file2;
95 ASSERT_TRUE(android::base::WriteStringToFile(invalid_key2, key_file2.path));
96 ASSERT_FALSE(load_keys(key_file2.path, certs));
97
98 // Invalid key content: inserted extra bytes ",2209831334".
99 std::string invalid_key3(testkey_v4);
100 invalid_key3.insert(invalid_key2.size() - 2, ",2209831334");
101 TemporaryFile key_file3;
102 ASSERT_TRUE(android::base::WriteStringToFile(invalid_key3, key_file3.path));
103 ASSERT_FALSE(load_keys(key_file3.path, certs));
104
105 // Invalid key: the last key must not end with an extra ','.
106 std::string invalid_key4 = testkey_v4 + ",";
107 TemporaryFile key_file4;
108 ASSERT_TRUE(android::base::WriteStringToFile(invalid_key4, key_file4.path));
109 ASSERT_FALSE(load_keys(key_file4.path, certs));
110
111 // Invalid key separator.
112 std::string invalid_key5 = testkey_v4 + ";" + testkey_v4;
113 TemporaryFile key_file5;
114 ASSERT_TRUE(android::base::WriteStringToFile(invalid_key5, key_file5.path));
115 ASSERT_FALSE(load_keys(key_file5.path, certs));
116}
117
Tao Bao217d9f92017-03-20 16:57:25 -0700118TEST(VerifierTest, BadPackage_AlteredFooter) {
119 std::string testkey_v3;
120 ASSERT_TRUE(android::base::ReadFileToString(from_testdata_base("testkey_v3.txt"), &testkey_v3));
121 TemporaryFile key_file1;
122 ASSERT_TRUE(android::base::WriteStringToFile(testkey_v3, key_file1.path));
123 std::vector<Certificate> certs;
124 ASSERT_TRUE(load_keys(key_file1.path, certs));
125
126 std::string package;
127 ASSERT_TRUE(android::base::ReadFileToString(from_testdata_base("otasigned_v3.zip"), &package));
128 ASSERT_EQ(std::string("\xc0\x06\xff\xff\xd2\x06", 6), package.substr(package.size() - 6, 6));
129
130 // Alter the footer.
131 package[package.size() - 5] = '\x05';
132 ASSERT_EQ(VERIFY_FAILURE,
133 verify_file(reinterpret_cast<const unsigned char*>(package.data()), package.size(),
134 certs));
135}
136
137TEST(VerifierTest, BadPackage_AlteredContent) {
138 std::string testkey_v3;
139 ASSERT_TRUE(android::base::ReadFileToString(from_testdata_base("testkey_v3.txt"), &testkey_v3));
140 TemporaryFile key_file1;
141 ASSERT_TRUE(android::base::WriteStringToFile(testkey_v3, key_file1.path));
142 std::vector<Certificate> certs;
143 ASSERT_TRUE(load_keys(key_file1.path, certs));
144
145 std::string package;
146 ASSERT_TRUE(android::base::ReadFileToString(from_testdata_base("otasigned_v3.zip"), &package));
147 ASSERT_GT(package.size(), static_cast<size_t>(100));
148
149 // Alter the content.
150 std::string altered1(package);
151 altered1[50] += 1;
152 ASSERT_EQ(VERIFY_FAILURE,
153 verify_file(reinterpret_cast<const unsigned char*>(altered1.data()), altered1.size(),
154 certs));
155
156 std::string altered2(package);
157 altered2[10] += 1;
158 ASSERT_EQ(VERIFY_FAILURE,
159 verify_file(reinterpret_cast<const unsigned char*>(altered2.data()), altered2.size(),
160 certs));
161}
162
Jed Estep43291862016-02-03 17:02:09 -0800163TEST_P(VerifierSuccessTest, VerifySucceed) {
Tao Bao5e535012017-03-16 17:37:38 -0700164 ASSERT_EQ(verify_file(memmap.addr, memmap.length, certs, nullptr), VERIFY_SUCCESS);
Jed Estep43291862016-02-03 17:02:09 -0800165}
166
167TEST_P(VerifierFailureTest, VerifyFailure) {
Tao Bao5e535012017-03-16 17:37:38 -0700168 ASSERT_EQ(verify_file(memmap.addr, memmap.length, certs, nullptr), VERIFY_FAILURE);
Jed Estep43291862016-02-03 17:02:09 -0800169}
170
171INSTANTIATE_TEST_CASE_P(SingleKeySuccess, VerifierSuccessTest,
Tao Bao5e535012017-03-16 17:37:38 -0700172 ::testing::Values(
173 std::vector<std::string>({"otasigned_v1.zip", "v1"}),
174 std::vector<std::string>({"otasigned_v2.zip", "v2"}),
175 std::vector<std::string>({"otasigned_v3.zip", "v3"}),
176 std::vector<std::string>({"otasigned_v4.zip", "v4"}),
177 std::vector<std::string>({"otasigned_v5.zip", "v5"})));
Jed Estep43291862016-02-03 17:02:09 -0800178
179INSTANTIATE_TEST_CASE_P(MultiKeySuccess, VerifierSuccessTest,
Tao Bao5e535012017-03-16 17:37:38 -0700180 ::testing::Values(
181 std::vector<std::string>({"otasigned_v1.zip", "v1", "v2"}),
182 std::vector<std::string>({"otasigned_v2.zip", "v5", "v2"}),
183 std::vector<std::string>({"otasigned_v3.zip", "v5", "v1", "v3"}),
184 std::vector<std::string>({"otasigned_v4.zip", "v5", "v1", "v4"}),
185 std::vector<std::string>({"otasigned_v5.zip", "v4", "v1", "v5"})));
Jed Estep43291862016-02-03 17:02:09 -0800186
187INSTANTIATE_TEST_CASE_P(WrongKey, VerifierFailureTest,
Tao Bao5e535012017-03-16 17:37:38 -0700188 ::testing::Values(
189 std::vector<std::string>({"otasigned_v1.zip", "v2"}),
190 std::vector<std::string>({"otasigned_v2.zip", "v1"}),
191 std::vector<std::string>({"otasigned_v3.zip", "v5"}),
192 std::vector<std::string>({"otasigned_v4.zip", "v5"}),
193 std::vector<std::string>({"otasigned_v5.zip", "v3"})));
Jed Estep43291862016-02-03 17:02:09 -0800194
195INSTANTIATE_TEST_CASE_P(WrongHash, VerifierFailureTest,
Tao Bao5e535012017-03-16 17:37:38 -0700196 ::testing::Values(
197 std::vector<std::string>({"otasigned_v1.zip", "v3"}),
198 std::vector<std::string>({"otasigned_v2.zip", "v4"}),
199 std::vector<std::string>({"otasigned_v3.zip", "v1"}),
200 std::vector<std::string>({"otasigned_v4.zip", "v2"})));
Jed Estep43291862016-02-03 17:02:09 -0800201
202INSTANTIATE_TEST_CASE_P(BadPackage, VerifierFailureTest,
Tao Bao5e535012017-03-16 17:37:38 -0700203 ::testing::Values(
204 std::vector<std::string>({"random.zip", "v1"}),
Tao Bao217d9f92017-03-20 16:57:25 -0700205 std::vector<std::string>({"fake-eocd.zip", "v1"})));